/* * 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.distributed; import java.util.ArrayList; import java.util.Collection; import java.util.Random; import java.util.UUID; import java.util.concurrent.atomic.AtomicBoolean; import org.apache.ignite.Ignite; import org.apache.ignite.IgniteCache; import org.apache.ignite.cache.CacheAtomicityMode; import org.apache.ignite.cache.CacheMode; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.IgniteInternalFuture; import org.apache.ignite.internal.marshaller.optimized.OptimizedMarshaller; import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi; import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder; import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; /** * */ public class CacheAffinityEarlyTest extends GridCommonAbstractTest { /** Grid count. */ private static int GRID_CNT = 8; /** Stopped. */ private volatile boolean stopped; /** Iteration. */ private static final int iters = 10; /** Concurrent. */ private static final boolean concurrent = true; /** Futs. */ private Collection<IgniteInternalFuture<?>> futs = new ArrayList<>(GRID_CNT); /** */ private static TcpDiscoveryIpFinder ipFinder = new TcpDiscoveryVmIpFinder(true); /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); TcpDiscoverySpi discoSpi = new TcpDiscoverySpi(); discoSpi.setIpFinder(ipFinder); cfg.setDiscoverySpi(discoSpi); OptimizedMarshaller marsh = new OptimizedMarshaller(); marsh.setRequireSerializable(false); cfg.setMarshaller(marsh); return cfg; } /** {@inheritDoc} */ @Override protected long getTestTimeout() { return 6 * 60 * 1000L; } /** * @throws Exception If failed. */ public void testStartNodes() throws Exception { for (int i = 0; i < iters; i++) { try { log.info("Iteration: " + (i + 1) + '/' + iters); doTest(); } finally { stopAllGrids(true); } } } /** * @throws Exception If failed. */ private void doTest() throws Exception { final AtomicBoolean failed = new AtomicBoolean(); for (int i = 0; i < GRID_CNT; i++) { final int idx = i; final Ignite grid = concurrent ? null : startGrid(idx); IgniteInternalFuture<?> fut = multithreadedAsync(new Runnable() { @Override public void run() { Random rnd = new Random(); try { Ignite ignite = grid == null ? startGrid(idx) : grid; IgniteCache<Object, Object> cache = getCache(ignite); cache.put(ignite.cluster().localNode().id(), UUID.randomUUID()); while (!stopped) { int val = Math.abs(rnd.nextInt(100)); if (val >= 0 && val < 40) cache.containsKey(ignite.cluster().localNode().id()); else if (val >= 40 && val < 80) cache.get(ignite.cluster().localNode().id()); else cache.put(ignite.cluster().localNode().id(), UUID.randomUUID()); Thread.sleep(50); } } catch (Exception e) { log.error("Unexpected error: " + e, e); failed.set(true); } } }, 1); futs.add(fut); } Thread.sleep(10_000); stopped = true; for (IgniteInternalFuture<?> fut : futs) fut.get(); assertFalse(failed.get()); } /** * @param grid Grid. * @return Cache. */ private IgniteCache getCache(Ignite grid) { CacheConfiguration ccfg = defaultCacheConfiguration(); ccfg.setCacheMode(CacheMode.PARTITIONED); ccfg.setAtomicityMode(CacheAtomicityMode.ATOMIC); ccfg.setBackups(1); ccfg.setNearConfiguration(null); return grid.getOrCreateCache(ccfg); } }