/* * 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.Callable; import java.util.concurrent.atomic.AtomicBoolean; import javax.cache.expiry.Duration; import javax.cache.expiry.TouchedExpiryPolicy; import org.apache.ignite.IgniteCache; import org.apache.ignite.internal.IgniteInternalFuture; import org.apache.ignite.internal.IgniteKernal; import org.apache.ignite.internal.util.typedef.internal.U; import static java.util.concurrent.TimeUnit.MILLISECONDS; import static org.apache.ignite.cache.CacheMode.REPLICATED; /** * Check ttl manager for memory leak. */ public class GridCacheTtlManagerLoadTest extends GridCacheTtlManagerSelfTest { /** * @throws Exception If failed. */ public void testLoad() throws Exception { cacheMode = REPLICATED; final IgniteKernal g = (IgniteKernal)startGrid(0); try { final AtomicBoolean stop = new AtomicBoolean(); IgniteInternalFuture<?> fut = multithreadedAsync(new Callable<Object>() { @Override public Object call() throws Exception { IgniteCache<Object,Object> cache = g.cache(DEFAULT_CACHE_NAME). withExpiryPolicy(new TouchedExpiryPolicy(new Duration(MILLISECONDS, 1000))); long key = 0; while (!stop.get()) { cache.put(key, key); key++; } return null; } }, 1); GridCacheTtlManager ttlMgr = g.internalCache(DEFAULT_CACHE_NAME).context().ttl(); for (int i = 0; i < 300; i++) { U.sleep(1000); ttlMgr.printMemoryStats(); } stop.set(true); fut.get(); } finally { stopAllGrids(); } } /** {@inheritDoc} */ @Override protected long getTestTimeout() { return Long.MAX_VALUE; } }