Re: How to handle CacheLocalStore on clients node?

2018-01-11 Thread Vyacheslav Daradur
nnotation should be deprecated and removed in my view. > > -Val > > On Fri, Jan 5, 2018 at 10:57 AM, Vyacheslav Daradur <daradu...@gmail.com> > wrote: > >> Hi, Igniters! >> >> I still need your advice about the situation in the first post in this >> thread.

Re: How to handle CacheLocalStore on clients node?

2018-01-05 Thread Valentin Kulichenko
be deprecated and removed in my view. -Val On Fri, Jan 5, 2018 at 10:57 AM, Vyacheslav Daradur <daradu...@gmail.com> wrote: > Hi, Igniters! > > I still need your advice about the situation in the first post in this > thread. > > >> How to handle CacheLocalStore on clie

Re: How to handle CacheLocalStore on clients node?

2018-01-05 Thread Vyacheslav Daradur
Hi, Igniters! I still need your advice about the situation in the first post in this thread. >> How to handle CacheLocalStore on clients node? >> I see some ways: >> 1) Ignite should validate this situation at cache creation on client node >> 2) CacheStoreFactory sho

Re: How to handle CacheLocalStore on clients node?

2017-12-28 Thread ALEKSEY KUZNETSOV
CacheLocalStore annotation means CacheStore is not "global" database, but each node has its independent db. If CacheStore isn't annotated with CacheLocalStore, then you can observe situation when data is persisted by node, which is neither primary, nor backup for the key.(i.e. we have

How to handle CacheLocalStore on clients node?

2017-12-27 Thread Vyacheslav Daradur
Hi, Igniters! I’m working on an implementation of 3rd party persistence solution. The solution is annotated by CacheLocalStore annotation. As far as I know, CacheLocalStore annotation means that server node persists its own primary and backup partitions (please correct me if I’m wrong). How