Re: v.2.7.5 jvm.dll error=DLL could not be loaded

2019-09-04 Thread vladtovbin
What's crazy is that I just tried the same thing on another identical server and getting the error again, even with c++ redistributable package installed. Confirmed jmv dll is at the first path location below, and ignite still works if launched from \bin folder. Any suggestions ? Here's the full

Re: Tuning client performance.

2019-09-04 Thread John Smith
Yeah, initial tests show improvements just by switching to async get. On Tue, 3 Sep 2019 at 11:06, John Smith wrote: > Actually, I looked closer at my code. Cannot use getAll() and the Queue is > single partition, so can't use multiple threads, the application is per > event and we have tested

Re: Can Ignite transaction manage cached and non-cached data writes?

2019-09-04 Thread bijunathg
Hi, Thanks for the response. We found an option of passing an "application provided Hibernate session" to Ignite and reuse the same for all the cache stores involved in the transaction. This way Ignite will use the same Hibernate session for all the cache updates within the transaction. This is by

Re: Apache Ignite cluster node events not Triggered

2019-09-04 Thread Ilya Kasnacheev
Hello! Client node will not disconnect immediately nor it will terminate. It will try to reconnect instead. If you want client node to disconnect and fire CLIENT_NODE_DISCONNECTED immediately, you can try setting TcpDiscoverySpi.clientReconnectDisabled to true. Regards, -- Ilya Kasnacheev

Re: Can Ignite transaction manage cached and non-cached data writes?

2019-09-04 Thread Ilya Kasnacheev
Hello! I don't think you can put any data to Cache Store without actually putting it in a cache. Regards, -- Ilya Kasnacheev вт, 3 сент. 2019 г. в 14:03, bijunathg : > Hi, > Our application wants to do SQL queries and writes on some cached data > (partitioned) and at the same time update

Re: Users named "ignite" cannot change their password?

2019-09-04 Thread Ilya Kasnacheev
Hello! User names are case sensitive and bound by SQL rules, i.e.: ALTER USER "ignite" WITH PASSWORD 'test123'; Regards, -- Ilya Kasnacheev ср, 4 сент. 2019 г. в 05:14, liyuj <18624049...@163.com>: > Hi, > > Execute the following statement: > > ALTER USER ignite WITH PASSWORD 'test123'; > >