All nodes have the same class path
XObject and classes also are all the same version
But it is the same error continues to occur,
XObject snippet
public class XObject implements Serializable {
@QuerySqlField
private int part;
@QuerySqlField
private String applicationName;
@QuerySqlField
private String className;
@QuerySqlField(index = true)
private Long grobalKey = 1L;
@QuerySqlField
private String message = null;
@QuerySqlField
private UUID uuid = null;
public int getPart() {
return part;
}
public void setPart(int part) {
this.part = part;
}
public String getApplicationName() {
return applicationName;
}
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public Long getGrobalKey() {
return grobalKey;
}
public void setGrobalKey(Long grobalKey) {
this.grobalKey = grobalKey;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public UUID getUuid() {
return uuid;
}
public void setUuid(UUID uuid) {
this.uuid = uuid;
}
}
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/CacheEntryEventSerializableFilter-in-ignite1-5-tp2382p2402.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.