RE: Evicted entry appears in Write-behind cache

2016-10-26 Thread Pradeep Badiger
Thanks Vladislav From: Vladislav Pyatkov [mailto:vldpyat...@gmail.com] Sent: Wednesday, October 26, 2016 5:08 AM To: user@ignite.apache.org Subject: Re: Evicted entry appears in Write-behind cache Hi, Yes, write behind buffer gets locks on entries which stores between loading to CacheStore. So

Re: Evicted entry appears in Write-behind cache

2016-10-26 Thread Vladislav Pyatkov
* Vladislav Pyatkov [mailto:vpyat...@gridgain.com] > *Sent:* Friday, October 14, 2016 4:25 AM > > *To:* user@ignite.apache.org > *Subject:* Re: Evicted entry appears in Write-behind cache > > > > Hi Paradeep, > > > > Why are you think, what the entry could

RE: Evicted entry appears in Write-behind cache

2016-10-14 Thread Pradeep Badiger
@ignite.apache.org Subject: Re: Evicted entry appears in Write-behind cache Hi Paradeep, Why are you think, what the entry could not be read through your persistence storage: .setReadThrough(stateQoS.isReadThroughEnabled()) When cache can not get data from in memory, it will try to get data from storage

RE: Evicted entry appears in Write-behind cache

2016-10-13 Thread Pradeep Badiger
roughEnabled()) .setWriteThrough(stateQoS.isWriteThroughEnabled()); Thanks, Pradeep V.B. From: Vladislav Pyatkov [mailto:vldpyat...@gmail.com] Sent: Wednesday, October 12, 2016 2:59 AM To: user@ignite.apache.org Subject: Re: Evicted entry appears in

Re: Evicted entry appears in Write-behind cache

2016-10-12 Thread Vladislav Pyatkov
g the load() on the store. As you said, the entry > would be cached in the write behind store even for the evicted entry. Is > that true? > > Thanks, > Pradeep V.B. > *From:* Denis Magda [mailto:dma...@gridgain.com <dma...@gridgain.com>] > *Sent:* Monday, October 10, 2016 9:

RE: Evicted entry appears in Write-behind cache

2016-10-11 Thread Pradeep Badiger
...@gridgain.com] Sent: Monday, October 10, 2016 9:13 PM To: user@ignite.apache.org Subject: Re: Evicted entry appears in Write-behind cache Hi, How do you see that the evicted entries are still in the cache? If you check this by calling cache get like operations then entries can be loaded back

Re: Evicted entry appears in Write-behind cache

2016-10-10 Thread Denis Magda
Hi, How do you see that the evicted entries are still in the cache? If you check this by calling cache get like operations then entries can be loaded back from the write-behind store or from your underlying store. — Denis > On Oct 8, 2016, at 1:00 PM, Pradeep Badiger

Re: Evicted entry appears in Write-behind cache

2016-10-10 Thread Vladislav Pyatkov
Hi, "Write behind" is a feature of "write through", but when the feature was used the entries will written asynchronously. Hence If all entries hit into storage it is correct behavior. Please provide reproduced example, If are you means another? On Sat, Oct 8, 2016 at 11:00 PM, Pradeep Badiger