Skip to content

Commit

Permalink
Add better tests for SegmentReplicator
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Handalian <marc.handalian@gmail.com>
  • Loading branch information
mch2 committed Sep 4, 2024
1 parent 6566171 commit e402bbc
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public void onReplicationDone(SegmentReplicationState state) {

@Override
public void onReplicationFailure(SegmentReplicationState state, ReplicationFailedException e, boolean sendShardFailure) {
logger.error(() -> new ParameterizedMessage("Failed segment replication for {}", shard.shardId()), e);
if (sendShardFailure) {
shard.failShard("unrecoverable replication failure", e);
}
Expand Down Expand Up @@ -146,7 +145,7 @@ public void onResponse(Void o) {

@Override
public void onFailure(Exception e) {
logger.debug("Replication failed {}", target.description());
logger.error("Replication failed {}", target.description(), e);
if (isStoreCorrupt(target) || e instanceof CorruptIndexException || e instanceof OpenSearchCorruptionException) {
onGoingReplications.fail(replicationId, new ReplicationFailedException("Store corruption during replication", e), true);
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

package org.opensearch.indices.replication;

import org.apache.lucene.store.IOContext;
import org.opensearch.OpenSearchCorruptionException;
import org.opensearch.cluster.metadata.IndexMetadata;
import org.opensearch.common.lucene.Lucene;
import org.opensearch.common.settings.Settings;
import org.opensearch.core.action.ActionListener;
import org.opensearch.index.engine.NRTReplicationEngineFactory;
Expand All @@ -16,24 +20,31 @@
import org.opensearch.index.shard.IndexShardTestCase;
import org.opensearch.index.store.StoreFileMetadata;
import org.opensearch.indices.replication.checkpoint.ReplicationCheckpoint;
import org.opensearch.indices.replication.common.CopyState;
import org.opensearch.indices.replication.common.ReplicationType;
import org.opensearch.threadpool.ThreadPool;

import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.BiConsumer;

import org.mockito.Mockito;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

public class SegmentReplicatorTests extends IndexShardTestCase {

private static final Settings settings = Settings.builder()
.put(IndexMetadata.SETTING_REPLICATION_TYPE, ReplicationType.SEGMENT)
.build();

public void testStartReplicationWithoutSourceFactory() {
ThreadPool threadpool = mock(ThreadPool.class);
ExecutorService mock = mock(ExecutorService.class);
Expand All @@ -45,20 +56,28 @@ public void testStartReplicationWithoutSourceFactory() {
Mockito.verifyNoInteractions(mock);
}

public void testStartReplicationRuns() throws IOException {
ThreadPool threadpool = mock(ThreadPool.class);
ExecutorService mock = mock(ExecutorService.class);
when(threadpool.generic()).thenReturn(mock);
final IndexShard indexShard = newStartedShard(randomBoolean(), Settings.EMPTY, new NRTReplicationEngineFactory());
SegmentReplicator segmentReplicator = spy(new SegmentReplicator(threadpool));
public void testStartReplicationRunsSuccessfully() throws Exception {
final IndexShard replica = newStartedShard(false, settings, new NRTReplicationEngineFactory());
final IndexShard primary = newStartedShard(true, settings, new NRTReplicationEngineFactory());

// index and copy segments to replica.
int numDocs = randomIntBetween(10, 20);
for (int i = 0; i < numDocs; i++) {
indexDoc(primary, "_doc", Integer.toString(i));
}
primary.refresh("test");

SegmentReplicator segmentReplicator = spy(new SegmentReplicator(threadPool));
SegmentReplicationSourceFactory factory = mock(SegmentReplicationSourceFactory.class);
when(factory.get(indexShard)).thenReturn(new TestReplicationSource() {
when(factory.get(replica)).thenReturn(new TestReplicationSource() {
@Override
public void getCheckpointMetadata(
long replicationId,
ReplicationCheckpoint checkpoint,
ActionListener<CheckpointInfoResponse> listener
) {}
) {
resolveCheckpointListener(listener, primary);
}

@Override
public void getSegmentFiles(
Expand All @@ -68,16 +87,77 @@ public void getSegmentFiles(
IndexShard indexShard,
BiConsumer<String, Long> fileProgressTracker,
ActionListener<GetSegmentFilesResponse> listener
) {}
) {
try {
Lucene.cleanLuceneIndex(indexShard.store().directory());
Map<String, StoreFileMetadata> segmentMetadataMap = primary.getSegmentMetadataMap();
for (String file : segmentMetadataMap.keySet()) {
indexShard.store().directory().copyFrom(primary.store().directory(), file, file, IOContext.DEFAULT);
}
listener.onResponse(new GetSegmentFilesResponse(new ArrayList<>(segmentMetadataMap.values())));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
});
segmentReplicator.setSourceFactory(factory);
segmentReplicator.startReplication(indexShard);
verify(mock, times(1)).execute(any());

// this startReplication entrypoint creates a SegmentReplicationTarget that incref's the shard's store
// but it is actually run from this test bc we mock the executor. We just want to test that it is
// created and passed to the threadpool for execution, so close the store here.
indexShard.store().decRef();
closeShards(indexShard);
segmentReplicator.startReplication(replica);
assertBusy(() -> assertDocCount(replica, numDocs));
closeShards(primary, replica);
}

public void testReplicationFails() throws Exception {
allowShardFailures();
final IndexShard replica = newStartedShard(false, settings, new NRTReplicationEngineFactory());
final IndexShard primary = newStartedShard(true, settings, new NRTReplicationEngineFactory());

SegmentReplicator segmentReplicator = spy(new SegmentReplicator(threadPool));
SegmentReplicationSourceFactory factory = mock(SegmentReplicationSourceFactory.class);
when(factory.get(replica)).thenReturn(new TestReplicationSource() {
@Override
public void getCheckpointMetadata(
long replicationId,
ReplicationCheckpoint checkpoint,
ActionListener<CheckpointInfoResponse> listener
) {
resolveCheckpointListener(listener, primary);
}

@Override
public void getSegmentFiles(
long replicationId,
ReplicationCheckpoint checkpoint,
List<StoreFileMetadata> filesToFetch,
IndexShard indexShard,
BiConsumer<String, Long> fileProgressTracker,
ActionListener<GetSegmentFilesResponse> listener
) {
OpenSearchCorruptionException corruptIndexException = new OpenSearchCorruptionException("test");
try {
indexShard.store().markStoreCorrupted(corruptIndexException);
} catch (IOException e) {
throw new RuntimeException(e);
}
listener.onFailure(corruptIndexException);
}
});
// assert shard failure on corruption
AtomicBoolean failureCallbackTriggered = new AtomicBoolean(false);
replica.addShardFailureCallback((ig) -> failureCallbackTriggered.set(true));
segmentReplicator.setSourceFactory(factory);
segmentReplicator.startReplication(replica);
assertBusy(() -> assertTrue(failureCallbackTriggered.get()));
closeShards(primary, replica);
}

protected void resolveCheckpointListener(ActionListener<CheckpointInfoResponse> listener, IndexShard primary) {
try (final CopyState copyState = new CopyState(primary)) {
listener.onResponse(
new CheckpointInfoResponse(copyState.getCheckpoint(), copyState.getMetadataMap(), copyState.getInfosBytes())
);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}

}

0 comments on commit e402bbc

Please sign in to comment.