Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-04-02 Thread Andrey Mashenkov
Hi, Looks bad. Ignite node tries to restore cache configuration on startup and seems can't do it as old classes are lost. Seems, it fails before cache configuration validation. Also, I'm not sure we allow to rewrite cache config and the only way here is to recreate a cache. On Tue, Mar 27, 2018

Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-27 Thread siva
Hi, Thanks for checking out issue. I think its not about IDE issue. Again same thing i have reproduce like bellow steps 1.run the program from IDE as client 2.copy jar to ignite libs folder and start the server 3.Then check previous message steps so that can able to reproduce the issue. https:/

Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-26 Thread Roman Guseinov
Hi, I checked the project from github. Using the proposed steps I wasn't able to reproduce the issue. It looks like the IDE somehow uses old class files. You can try to rebuild module from IDE (after moving "CompanyCachestorefactory") or execute "mvn clean install". Best Regards, Roman -- Sen

Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-26 Thread Roman Guseinov
Hi, I checked the project from github. Using the proposed steps I wasn't able to reproduce the issue. It looks like the IDE somehow uses old class files. You can try to rebuild module from IDE (after moving "CompanyCachestorefactory") or execute "mvn clean install". I am quite sure that the issu

Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-23 Thread Roman Guseinov
Hi, I will try to reproduce this on my side. Thanks for reproducer. Best Regards, Roman -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-19 Thread siva
Hi , Thanks for the reply Did you restart all nodes after updating jar-files? Ans) Yes i have restarted client and server node after updated the jar file. I have shared a sample project on github ,so you can have look at through following link Link: https://github.com/cvakarna/springboot-Ignite

Re: Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-14 Thread Roman Guseinov
Hi, I think that you are able to use only one storage for a cache: 3d Party Persistence or Native Persistence. Did you update the class name in xml configuration [1]? Did you restart all nodes after updating jar-files? If you did, could you share a small proje

Data Loss while upgrading custom jar from old jar in server and client nodes

2018-03-14 Thread siva
Hi, we have two nodes server and client we are using ignite cachestore and native persistence till now worked fine. But we have changed the cache store package .i.e previously cache store implementation classes and cachestore factory classes are in same package In Existing: com.organiz