Re: ignite stops expiring caches after a period of time

2018-12-29 Thread Scott Feldstein
Ah, interesting. Thanks for the suggestion! On Sat, Dec 29, 2018 at 03:04 Ilya Kasnacheev wrote: > Hello! > > Yes, you are right, you will have use some other means of expiry. However, > you can also have a separate data region without persistence for data which > should be prone to expiry. > >

Re: ignite stops expiring caches after a period of time

2018-12-29 Thread Ilya Kasnacheev
Hello! Yes, you are right, you will have use some other means of expiry. However, you can also have a separate data region without persistence for data which should be prone to expiry. Regards, -- Ilya Kasnacheev сб, 29 дек. 2018 г. в 00:48, Scott Feldstein : > Hi Ilya, > Thanks. I assume

Re: ignite stops expiring caches after a period of time

2018-12-28 Thread Scott Feldstein
Hi Ilya, Thanks. I assume since I’m using persistence that expiry of the data is the only way to ensure that it is eventually purged. Is that correct or is there something else I should look at? Yep, I’m fine with upgrading to 2.7, we like to be as close to the bleeding edge with our technology

Re: ignite stops expiring caches after a period of time

2018-12-28 Thread Ilya Kasnacheev
Hello! Since Ignite 2.0 works with OffHeap pages mostly, Page Eviction works best if you don't care about data (pure cache mode): https://apacheignite.readme.io/docs/evictions If it works for 2.7.0 I recommend you to stick with is, since if one would be fixing 2.6 they will yield 2.7 anyway :)

Re: ignite stops expiring caches after a period of time

2018-12-26 Thread Scott Feldstein
hi Ilya, Why wouldn't many people use Expiry with 2.x? Is there another feature that I should be using that accomplishes the same thing? I've reproduced the issue for 2.6.0, but with 2.7.0 it looks like it is working. Here is the repro if anyone is interested -

Re: ignite stops expiring caches after a period of time

2018-12-24 Thread Scott Feldstein
Thanks Ilya, I’ll upgrade and see if that works soon. Right now we’ve switched to only using partitioned caches to avoid this issue. If it’s something that isn’t fixed with 2.7 then I’ll create a bug and attach code to reproduce it. I’m really surprised that no one else is complaining about it.

Re: ignite stops expiring caches after a period of time

2018-12-21 Thread scottmf
I forgot to mention this is on Ignite 2.6.0 and i'm running with a 3 node cluster. I've been experimenting some more and I'm finding that using PARTITIONED caches works fine, but replicated caches stop expiring usually within 10 minutes. The behavior is very consistent. I plan on trying this

ignite stops expiring caches after a period of time

2018-12-20 Thread scottmf
hi,I'm having trouble with cache expiry. We are trying to expire a cache every minute and it works for some time then it seems to stop expiring the cached objects. I'm trying it with eagerTtl = true & false. Here is my cacheConfiguration and IgniteConfiguration: CacheConfiguration