use of org.apache.ignite.internal.processors.cache.persistence.db.RebalanceBlockingSPI in project ignite by apache.
the class SysCacheInconsistencyInternalKeyTest method getConfiguration.
/**
* {@inheritDoc}
*/
@Override
protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
cfg.setFailureHandler(new StopNodeFailureHandler());
cfg.setCommunicationSpi(new RebalanceBlockingSPI(SUPPLY_MESSAGE_LATCH, SLOW_REBALANCE_CACHE, SUPPLY_SEND_LATCH));
return cfg;
}
Aggregations