Re: Transaction commit taking too much time

2018-05-02 Thread Evgenii Zhuravlev
Hi, Could you share full reproducer? Thanks, Evgenii 2018-05-02 18:09 GMT+03:00 Prasad Bhalerao : > 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 oper

Re: Inconsistency reading cache from code and via REST?

2018-05-02 Thread michael
Hi revisiting this now I am actually connecting to a data source and filling the cache with data: For simplicity the attached code cacheTableTest.java only gets an update of a single string key value pair when in

Transaction commit taking too much time

2018-05-02 Thread Prasad Bhalerao
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 thi

Re: get() function in ignite cache

2018-05-02 Thread begineer
Thanks. This is awesome! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Apache Ignite "work" folder for clients

2018-05-02 Thread Kenan Dalley
Thanks, much appreciated. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: get() function in ignite cache

2018-05-02 Thread Evgenii Zhuravlev
Hi, Use IgniteCache.withSkipStore() and then just invoke method you wanted - it will disable read-through write-through behavior. Evgenii 2018-05-02 13:46 GMT+03:00 begineer : > HI Guys, > I am using cache.get() on ignite cache. Its readThrough cache so it means > cache.get() will load entry fr

Re: Apache Ignite "work" folder for clients

2018-05-02 Thread Evgenii Zhuravlev
Just add to IgniteConfiguration bean in your xml file Evgenii 2018-05-01 22:07 GMT+03:00 Kenan Dalley : > Ok, thanks. > > Next question. Is there an example of an xml config setting for this? > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/ >

get() function in ignite cache

2018-05-02 Thread begineer
HI Guys, I am using cache.get() on ignite cache. Its readThrough cache so it means cache.get() will load entry from cacheStore if not in cache. But in one place, I want to get only from cache, so it should not go to backstore to load the entry. Is there a get version which accomplish that. Does ca