Re: How to disable replication over multicast for development nodes?

2019-03-20 Thread AndrewV
Thank you. So, in the case of single-development node mode, I should add just local node IP? ... 127.0.0.1 ... -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

How to disable replication over multicast for development nodes?

2019-03-20 Thread AndrewV
Hi there! I have a problem with the development environment. If more than one developer run project in the same local network nodes starts to replicate between each other. Could you tell me how to disable multicast replication? Thanks! -- Sent from:

Re: ScanQuery for List<...>

2019-01-28 Thread AndrewV
Thanks a lot. I tried to create CustomIgniteBiPredicate, but inside the method "apply" List list is always empty. *Example with an empty list in filter predicate:* public boolean apply(Integer key, List list) { // Here the list is always empty for (Foo item: list) { if (item.id ==

ScanQuery for List<...>

2019-01-25 Thread AndrewV
Hello. Is it possible to create a filter to find data inside typed List? *Example: * class Foo { Integer id; } *Query: * ScanQuery> filter = new ScanQuery<>( (IgniteBiPredicate>) (key, list) -> ... ); So, is it possible to find inside List just records where foo.getId().equals(some

Re: Ignite with Spring cache

2019-01-23 Thread AndrewV
I found the mistake. I was testing this inside the real application and caches had been evicted before I tried to iterate over caches. Thanks a lot for your time. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite with Spring cache

2019-01-23 Thread AndrewV
Yes, I've tried ScanQuery. I understand that TextQuery is not good and I use it just for testing. But in both cases, I don't have any results. Here i get cache object: IgniteCache cache = Ignition.ignite().cache(cacheName); but I don't have any results when I try to find something inside when

Re: Ignite with Spring cache

2019-01-22 Thread AndrewV
I have a Spring application with Ignite cache configured according to samples - https://apacheignite-mix.readme.io/docs/spring-caching *My configured Spring bean:* -- /@Bean public SpringCacheManager springCacheManager() {

Ignite with Spring cache

2019-01-21 Thread AndrewV
Hi everyone, I integrated Ignite with my Spring application cache manager. Everything works fine, but I need to implement custom cache revalidation logic. Actually, my question is how to find something in a particular cache using Spring Cache manager? Thank you. -- Sent from:

Apache Ignite CPU issue

2018-12-12 Thread AndrewV
Hi there! I'm going to implement Ignite into my hight loaded Spring application as a Spring cache for replication between nodes. But I faced with a CPU performance issue when I was testing on some percentage of users in production. For testing, I used 4 servers. 2 in client mode (with Spring) and

Apache Ignite CPU issue

2018-12-12 Thread AndrewV
Hi there! I'm going to implement Ignite into my hight loaded Spring application as a Spring cache for replication between nodes. But I faced with a CPU performance issue when I was testing on some percentage of users in production. For testing, I used 4 servers. 2 in client mode (with Spring)