I have 2 Hazelcast clusters both backed by same map Store.
I am trying to get some data from one cluster Imap and push it to the map of the second cluster.
What I want to know is if this makes a put or putTransient call on the remote map?
Does Hazelcast Jet remoteMap sink make a putTransient call on the remote map?
38 views Asked by user12995979 At
1
It calls map.putAllAsync() for remote map. See the code in WriteMapP.java
https://github.com/hazelcast/hazelcast/blob/master/hazelcast/src/main/java/com/hazelcast/jet/impl/connector/WriteMapP.java#L140