// please see https://github.com/hazelcast/hazelcast/issues/3056 for additional details
@Test
@Ignore
public void mapSize_After_MapStore_OperationQueue_OverFlow_Test() throws Exception {
Config config = new Config();
MapConfig mapConfig = new MapConfig();
MapStoreConfig mapStoreConfig = new MapStoreConfig();
final MapStoreBackup store = new MapStoreBackup();
final int delaySeconds = 4;
mapStoreConfig.setEnabled(true);
mapStoreConfig.setImplementation(store);
mapStoreConfig.setWriteDelaySeconds(delaySeconds);
mapConfig.setName(MAP_NAME);
mapConfig.setMapStoreConfig(mapStoreConfig);
config.addMapConfig(mapConfig);
HazelcastInstance server = Hazelcast.newHazelcastInstance(config);
HazelcastInstance client = HazelcastClient.newHazelcastClient();
final IMap map = client.getMap(MAP_NAME);