Re: Update a column of cache entities - Ignite 1.7

2016-12-07 Thread Yakov Zhdanov
You can send IgniteCompute.affinityCall() to the primary node that holds the partition you are interested in. Inside the closure you can have iteration and invoke() calls that will be local to the primary copy. If you need to process the entire cache data set then send as many affinityCall's as you

Update a column of cache entities - Ignite 1.7

2016-12-07 Thread Anil
HI, is there any way to update a column value in ignite other than EntryProcessor ? IgniteCache#invokeAll(keys, EntryProcessor) need the keys in hand.