blob: 764f46fcc2dc435a572dfb91aa10a654c1cab969 [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.cache;
import java.util.concurrent.atomic.AtomicInteger;
import com.google.common.collect.ImmutableSet;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteCache;
import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.cache.CacheRebalanceMode;
import org.apache.ignite.cache.CacheWriteSynchronizationMode;
import org.apache.ignite.configuration.CacheConfiguration;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.internal.IgniteKernal;
import org.apache.ignite.internal.processors.cache.distributed.GridCacheModuloAffinityFunction;
import org.apache.ignite.internal.util.lang.GridAbsPredicate;
import org.apache.ignite.internal.util.typedef.F;
import org.apache.ignite.internal.util.typedef.internal.U;
import org.apache.ignite.marshaller.jdk.JdkMarshaller;
import org.apache.ignite.testframework.GridTestUtils;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Ignore;
import org.junit.Test;
import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
import static org.apache.ignite.cache.CacheMode.PARTITIONED;
import static org.apache.ignite.cache.CacheMode.REPLICATED;
import static org.apache.ignite.cache.CacheRebalanceMode.NONE;
import static org.apache.ignite.cache.CacheRebalanceMode.SYNC;
import static org.apache.ignite.configuration.DeploymentMode.SHARED;
/**
*
*/
@Ignore("https://issues.apache.org/jira/browse/IGNITE-10420")
public class GridCacheP2PUndeploySelfTest extends GridCommonAbstractTest {
/** Test p2p value. */
private static final String TEST_VALUE = "org.apache.ignite.tests.p2p.GridCacheDeploymentTestValue3";
/** */
private final AtomicInteger idxGen = new AtomicInteger();
/** */
private CacheRebalanceMode mode = SYNC;
/** */
private boolean offheap;
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
cfg.setNetworkTimeout(2000);
cfg.setMarshaller(new JdkMarshaller());
CacheConfiguration repCacheCfg = defaultCacheConfiguration();
repCacheCfg.setName("replicated");
repCacheCfg.setCacheMode(REPLICATED);
repCacheCfg.setRebalanceMode(mode);
repCacheCfg.setWriteSynchronizationMode(CacheWriteSynchronizationMode.FULL_SYNC);
repCacheCfg.setAtomicityMode(TRANSACTIONAL);
// TODO GG-10884.
// if (offheap)
// repCacheCfg.setOffHeapMaxMemory(OFFHEAP);
// else
// repCacheCfg.setSwapEnabled(true);
CacheConfiguration partCacheCfg = defaultCacheConfiguration();
partCacheCfg.setName("partitioned");
partCacheCfg.setCacheMode(PARTITIONED);
partCacheCfg.setRebalanceMode(mode);
partCacheCfg.setAffinity(new GridCacheModuloAffinityFunction(11, 1));
partCacheCfg.setWriteSynchronizationMode(CacheWriteSynchronizationMode.FULL_SYNC);
partCacheCfg.setAtomicityMode(TRANSACTIONAL);
// TODO GG-10884.
// if (offheap)
// partCacheCfg.setOffHeapMaxMemory(OFFHEAP);
// else
// partCacheCfg.setSwapEnabled(true);
cfg.setCacheConfiguration(repCacheCfg, partCacheCfg);
cfg.setDeploymentMode(SHARED);
cfg.setPeerClassLoadingLocalClassPathExclude(GridCacheP2PUndeploySelfTest.class.getName());
cfg.setUserAttributes(F.asMap(GridCacheModuloAffinityFunction.IDX_ATTR, idxGen.getAndIncrement()));
return cfg;
}
/** @throws Exception If failed. */
@Test
public void testSwapP2PReplicated() throws Exception {
offheap = false;
checkP2PUndeploy("replicated");
}
/** @throws Exception If failed. */
@Test
public void testOffHeapP2PReplicated() throws Exception {
offheap = true;
checkP2PUndeploy("replicated");
}
/** @throws Exception If failed. */
@Test
public void testSwapP2PPartitioned() throws Exception {
offheap = false;
checkP2PUndeploy("partitioned");
}
/** @throws Exception If failed. */
@Test
public void testOffheapP2PPartitioned() throws Exception {
offheap = true;
checkP2PUndeploy("partitioned");
}
/** @throws Exception If failed. */
@Test
public void testSwapP2PReplicatedNoPreloading() throws Exception {
mode = NONE;
offheap = false;
checkP2PUndeploy("replicated");
}
/** @throws Exception If failed. */
@Test
public void testOffHeapP2PReplicatedNoPreloading() throws Exception {
mode = NONE;
offheap = true;
checkP2PUndeploy("replicated");
}
/** @throws Exception If failed. */
@Test
public void testSwapP2PPartitionedNoPreloading() throws Exception {
mode = NONE;
offheap = false;
checkP2PUndeploy("partitioned");
}
/** @throws Exception If failed. */
@Test
public void testOffHeapP2PPartitionedNoPreloading() throws Exception {
mode = NONE;
offheap = true;
checkP2PUndeploy("partitioned");
}
/**
* @param cacheName Cache name.
* @param g Grid.
* @return Size.
* @throws IgniteCheckedException If failed.
*/
private long size(String cacheName, IgniteKernal g) throws IgniteCheckedException {
if (offheap)
return ((IgniteKernal)g).getCache(cacheName).offHeapEntriesCount();
return 0;
// TODO GG-10884.
// return g.context().swap().swapSize(swapSpaceName(cacheName, g));
}
/**
* @param cacheName Cache name.
* @throws Exception If failed.
*/
private void checkP2PUndeploy(final String cacheName) throws Exception {
assert !F.isEmpty(cacheName);
ClassLoader ldr = getExternalClassLoader();
Class valCls = ldr.loadClass(TEST_VALUE);
try {
Ignite ignite1 = startGrid(1);
final IgniteKernal grid2 = (IgniteKernal)startGrid(2);
IgniteCache<Integer, Object> cache1 = ignite1.cache(cacheName);
IgniteCache<Integer, Object> cache2 = grid2.cache(cacheName);
Object v1 = valCls.newInstance();
cache1.put(1, v1);
cache1.put(2, valCls.newInstance());
cache1.put(3, valCls.newInstance());
cache1.put(4, valCls.newInstance());
info("Stored value in cache1 [v=" + v1 + ", ldr=" + v1.getClass().getClassLoader() + ']');
Object v2 = cache2.get(1);
assert v2 != null;
info("Read value from cache2 [v=" + v2 + ", ldr=" + v2.getClass().getClassLoader() + ']');
assert v2 != null;
assert v2.toString().equals(v1.toString());
assert !v2.getClass().getClassLoader().equals(getClass().getClassLoader());
assert v2.getClass().getClassLoader().getClass().getName().contains("GridDeploymentClassLoader");
cache2.localEvict(ImmutableSet.of(2, 3, 4));
//Wait until entries stored to disk.
GridTestUtils.waitForCondition(new GridAbsPredicate() {
@Override public boolean apply() {
try {
return size(cacheName, grid2) > 0;
}
catch (IgniteCheckedException e) {
throw new AssertionError(e);
}
}
}, 5000);
stopGrid(1);
assert waitCacheEmpty(cache2, 10000);
for (int i = 0; i < 3; i++) {
long swapSize = size(cacheName, grid2);
if (swapSize > 0) {
if (i < 2) {
U.warn(log, "Swap size check failed (will retry in 1000 ms): " + swapSize);
U.sleep(1000);
continue;
}
fail("Swap size check failed: " + swapSize);
}
else if (swapSize == 0)
break;
else
assert false : "Negative swap size: " + swapSize;
}
}
finally {
stopAllGrids();
}
}
/**
* @param cache Cache.
* @param timeout Timeout.
* @return {@code True} if success.
* @throws InterruptedException If thread was interrupted.
*/
@SuppressWarnings({"BusyWait"})
private boolean waitCacheEmpty(IgniteCache<Integer, Object> cache, long timeout)
throws InterruptedException {
assert cache != null;
assert timeout >= 0;
long end = System.currentTimeMillis() + timeout;
while (end - System.currentTimeMillis() >= 0) {
if (cache.localSize() == 0)
return true;
Thread.sleep(500);
}
return cache.localSize() == 0;
}
}