Hello ght230
Do you use setAffinityMapper to put selected rows in one partition?
cacheCfg.setAffinityMapper(new AffinityKeyMapper() {
@Override
public Object affinityKey(Object key) {
if (key instanceof PersonKey){
PersonKey det = (PersonKey)key;
return pk.getGroupId();
}
return key;
}
});
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/How-to-accelerate-the-query-speed-in-Partitioned-Mode-tp5826p5837.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.