Re: Transaction tx = ignite.transactions().txStart() and tx.commit()

2016-09-09 Thread Vladislav Pyatkov
Hi, You are executing operation without transaction on transactional cache. In that case transaction was created implicitly on each operation. Transaction is needed if you need to execute several operation as one. On Fri, Sep 9, 2016 at 12:35 PM, seyeony wrote: > Hi, > During the persistent st

Transaction tx = ignite.transactions().txStart() and tx.commit()

2016-09-09 Thread seyeony
Hi, During the persistent store test (CacheAutoStoreExample.java from examples), I removed (commented out) the Transaction statemements as follows: //try (Transaction tx = ignite.transactions().txStart()) { ... ... //tx.commit(