blob: 03e751ece84f0f717ad911e5e75bb57914d2f941 [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.distributed.near;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteCache;
import org.apache.ignite.configuration.CacheConfiguration;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.internal.processors.cache.distributed.GridCachePreloadLifecycleAbstractTest;
import org.apache.ignite.internal.util.typedef.G;
import org.apache.ignite.lifecycle.LifecycleBean;
import org.apache.ignite.lifecycle.LifecycleEventType;
import org.apache.ignite.resources.IgniteInstanceResource;
import org.apache.ignite.transactions.TransactionConcurrency;
import org.apache.ignite.transactions.TransactionIsolation;
import org.junit.Test;
import static org.apache.ignite.cache.CacheMode.PARTITIONED;
import static org.apache.ignite.cache.CacheRebalanceMode.SYNC;
import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
/**
* Tests for replicated cache preloader.
*/
public class GridCachePartitionedPreloadLifecycleSelfTest extends GridCachePreloadLifecycleAbstractTest {
/** Grid count. */
private int gridCnt = 5;
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration c = super.getConfiguration(igniteInstanceName);
c.getTransactionConfiguration().setDefaultTxConcurrency(TransactionConcurrency.OPTIMISTIC);
c.getTransactionConfiguration().setDefaultTxIsolation(TransactionIsolation.READ_COMMITTED);
CacheConfiguration cc1 = defaultCacheConfiguration();
cc1.setName("one");
cc1.setCacheMode(PARTITIONED);
cc1.setBackups(1);
cc1.setWriteSynchronizationMode(FULL_SYNC);
cc1.setRebalanceMode(preloadMode);
cc1.setEvictionPolicy(null);
cc1.setCacheStoreFactory(null);
// Identical configuration.
CacheConfiguration cc2 = new CacheConfiguration(cc1);
cc2.setName("two");
c.setCacheConfiguration(cc1, cc2);
return c;
}
/**
* @param keys Keys.
* @return Lifecycle bean.
*/
private LifecycleBean lifecycleBean(final Object[] keys) {
return new LifecycleBean() {
@IgniteInstanceResource
private Ignite ignite;
@Override public void onLifecycleEvent(LifecycleEventType evt) {
switch (evt) {
case AFTER_NODE_START: {
IgniteCache<Object, MyValue> c1 = ignite.cache("one");
IgniteCache<Object, MyValue> c2 = ignite.cache("two");
if (!ignite.name().contains("Test0")) {
info("Keys already in cache:");
for (Object k : entrySet(c1))
info("Cache1: " + k.toString());
for (Object k : entrySet(c2))
info("Cache2: " + k.toString());
return;
}
info("Populating cache data...");
int i = 0;
for (Object key : keys) {
c1.put(key, new MyValue(value(key)));
if (i++ % 2 == 0)
c2.put(key, new MyValue(value(key)));
}
assert c1.size() == keys.length : "Invalid cache1 size [size=" + c1.size() + ']';
assert c2.size() == keys.length / 2 : "Invalid cache2 size [size=" + c2.size() + ']';
break;
}
case BEFORE_NODE_START:
case BEFORE_NODE_STOP:
case AFTER_NODE_STOP: {
info("Lifecycle event: " + evt);
break;
}
}
}
};
}
/**
* @param keys Keys.
* @throws Exception If failed.
*/
public void checkCache(Object[] keys) throws Exception {
preloadMode = SYNC;
lifecycleBean = lifecycleBean(keys);
for (int i = 0; i < gridCnt; i++) {
startGrid(i);
info("Checking '" + (i + 1) + "' nodes...");
for (int j = 0; j < G.allGrids().size(); j++) {
IgniteCache<Object, MyValue> c1 = grid(j).cache("one");
IgniteCache<Object, MyValue> c2 = grid(j).cache("two");
int k = 0;
for (Object key : keys) {
assertNotNull(c1.get(key));
if (k++ % 2 == 0)
assertNotNull("Value is null for key: " + key, c2.get(key));
}
}
}
}
/**
* @throws Exception If failed.
*/
@Test
public void testLifecycleBean1() throws Exception {
checkCache(keys(true, DFLT_KEYS.length, DFLT_KEYS));
}
/**
* @throws Exception If failed.
*/
@Test
public void testLifecycleBean2() throws Exception {
checkCache(keys(false, DFLT_KEYS.length, DFLT_KEYS));
}
/**
* @throws Exception If failed.
*/
@Test
public void testLifecycleBean3() throws Exception {
checkCache(keys(true, 500));
}
/**
* @throws Exception If failed.
*/
@Test
public void testLifecycleBean4() throws Exception {
checkCache(keys(false, 500));
}
}