blob: 96961b5e503f3084368d15badccfd73889a7fcb5 [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.geode.cache.lucene;
import static org.apache.geode.cache.lucene.test.IndexRepositorySpy.doAfterN;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.INDEX_NAME;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.REGION_NAME;
import static org.apache.geode.test.awaitility.GeodeAwaitility.await;
import static org.junit.Assert.assertTrue;
import java.io.Serializable;
import java.util.concurrent.CountDownLatch;
import java.util.stream.IntStream;
import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import org.junit.After;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.CacheClosedException;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.lucene.test.IndexRegionSpy;
import org.apache.geode.cache.lucene.test.IndexRepositorySpy;
import org.apache.geode.cache.lucene.test.LuceneTestUtilities;
import org.apache.geode.distributed.DistributedMember;
import org.apache.geode.internal.cache.InitialImageOperation;
import org.apache.geode.internal.cache.InitialImageOperation.GIITestHook;
import org.apache.geode.internal.cache.InitialImageOperation.GIITestHookType;
import org.apache.geode.internal.cache.control.InternalResourceManager;
import org.apache.geode.test.dunit.SerializableRunnableIF;
import org.apache.geode.test.junit.categories.LuceneTest;
@Category({LuceneTest.class})
@RunWith(JUnitParamsRunner.class)
public class RebalanceWithRedundancyDUnitTest extends LuceneQueriesAccessorBase {
@After
public void cleanupRebalanceCallback() {
removeCallback(dataStore1);
removeCallback(dataStore2);
}
@Override
protected RegionTestableType[] getListOfRegionTestTypes() {
return new RegionTestableType[] {RegionTestableType.PARTITION_REDUNDANT,
RegionTestableType.FIXED_PARTITION};
}
protected void putEntryInEachBucket() {
accessor.invoke(() -> {
final Cache cache = getCache();
Region<Object, Object> region = cache.getRegion(REGION_NAME);
IntStream.range(0, NUM_BUCKETS).forEach(i -> region.put(i, new TestObject("hello world")));
});
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void returnCorrectResultsWhenMovePrimaryHappensOnIndexUpdate(
RegionTestableType regionTestType) throws InterruptedException {
final DistributedMember member2 =
dataStore2.invoke(() -> getCache().getDistributedSystem().getDistributedMember());
addCallbackToMovePrimary(dataStore1, member2);
putEntriesAndValidateResultsWithRedundancy(regionTestType);
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void returnCorrectResultsWhenCloseCacheHappensOnIndexUpdate(
RegionTestableType regionTestType) throws InterruptedException {
dataStore1.invoke(() -> {
IndexRepositorySpy spy = IndexRepositorySpy.injectSpy();
spy.beforeWriteIndexRepository(doAfterN(key -> getCache().close(), 2));
});
final String expectedExceptions = CacheClosedException.class.getName();
dataStore1.invoke(addExceptionTag1(expectedExceptions));
putEntriesAndValidateResultsWithRedundancy(regionTestType);
// Wait until the cache is closed in datastore1
dataStore1.invoke(
() -> await().until(basicGetCache()::isClosed));
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void returnCorrectResultsWhenCloseCacheHappensOnPartialIndexWrite(
RegionTestableType regionTestType) throws InterruptedException {
final DistributedMember member2 =
dataStore2.invoke(() -> getCache().getDistributedSystem().getDistributedMember());
dataStore1.invoke(() -> {
IndexRegionSpy.beforeWrite(getCache(), doAfterN(key -> getCache().close(), 100));
});
putEntriesAndValidateResultsWithRedundancy(regionTestType);
// Wait until the cache is closed in datastore1
dataStore1.invoke(
() -> await().until(basicGetCache()::isClosed));
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void returnCorrectResultsWhenIndexUpdateHappensIntheMiddleofGII(
RegionTestableType regionTestType) throws InterruptedException {
SerializableRunnableIF createIndex = () -> {
LuceneService luceneService = LuceneServiceProvider.get(getCache());
luceneService.createIndexFactory().setFields("text").create(INDEX_NAME, REGION_NAME);
};
dataStore1.invoke(() -> initDataStore(createIndex, regionTestType));
accessor.invoke(() -> initAccessor(createIndex, regionTestType));
dataStore1.invoke(() -> LuceneTestUtilities.pauseSender(getCache()));
putEntryInEachBucket();
dataStore2.invoke(() -> {
TestResourceObserver observer = new TestResourceObserver(4);
InternalResourceManager.setResourceObserver(observer);
InitialImageOperation.setGIITestHook(
new GIITestHook(GIITestHookType.AfterSentRequestImage, "Do puts during request") {
@Override
public void reset() {
}
@Override
public String getRegionName() {
return "_B__index#__region.files_0";
}
@Override
public void run() {
dataStore1.invoke(() -> LuceneTestUtilities.resumeSender(getCache()));
waitForFlushBeforeExecuteTextSearch(dataStore1, 30000);
((TestResourceObserver) InternalResourceManager.getResourceObserver())
.recoveryFinished();
}
});
});
dataStore2.invoke(() -> {
initDataStore(createIndex, regionTestType);
((TestResourceObserver) InternalResourceManager.getResourceObserver()).await();
});
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 30000));
dataStore1.invoke(() -> getCache().close());
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore2, 30000));
executeTextSearch(accessor, "world", "text", NUM_BUCKETS);
}
private void putEntriesAndValidateResultsWithRedundancy(RegionTestableType regionTestType) {
SerializableRunnableIF createIndex = () -> {
LuceneService luceneService = LuceneServiceProvider.get(getCache());
luceneService.createIndexFactory().setFields("text").create(INDEX_NAME, REGION_NAME);
};
dataStore1.invoke(() -> initDataStore(createIndex, regionTestType));
dataStore2.invoke(() -> initDataStore(createIndex, regionTestType));
accessor.invoke(() -> initAccessor(createIndex, regionTestType));
dataStore1.invoke(() -> LuceneTestUtilities.pauseSender(getCache()));
dataStore2.invoke(() -> LuceneTestUtilities.pauseSender(getCache()));
accessor.invoke(() -> LuceneTestUtilities.pauseSender(getCache()));
putEntryInEachBucket();
dataStore1.invoke(() -> LuceneTestUtilities.resumeSender(basicGetCache()));
dataStore2.invoke(() -> LuceneTestUtilities.resumeSender(basicGetCache()));
accessor.invoke(() -> LuceneTestUtilities.resumeSender(basicGetCache()));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore2, 60000));
executeTextSearch(accessor, "world", "text", NUM_BUCKETS);
}
private class TestResourceObserver extends InternalResourceManager.ResourceObserverAdapter
implements Serializable {
CountDownLatch recoveryDone;
public TestResourceObserver(int numToWait) {
recoveryDone = new CountDownLatch(numToWait);
}
@Override
public void recoveryFinished(Region region) {
recoveryDone.countDown();
}
public void recoveryFinished() {
recoveryDone.countDown();
}
public void await() throws InterruptedException {
recoveryDone.await();
}
}
}