Hi Reddy,

This looks like a misconfiguration issue:

locBinaryCfg=null, rmtBinaryCfg={globIdMapper=null, compactFooter=false,
globSerializer=null}

Please check the configuration of all the nodes and make sure they are the
same. If you're using .NET or C++ clients with Java servers, set the
following on Java side:

BinaryConfiguration bCfg = new BinaryConfiguration();

bCfg.setCompactFooter(false);
bCfg.setNameMapper(new BinaryBasicNameMapper(true));
bCfg.setIdMapper(new BinaryBasicIdMapper(true));

igniteCfg.setBinaryConfiguration(bCfg);

-Val



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Ignite-LocalStore-issue-with-BinaryConfiguration-tp6323p6331.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to