Re: Failed to reinitialize local partitions (rebalancing will be stopped)

2020-01-14 Thread ashishb888
Hello Ilya, Okay, will file a ticket. BR Ashish -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How to use spark-2.4 module in Ignite 2.8?

2020-01-14 Thread Denis Magda
Alex, perfect, thanks for putting the fix on the release train! - Denis On Tue, Jan 14, 2020 at 3:18 AM zaleslaw wrote: > I've fixed this issue in master and release branch, it works locally on my > machine well > https://issues.apache.org/jira/browse/IGNITE-12534 > > Try to repeat with the up

Re: Best approach for jdbc sink into ignite cache with write behind .net client and server 3rd party application

2020-01-14 Thread Pavel Tupitsyn
1: answered in another email, please see my reply there: http://apache-ignite-users.70518.x6.nabble.com/WriteAll-method-on-insert-statement-execute-from-sqlline-td30957.html 2 and 3: please provide a reproducer On Tue, Jan 14, 2020 at 7:27 PM siva wrote: > Hi,Thanks for reply. > yes,i am unabl

Re: Best approach for jdbc sink into ignite cache with write behind .net client and server 3rd party application

2020-01-14 Thread siva
Hi,Thanks for reply. yes,i am unable parse result inside writeAll() method. three kind of difficulities facing in writeAll() method while doing insert statement execution either from java jdbc client or sqlline. 1.Unknown pair [platformId=1, typeId=1505474372] 2.Not enough data in stream [expected=

Re: write behind is not triggering for created table through query

2020-01-14 Thread Ilya Kasnacheev
Hello! You should not specify key_type in this case. Can you show code of your cache store / factory? Regards, -- Ilya Kasnacheev вт, 14 янв. 2020 г. в 19:18, siva : > Hi, > yes,type of key is string. > String cacheName="C091E548-B45A-49B4-B8EC-2CB5E27C7AF6"; > cacheCfg = new CacheConfigurat

Re: write behind is not triggering for created table through query

2020-01-14 Thread siva
Hi, yes,type of key is string. String cacheName="C091E548-B45A-49B4-B8EC-2CB5E27C7AF6"; cacheCfg = new CacheConfiguration(cacheName) { Name = cacheName, CacheStoreFactory = new TenantCacheStoreFactory(_logger, connectionString),

Re: How does a cache behave in LOCAL mode ?

2020-01-14 Thread Ilya Kasnacheev
Hello! LOCAL caches are local to a node, you are not expected to see its values from any other nodes. Please consider avoiding use of LOCAL caches since they see very low level of use or testing, considered for dropping in future releases. Regards, -- Ilya Kasnacheev вт, 14 янв. 2020 г. в 12:

Re: write behind is not triggering for created table through query

2020-01-14 Thread Ilya Kasnacheev
Hello! Can you show complete cache configuration (template)? I imagine it's possible that your cache ends up having primitive type as key, yet you try to use it as binary object in cache store. Regards, -- Ilya Kasnacheev пн, 13 янв. 2020 г. в 15:10, siva : > Hi, > Thanks for reply...write b

Re: Failed to reinitialize local partitions (rebalancing will be stopped)

2020-01-14 Thread Ilya Kasnacheev
Hello! Yes, I think this is a new issue. Can you please file a ticket against Apache Ignite JIRA? I'll add some development details. As for work-around, please try to stick to some working algorithm (such as, add data nodes, activate, add worker node, do not add it to baseline). Regards, -- Ily

Re: Getting all data from cache via scan query is taking lot of time

2020-01-14 Thread Pavel Tupitsyn
I've tried that code with a single local Ignite server, started with default configuration, the result is: Time for PutAll: 187 ms for rows: 7500 Time for fetching all data: 128 ms for rows: 7500 However, when I removed JSON serialization and stored the objects as is (IgniteCache): Time f

Re: Getting all data from cache via scan query is taking lot of time

2020-01-14 Thread Tunas
I am using Ignite 2.7.6 dll for Ignite and newtonSoft json for converting C# objects to json. Ignite configuration is same as mentioned allow. (Server and client are running on different machine) Sorry code class is little bit lengthy. One thing observed before publishing this code: addition of

Re: How to use spark-2.4 module in Ignite 2.8?

2020-01-14 Thread zaleslaw
I've fixed this issue in master and release branch, it works locally on my machine well https://issues.apache.org/jira/browse/IGNITE-12534 Try to repeat with the updated master! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How does a cache behave in LOCAL mode ?

2020-01-14 Thread userx
Hi team, Any comments on the same ? Not able to get the correct picture from documentation. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/