Re: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-06-09 Thread Ilya Kasnacheev
Hello! The "Failed to resolve class name" error also looks like the https://issues.apache.org/jira/browse/IGNITE-14856 Regards, -- Ilya Kasnacheev вс, 9 мая 2021 г. в 08:28, : > Hi, > > > > We are trying to use ignite for the first time in our project. We are > trying to use ignite with

Re: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-13 Thread Ilya Kasnacheev
Hello! Peer class loading will not peer load key-value classes so you need to have them on server side if running code there (or use cache.withKeepBinary()). Regards, -- Ilya Kasnacheev ср, 12 мая 2021 г. в 09:57, Vasily Laktionov : > Hi, > Try

RE: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-12 Thread Vasily Laktionov
Hi, Try cacheConfiguration.setPeerClassLoadingEnabled(true). Also you can try cacheConfiguration.setDeploymentMode(PRIVATE). https://ignite.apache.org/docs/latest/code-deployment/peer-class-loading#enabling-peer-class-loading

Re: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-11 Thread Vladimir Tchernyi
loying classes to the cluster until it sees that the class has > changed , but shouldn’t it deploy first time?. > > > > > > Thanks, > > Siva. > > > > *From:* vtcher...@gmail.com > *Sent:* Monday, May 10, 2021 1:07 > *To:* user@ignite.apache.org > *Subject

RE: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-10 Thread siva.velicheti
id deployer is not deploying classes to the cluster until it sees that the class has changed , but shouldn’t it deploy first time?. Thanks, Siva. From: vtcher...@gmail.com Sent: Monday, May 10, 2021 1:07 To: user@ignite.apache.org Subject: Re: Peer ClassLoading Issue | Apache Ignite 2.10 with S

Re: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-09 Thread vtchernyi
Hi Siva,Thank you for reading my blog post. I have no idea what is the problem in your case, just wanna share some experience.I do not use any user POJOs on the remote nodes. Instead, I create POJO on the thick client node, convert it in BinaryObject and change that object on the remote node by

RE: Peer ClassLoading Issue | Apache Ignite 2.10 with Spring Boot 2.3

2021-05-08 Thread siva.velicheti
Hi, We are trying to use ignite for the first time in our project. We are trying to use ignite with persistence enabled. Architecture is as follows. SpringBoot 2.3 application (thick client ) tries to connect to apace ignite cluster (3 nodes ) with persistence enabled and peer class loading