Re: Intermittent Error

2021-06-28 Thread Aleksandr Shapkin
How did you create the cache? Most likely you would like yo use the PUBLIC one, or you should be able to access it using SQL_MYCACHE_TWSources. Here are the docs regarding the schemas creation https://ignite.apache.org/docs/latest/SQL/schemas > On 17 Jun 2021, at 13:28, Ilya Kasnacheev wrote:

Re: Minimal config for client nodes

2021-06-03 Thread Aleksandr Shapkin
Hello! I don't think there is a complete list or something similar somewhere thus it’s better to check this manually. Regarding the peerClassLoading and similar configuration you might check the source code

Re: Ignite throws "Failed to resolve class name" Exception

2021-06-03 Thread Aleksandr Shapkin
Hello! It seems that you are trying to deploy DTO using peer class loading, unfortunately, that's not possible. Peer class loading is mostly about task deployment, see https://ignite.apache.org/docs/latest/code-deployment/peer-class-loading To resolve this you need to have your CacheState

Re: help with control.sh script

2021-05-12 Thread Aleksandr Shapkin
Hello! Most likely it’s the same connectivity issue that lead to the lost partitions. Do you have the full cmd output and some server logs? > On 15 Apr 2021, at 21:15, facundo.maldonado > wrote: > > I'm testing a 32 nodes cluster with a partitioned cache with one backup. > If 2 of them

Re: ClusterGroupEmptyException: Topology projection is empty.

2020-09-08 Thread Aleksandr Shapkin
Hi, is it possible to attach a full error stacktrace? Also what version do you use? There could be many places where cluster groups are required, please check the docs for more details [1] [1] - https://apacheignite.readme.io/docs/cluster-groups вт, 8 сент. 2020 г. в 15:35, kay : > Hello! I

Re: Node is unable to join cluster because it has destroyed caches

2020-06-02 Thread Aleksandr Shapkin
Hi, Have you tried to put the temp cache into the different, non persisted, memory region? You can also try to use a node filter to control what nodes should store the cache. On Tue, Jun 2, 2020, 19:24 xero wrote: > Hi Ignite team, We have a use case where a small portion of the dataset >

Re: How to use different ExpiryPolicy for different keys on the same cache?

2019-10-19 Thread Aleksandr Shapkin
You can use withExpiryPolicy method to create different cache instances. Something like ignite.cache(name).withExpiryPolicy(plc1) ignite.cache(name).withExpiryPolicy(plc2) On Sat, Oct 19, 2019, 15:51 李玉珏@163 <18624049...@163.com> wrote: > Hi, > > How to use different ExpiryPolicy for different