blob: 52a92aad8e6bed3176807ba9a2820adc437bb783 [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;
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.configuration.TransactionConfiguration;
import org.apache.ignite.testframework.MvccFeatureChecker;
import org.apache.ignite.transactions.Transaction;
import org.apache.ignite.transactions.TransactionConcurrency;
import org.apache.ignite.transactions.TransactionIsolation;
import org.junit.Before;
import org.junit.Test;
import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
import static org.apache.ignite.cache.CacheMode.PARTITIONED;
/**
* Test for read through store.
*/
public class CacheReadThroughRestartSelfTest extends GridCacheAbstractSelfTest {
/** */
@Before
public void beforeCacheReadThroughRestartSelfTest() {
MvccFeatureChecker.skipIfNotSupported(MvccFeatureChecker.Feature.CACHE_STORE);
}
/** {@inheritDoc} */
@Override protected int gridCount() {
return 2;
}
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
TransactionConfiguration txCfg = new TransactionConfiguration();
txCfg.setTxSerializableEnabled(true);
cfg.setTransactionConfiguration(txCfg);
CacheConfiguration cc = cacheConfiguration(igniteInstanceName);
cc.setLoadPreviousValue(false);
cfg.setCacheConfiguration(cc);
return cfg;
}
/** {@inheritDoc} */
@Override protected CacheAtomicityMode atomicityMode() {
return TRANSACTIONAL;
}
/** {@inheritDoc} */
@Override protected CacheMode cacheMode() {
return PARTITIONED;
}
/**
* @throws Exception If failed.
*/
@Test
public void testReadThroughInTx() throws Exception {
testReadThroughInTx(false);
}
/**
* @throws Exception If failed.
*/
@Test
public void testReadEntryThroughInTx() throws Exception {
testReadThroughInTx(true);
}
/**
* @throws Exception If failed.
*/
private void testReadThroughInTx(boolean needVer) throws Exception {
IgniteCache<String, Integer> cache = grid(1).cache(DEFAULT_CACHE_NAME);
for (int k = 0; k < 1000; k++)
cache.put("key" + k, k);
stopAllGrids();
startGrids(2);
awaitPartitionMapExchange();
Ignite ignite = grid(1);
cache = ignite.cache(DEFAULT_CACHE_NAME).withAllowAtomicOpsInTx();
for (TransactionConcurrency txConcurrency : TransactionConcurrency.values()) {
for (TransactionIsolation txIsolation : TransactionIsolation.values()) {
if (MvccFeatureChecker.forcedMvcc() && !MvccFeatureChecker.isSupported(txConcurrency, txIsolation))
continue;
try (Transaction tx = ignite.transactions().txStart(txConcurrency, txIsolation, 100000, 1000)) {
for (int k = 0; k < 1000; k++) {
String key = "key" + k;
if (needVer) {
assertNotNull("Null value for key: " + key, cache.getEntry(key));
assertNotNull("Null value for key: " + key, cache.getEntry(key));
}
else {
assertNotNull("Null value for key: " + key, cache.get(key));
assertNotNull("Null value for key: " + key, cache.get(key));
}
}
tx.commit();
}
}
}
}
/**
* @throws Exception If failed.
*/
@Test
public void testReadThrough() throws Exception {
testReadThrough(false);
}
/**
* @throws Exception If failed.
*/
@Test
public void testReadEntryThrough() throws Exception {
testReadThrough(true);
}
/**
* @throws Exception If failed.
*/
private void testReadThrough(boolean needVer) throws Exception {
IgniteCache<String, Integer> cache = grid(1).cache(DEFAULT_CACHE_NAME);
for (int k = 0; k < 1000; k++)
cache.put("key" + k, k);
stopAllGrids();
startGrids(2);
Ignite ignite = grid(1);
cache = ignite.cache(DEFAULT_CACHE_NAME);
for (int k = 0; k < 1000; k++) {
String key = "key" + k;
if (needVer)
assertNotNull("Null value for key: " + key, cache.getEntry(key));
else
assertNotNull("Null value for key: " + key, cache.get(key));
}
}
}