/* * 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.ConcurrentMap; import java.util.concurrent.CountDownLatch; import java.util.concurrent.atomic.AtomicBoolean; import org.apache.ignite.IgniteCache; import org.apache.ignite.IgniteCheckedException; import org.apache.ignite.cache.query.SqlQuery; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.IgniteInternalFuture; import org.apache.ignite.internal.processors.query.GridQueryProcessor; import org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing; import org.apache.ignite.internal.util.lang.GridAbsPredicate; import org.apache.ignite.internal.util.typedef.CAX; import org.apache.ignite.internal.util.typedef.internal.U; import org.apache.ignite.testframework.GridTestUtils; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import static org.apache.ignite.IgniteSystemProperties.IGNITE_H2_INDEXING_CACHE_CLEANUP_PERIOD; import static org.apache.ignite.IgniteSystemProperties.IGNITE_H2_INDEXING_CACHE_THREAD_USAGE_TIMEOUT; import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL; import static org.apache.ignite.cache.CacheMode.PARTITIONED; import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC; /** * Tests leaks at the IgniteH2Indexing */ public class IgniteCacheQueryH2IndexingLeakTest extends GridCommonAbstractTest { /** */ private static final long TEST_TIMEOUT = 2 * 60 * 1000; /** Threads to parallel execute queries */ private static final int THREAD_COUNT = 10; /** Timeout */ private static final long STMT_CACHE_CLEANUP_TIMEOUT = 1000; /** Orig cleanup period. */ private static String origCacheCleanupPeriod; /** Orig usage timeout. */ private static String origCacheThreadUsageTimeout; /** */ private static final int ITERATIONS = 5; /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); cfg.setCacheConfiguration(cacheConfiguration()); return cfg; } /** * @return Cache configuration. */ protected CacheConfiguration cacheConfiguration() { CacheConfiguration<?,?> cacheCfg = defaultCacheConfiguration(); cacheCfg.setCacheMode(PARTITIONED); cacheCfg.setAtomicityMode(TRANSACTIONAL); cacheCfg.setWriteSynchronizationMode(FULL_SYNC); cacheCfg.setIndexedTypes( Integer.class, Integer.class ); return cacheCfg; } /** {@inheritDoc} */ @Override protected long getTestTimeout() { return TEST_TIMEOUT + 60_000; } /** {@inheritDoc} */ @Override protected void beforeTestsStarted() throws Exception { origCacheCleanupPeriod = System.getProperty(IGNITE_H2_INDEXING_CACHE_CLEANUP_PERIOD); origCacheThreadUsageTimeout = System.getProperty(IGNITE_H2_INDEXING_CACHE_THREAD_USAGE_TIMEOUT); System.setProperty(IGNITE_H2_INDEXING_CACHE_CLEANUP_PERIOD, Long.toString(STMT_CACHE_CLEANUP_TIMEOUT)); System.setProperty(IGNITE_H2_INDEXING_CACHE_THREAD_USAGE_TIMEOUT, Long.toString(STMT_CACHE_CLEANUP_TIMEOUT)); startGrid(0); } /** {@inheritDoc} */ @Override protected void afterTestsStopped() throws Exception { stopAllGrids(); System.setProperty(IGNITE_H2_INDEXING_CACHE_CLEANUP_PERIOD, origCacheCleanupPeriod != null ? origCacheCleanupPeriod : ""); System.setProperty(IGNITE_H2_INDEXING_CACHE_THREAD_USAGE_TIMEOUT, origCacheThreadUsageTimeout != null ? origCacheThreadUsageTimeout : ""); } /** * @param qryProcessor Query processor. * @return size of statement cache. */ private static int getStatementCacheSize(GridQueryProcessor qryProcessor) { IgniteH2Indexing h2Idx = GridTestUtils.getFieldValue(qryProcessor, GridQueryProcessor.class, "idx"); ConcurrentMap stmtCache = GridTestUtils.getFieldValue(h2Idx, IgniteH2Indexing.class, "stmtCache"); return stmtCache.size(); } /** * @throws Exception If failed. */ @SuppressWarnings({"TooBroadScope"}) public void testLeaksInIgniteH2IndexingOnTerminatedThread() throws Exception { final IgniteCache<Integer, Integer> c = grid(0).cache(DEFAULT_CACHE_NAME); for(int i = 0; i < ITERATIONS; ++i) { info("Iteration #" + i); final AtomicBoolean stop = new AtomicBoolean(); // Open iterator on the created cursor: add entries to the cache. IgniteInternalFuture<?> fut = multithreadedAsync( new CAX() { @Override public void applyx() throws IgniteCheckedException { while (!stop.get()) { c.query(new SqlQuery(Integer.class, "_val >= 0")).getAll(); c.query(new SqlQuery(Integer.class, "_val >= 1")).getAll(); } } }, THREAD_COUNT); final GridQueryProcessor qryProc = grid(0).context().query(); try { // Wait for stmt cache entry is created for each thread. assertTrue(GridTestUtils.waitForCondition(new GridAbsPredicate() { @Override public boolean apply() { return getStatementCacheSize(qryProc) == THREAD_COUNT; } }, STMT_CACHE_CLEANUP_TIMEOUT)); } finally { stop.set(true); } fut.get(); // Wait for stmtCache is cleaned up because all user threads are terminated. assertTrue(GridTestUtils.waitForCondition(new GridAbsPredicate() { @Override public boolean apply() { return getStatementCacheSize(qryProc) == 0; } }, STMT_CACHE_CLEANUP_TIMEOUT * 2)); } } /** * @throws Exception If failed. */ public void testLeaksInIgniteH2IndexingOnUnusedThread() throws Exception { final IgniteCache<Integer, Integer> c = grid(0).cache(DEFAULT_CACHE_NAME); final CountDownLatch latch = new CountDownLatch(1); for(int i = 0; i < ITERATIONS; ++i) { info("Iteration #" + i); // Open iterator on the created cursor: add entries to the cache IgniteInternalFuture<?> fut = multithreadedAsync( new CAX() { @Override public void applyx() throws IgniteCheckedException { c.query(new SqlQuery(Integer.class, "_val >= 0")).getAll(); U.await(latch); } }, THREAD_COUNT); Thread.sleep(STMT_CACHE_CLEANUP_TIMEOUT); // Wait for stmtCache is cleaned up because all user threads don't perform queries a lot of time. assertTrue(GridTestUtils.waitForCondition(new GridAbsPredicate() { @Override public boolean apply() { return getStatementCacheSize(grid(0).context().query()) == 0; } }, STMT_CACHE_CLEANUP_TIMEOUT * 2)); latch.countDown(); fut.get(); } } }