/* * 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 org.apache.ignite.Ignite; import org.apache.ignite.IgniteCache; import org.apache.ignite.cache.CacheMode; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.util.typedef.internal.U; 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; import org.apache.ignite.transactions.Transaction; import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL; import static org.apache.ignite.transactions.TransactionConcurrency.PESSIMISTIC; import static org.apache.ignite.transactions.TransactionIsolation.REPEATABLE_READ; /** * */ public class IgniteCachePutStackOverflowSelfTest extends GridCommonAbstractTest { /** */ private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); TcpDiscoverySpi discoSpi = new TcpDiscoverySpi(); discoSpi.setIpFinder(IP_FINDER); cfg.setDiscoverySpi(discoSpi); return cfg; } /** {@inheritDoc} */ @Override protected void beforeTestsStarted() throws Exception { startGrid(0); } /** {@inheritDoc} */ @Override protected void afterTestsStopped() throws Exception { stopAllGrids(); } /** * @throws Exception if failed. */ public void testStackLocal() throws Exception { checkCache(CacheMode.LOCAL); } /** * @throws Exception if failed. */ public void testStackPartitioned() throws Exception { checkCache(CacheMode.PARTITIONED); } /** * @throws Exception if failed. */ public void testStackReplicated() throws Exception { checkCache(CacheMode.REPLICATED); } /** * @throws Exception if failed. */ private void checkCache(CacheMode mode) throws Exception { final Ignite ignite = ignite(0); final IgniteCache<Object, Object> cache = ignite.getOrCreateCache(new CacheConfiguration<>("cache") .setCacheMode(mode) .setAtomicityMode(TRANSACTIONAL)); try { Thread[] threads = new Thread[256]; try (Transaction tx = ignite.transactions().txStart(PESSIMISTIC, REPEATABLE_READ)) { // Lock the key. final String key = "key"; cache.get(key); // Simulate high contention. for (int i = 0; i < threads.length; i++) { threads[i] = new Thread() { @Override public void run() { cache.put(key, 1); } }; threads[i].start(); } U.sleep(2_000); cache.put(key, 1); tx.commit(); } System.out.println("Waiting for threads to finish..."); for (Thread thread : threads) thread.join(); } finally { ignite.destroyCache("cache"); } } }