Re: What does javax.cache.CacheException: Failed to execute map query on remote node mean?

2022-08-31 Thread Alex Plehanov
Once the table is recreated (or index rebuilded) the issue is fixed. Upgrading from 2.12 to 2.13 (if all indexes having this issue are already rebuilded on 2.12) should be fine. ср, 31 авг. 2022 г. в 23:43, John Smith : > Ok but since I dropped and recreated the table I'm fine? It won't somehow >

UNSUBSCRIBE

2022-08-31 Thread Rizwan Amin
Spread bets and CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 76% of retail investor accounts lose money when spread betting and/or trading CFDs with this provider. You should consider whether you understand ho

Re: ClassCastException while using ignite service proxy

2022-08-31 Thread Surinder Mehra
Hi Stephen, I see you are deploying service from the same client node where proxy is obtained. In my setup, I have deployed service through ignite config on server start and try to create a client later and hence the proxy. It works when I try to obtain a proxy on the server node. But when I start

Re: What does javax.cache.CacheException: Failed to execute map query on remote node mean?

2022-08-31 Thread John Smith
Ok but since I dropped and recreated the table I'm fine? It won't somehow throw that error again? And if I upgrade to 2.13 from 2.12 will I have the same issue? On Wed, Aug 31, 2022 at 3:31 PM Alex Plehanov wrote: > John Smith, > > Thank you. This issue will be fixed in upcoming 2.14. > > ср, 31

Re: What does javax.cache.CacheException: Failed to execute map query on remote node mean?

2022-08-31 Thread Alex Plehanov
John Smith, Thank you. This issue will be fixed in upcoming 2.14. ср, 31 авг. 2022 г. в 21:50, John Smith : > Here it is... And yes I recently upgraded to 2.12 from 2.8.1 > > create table if not exists car_code ( > provider_id int, > car_id int, > car_code varchar(16), > primary key (provider_id

Re: What does javax.cache.CacheException: Failed to execute map query on remote node mean?

2022-08-31 Thread John Smith
Here it is... And yes I recently upgraded to 2.12 from 2.8.1 create table if not exists car_code ( provider_id int, car_id int, car_code varchar(16), primary key (provider_id, car_id) ) with "template=replicatedTpl, key_type=CarCodeKey, value_type=CarCode"; On Wed, Aug 31, 2022 at 7:25 AM Alex Pl

Re: ClassCastException while using ignite service proxy

2022-08-31 Thread Stephen Darlington
You’ll need to share more of your code and configuration. As far as I can tell, it works. This is my entire code/configuration, using Ignite 2.11.1 and Java 11.0.16.1+1. var igniteConfiguration = new IgniteConfiguration() .setPeerClassLoadingEnabled(true)

Re: Page replacement priority

2022-08-31 Thread Alex Plehanov
Hello, Data pages have the same priority as index pages. Algorithm can be configured by DataRegionConfiguration.PageReplacementMode property. See https://ignite.apache.org/docs/latest/memory-configuration/replacement-policies for more information. ср, 31 авг. 2022 г. в 04:18, 38797715 <38797...@q

Re: What does javax.cache.CacheException: Failed to execute map query on remote node mean?

2022-08-31 Thread Alex Plehanov
John Smith, Can you please show DDL for the car_code table? Does PK of this table include provider_id or car_code columns? I found a compatibility issue, with the same behaviour, it happens when storage created with Ignite version before 2.11 is used with the newer Ignite version. Have you upgrade