I have 3 distributed maps which objects have one shared property - identifier
. This identifier
is used as a key for one map while 2 other maps are using cluster wide global ids as a key. There's also a Map-Reduce job that is combining related by this identifier
object and is storing the result into another map. The idea is to minimize inter-cluster network traffic so job is communicating only with one member where it is being executed.
The question is: do I need to do any extra action to make sure partitions of different distributed maps are physically stored on one member?