Re: Cache classes deployment

2017-09-07 Thread ekomarov
Thanks for the reply, Val! Seems like for cache classes there is a choice between binary cache structure and explicit class deployment. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Cache classes deployment

2017-09-07 Thread saikiran939
Did you try https://apacheignite.readme.io/docs/binary-marshaller ? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Cache classes deployment

2017-09-06 Thread vkulichenko
Hi Egor, Peer class loading is not working for data model classes. You should either deploy classes explicitly on all nodes, or use BinaryObject API: https://apacheignite.readme.io/docs/binary-marshaller#binaryobject-cache-api -Val -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Cache classes deployment

2017-09-06 Thread ekomarov
Hello, I have an ignite cache with custom classes in keys and values, like IgniteCache only on one ignite node. I want to read and write data for this cache on all ignite nodes. I tried to use peer class loading, but got a ClassNotFoundException on remote ignite nodes. Is it