Re: DataStreamer: Failed to process selector key

2019-04-08 Thread kellan
But are they actually affecting anything? Like are my DataStreamers dropping data, or is it being retried? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

How to automatic reset state of lost partitions?

2019-04-08 Thread Dmitry Lazurkin
Hello, I have 3 nodes with backups=1 and partitionLostPolicy=READ_WRITE_SAFE. Node-2 and node-3 own partition 2. I shutdown node-2 and node-3. After that cluster has partition 2 in state=LOST. Now I should call resetLostPartitions for restore state of partition 2. For now I see only one way for

sql exception while batch inserting records

2019-04-08 Thread shivakumar
Hi all, I'am getting this below exception while doing batch insert. *WARNING: Exception during batch send on streamed connection close java.sql.BatchUpdateException: Streaming mode supports only INSERT commands without subqueries. at

Re: Running control.sh in docker container when JXM is started

2019-04-08 Thread kresimir.horvat
Hi, thank you for your replay. I will try solution you suggested. If I want to avoid modifications and commits of changes in docker container I will have to do the following: 1. start container with JMX_MON specified so ignite will start with open JMX ports 2. pass NOJMX = 1 (ignite.sh) and

Re: sending event on update of a specific cache

2019-04-08 Thread Ilya Kasnacheev
Hello! You can't do Continuous Queries via REST (or events for that matter), but changes to caches done via REST are visible to Continuous Queries. So why would you want to use events and not Continuous Queries? Regards, -- Ilya Kasnacheev пн, 8 апр. 2019 г. в 10:59, matanlevy : > Hi Ilya,

Re: sending event on update of a specific cache

2019-04-08 Thread matanlevy
Hi Ilya, from REST API page on Ignite documentation I could find only SQL Queries or simple key/val operations. In addition, from Continuous Queries documentation page + this thread(http://apache-ignite-users.70518.x6.nabble.com/Ignite-Thin-Client-Continuous-Query-td23980.html) it seems that

Re: Ignite Performance

2019-04-08 Thread Ilya Kasnacheev
Hello! Can you provide EXPLAIN output (all rows) for this query? I don't see @AffinityKeyMapped in your examples and doubt it will work with QueryEntities anyway. Please try to use CacheKeyConfiguration instead to specify affinity fields. However, I'm not sure if you can use two filelds as

Re: sending event on update of a specific cache

2019-04-08 Thread Ilya Kasnacheev
Hello! Maybe I'm missing something, but why do you say you can't use Continuous Query? Should work with REST jsut fine. Regards, -- Ilya Kasnacheev вс, 7 апр. 2019 г. в 15:18, matanlevy : > Hi, > > I am using ignite cache and I would like to know if there is any mechanishm > that I can use