Lets assume that I have a job with max.parallelism=4
and a RichFlatMapFunction
which is working with MapState
. What is the best way to create the MapStateDescriptor
? into the RichFlatMapFunction
which means that for each instance of this class I will have a descriptor, or create a single instance of the descriptor, for example: public static MapStateDescriptor descriptor
in a single class and call it from the RichFlatMapFunction
? Because doing it on this way I will have just one MapStateDescriptor
instead of 4, or did I misunderstood something?
Kind regards!