Re: Serialization exception in Ignite compute job

2017-09-05 Thread begineer
HI, Thanks. Its clear now. And it solved the issue. Thanks again -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Serialization exception in Ignite compute job

2017-08-31 Thread ezhuravlev
Hi, Non-static nested classes that implement Serializable must be defined in an enclosing class that is also serializable. Non-static nested classes retain an implicit reference to an instance of their enclosing class. If the enclosing class is not serializable, the Java serialization mechanism fa

Serialization exception in Ignite compute job

2017-08-31 Thread begineer
Hi, I am submitting a compute job to ignite compute grid, It worked one time but now its failing every time. My compute task is Ignite Runnable so it is serializable but enclosing class is not. I think outer class does not need to be serializable because inner class is not anonymous. /** this cl