Do we need to statically type/declare the data type of variable when is going to be serialized? Does it improve any performance while serializing?
I'm creating a flink project for batch processing. I wrote a custom input reader, which is going to read from database through jdbc and returns a record as Hashmap, containing column name and value. I know Flink serialize the objects between each subtasks. So, my question is, since I have hashmap where values of type object, does it have any impact on serialization performance?
Flink uses kyro serializer by default