blob: 48b0ac2db6ef2488bf724bb4b7331cce72fbf83e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.internal.processors;
import org.apache.ignite.configuration.DataRegionConfiguration;
import org.apache.ignite.configuration.DataStorageConfiguration;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.failure.FailureHandler;
import org.apache.ignite.failure.StopNodeFailureHandler;
import org.apache.ignite.internal.IgniteInternalFuture;
import org.apache.ignite.internal.TestRecordingCommunicationSpi;
import org.apache.ignite.internal.cluster.IgniteClusterEx;
import org.apache.ignite.internal.processors.cache.ExchangeContext;
import org.apache.ignite.internal.processors.cache.distributed.dht.preloader.GridDhtPartitionsSingleMessage;
import org.apache.ignite.testframework.GridTestUtils;
import org.apache.ignite.testframework.junits.WithSystemProperty;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
/** */
public class DeadLockOnNodeLeftExchangeTest extends GridCommonAbstractTest {
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
cfg.setConsistentId(igniteInstanceName);
cfg.setDataStorageConfiguration(new DataStorageConfiguration()
.setDefaultDataRegionConfiguration(new DataRegionConfiguration()
.setPersistenceEnabled(true)
)
);
cfg.setCommunicationSpi(new TestRecordingCommunicationSpi());
return cfg;
}
/** {@inheritDoc} */
@Override protected FailureHandler getFailureHandler(String igniteInstanceName) {
return new StopNodeFailureHandler();
}
/** */
@Before
public void before() throws Exception {
stopAllGrids();
cleanPersistenceDir();
}
/** */
@After
public void after() throws Exception {
stopAllGrids();
cleanPersistenceDir();
}
/** */
@Test
@WithSystemProperty(key = ExchangeContext.IGNITE_EXCHANGE_COMPATIBILITY_VER_1, value = "true")
public void test() throws Exception {
startGrids(4);
IgniteClusterEx cluster = grid(0).cluster();
cluster.baselineAutoAdjustEnabled(false);
cluster.active(true);
TestRecordingCommunicationSpi spi = TestRecordingCommunicationSpi.spi(grid(3));
spi.blockMessages(GridDhtPartitionsSingleMessage.class, getTestIgniteInstanceName(0));
stopGrid(1);
spi.waitForBlocked();
IgniteInternalFuture setBaselineTopFut = GridTestUtils.runAsync(() -> {
cluster.setBaselineTopology(cluster.topologyVersion());
});
assertTrue(GridTestUtils.waitForCondition(
() -> grid(0).context().state().clusterState().transition(),
5_000L
));
stopGrid(2);
spi.stopBlock();
setBaselineTopFut.get(30_000L);
}
}