mukul4u2005

Results 8 comments of mukul4u2005

I am using subzero-all-0.6 jar , It is working fine on my local machine but when I am deploying on production the deserialization is not working , The serialization is...

I am deploying hazelcast as embeded of war file and doing programmatic configuration as: ``` SubZero.useForClasses(config, ActionLogDetails.class, ActionLogResponse.class, ServerDetails.class); ``` So there are two tomcat instance and making cluster there....

``` com.hazelcast.nio.serialization.HazelcastSerializationException: info.jerrinot.subzero.relocated.com.esotericsoftware.kryo.KryoException: Buffer underflow. Serialization trace: envid (com.db.gto.dap.model.AllocationInstance) allocationInstanceList (com.db.gto.dap.model.AllocationDetails) at com.hazelcast.internal.serialization.impl.SerializationUtil.handleException(SerializationUtil.java:61) at com.hazelcast.internal.serialization.impl.AbstractSerializationService.toObject(AbstractSerializationService.java:178) at com.hazelcast.map.impl.query.QueryResultIterator.next(QueryResultIterator.java:59) at java.util.Iterator.forEachRemaining(Iterator.java:116) at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1801) at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481) at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at...

public class AllocationDetails { ``` private List allocationInstanceList; private String atype; private String aid; private String dbscp; private String name; private String dbcrit; ``` getter-setter and public class AllocationInstance {...

hmmm I will try to create but I found on kryo website support some people facing similar exception because they did not have output.flush(); after writeObject method. @Override public void...

Ok I am trying to reproduce but for your information there are some exception in log files showing during replication as: An exception occurred while executing migration operation com.hazelcast.map.impl.operation.MapReplicationOperation{serviceName='hz:impl:mapService', identityHash=270795521,...

@jerrinot: Hi, That I tried to reproduce on my local it is working fine but it is failing in INT environment with same implementation. SO I am not sure what...