Hi,
I am updating multiple caches in single transaction. Data is collocated in
same partition and hence on same node.
I am doing add and remove operation using putAll and removeAll operation.
I am trying to update around 100K cache entries in each cache and total
number of caches involved in this transaction are 3.
When I do transaction.commit in my code it takes around 7 minutes just to
commit the transaction.
Ignite native persistence is disabled now but I am going to need it later.
I am getting transaction as follows.
Transaction tx =
ignite.transactions().txStart(TransactionConcurrency.OPTIMISTIC,
TransactionIsolation.SERIALIZABLE)
Can someone please advise?
Thanks,
Prasad