Skip to content

Commit

Permalink
[Remote Store] Add checks to skip remote uploads after shard is closed (
Browse files Browse the repository at this point in the history
opensearch-project#13998)

Signed-off-by: Shourya Dutta Biswas <114977491+shourya035@users.noreply.github.com>
  • Loading branch information
shourya035 authored and wangdongyu.danny committed Aug 22, 2024
1 parent a37d8da commit d7b8b78
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,13 @@ protected boolean performAfterRefreshWithPermit(boolean didRefresh) {
* @return true if sync is needed
*/
private boolean shouldSync(boolean didRefresh, boolean skipPrimaryTermCheck) {
// Ignore syncing segments if the underlying shard is closed
// This also makes sure that retries are not scheduled for shards
// with failed syncSegments invocation after they are closed
if (shardClosed()) {
logger.info("Shard is already closed. Not attempting sync to remote store");
return false;
}
boolean shouldSync = didRefresh // If the readers change, didRefresh is always true.
// The third condition exists for uploading the zero state segments where the refresh has not changed the reader
// reference, but it is important to upload the zero state segments so that the restore does not break.
Expand Down Expand Up @@ -607,6 +614,15 @@ public void onFailure(String file) {
};
}

/**
* Checks if the underlying IndexShard instance is closed
*
* @return true if it is closed, false otherwise
*/
private boolean shardClosed() {
return indexShard.state() == IndexShardState.CLOSED;
}

@Override
protected Logger getLogger() {
return logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;

import static org.opensearch.cluster.metadata.IndexMetadata.SETTING_REPLICATION_TYPE;
Expand Down Expand Up @@ -470,6 +471,25 @@ public void testRefreshPersistentFailure() throws Exception {
assertFalse("remote store should not in sync", tuple.v1().isRemoteSegmentStoreInSync());
}

public void testRefreshPersistentFailureAndIndexShardClosed() throws Exception {
int succeedOnAttempt = 3;
int closeShardOnAttempt = 1;
CountDownLatch refreshCountLatch = new CountDownLatch(1);
CountDownLatch successLatch = new CountDownLatch(10);
Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> tuple = mockIndexShardWithRetryAndScheduleRefresh(
succeedOnAttempt,
refreshCountLatch,
successLatch,
true,
closeShardOnAttempt
);
// Giving 10ms for some iterations of remote refresh upload
Thread.sleep(TimeUnit.SECONDS.toMillis(2));
RemoteStoreRefreshListener listener = tuple.v1();
assertFalse("remote store should not in sync", listener.isRemoteSegmentStoreInSync());
assertFalse(listener.getRetryScheduledStatus());
}

private void assertNoLagAndTotalUploadsFailed(RemoteSegmentTransferTracker segmentTracker, long totalUploadsFailed) throws Exception {
assertBusy(() -> {
assertEquals(0, segmentTracker.getBytesLag());
Expand Down Expand Up @@ -548,6 +568,49 @@ private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIn
return mockIndexShardWithRetryAndScheduleRefresh(succeedOnAttempt, refreshCountLatch, successLatch, 1, noOpLatch);
}

private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIndexShardWithRetryAndScheduleRefresh(
int totalAttempt,
CountDownLatch refreshCountLatch,
CountDownLatch successLatch,
int checkpointPublishSucceedOnAttempt,
CountDownLatch reachedCheckpointPublishLatch,
boolean mockPrimaryTerm,
boolean testUploadTimeout
) throws IOException {
return mockIndexShardWithRetryAndScheduleRefresh(
totalAttempt,
refreshCountLatch,
successLatch,
checkpointPublishSucceedOnAttempt,
reachedCheckpointPublishLatch,
mockPrimaryTerm,
testUploadTimeout,
false,
0
);
}

private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIndexShardWithRetryAndScheduleRefresh(
int succeedOnAttempt,
CountDownLatch refreshCountLatch,
CountDownLatch successLatch,
boolean closedShard,
int closeShardAfterAttempt
) throws IOException {
CountDownLatch noOpLatch = new CountDownLatch(0);
return mockIndexShardWithRetryAndScheduleRefresh(
succeedOnAttempt,
refreshCountLatch,
successLatch,
1,
noOpLatch,
true,
false,
closedShard,
closeShardAfterAttempt
);
}

private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIndexShardWithRetryAndScheduleRefresh(
int succeedOnAttempt,
CountDownLatch refreshCountLatch,
Expand All @@ -562,7 +625,9 @@ private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIn
succeedCheckpointPublishOnAttempt,
reachedCheckpointPublishLatch,
true,
false
false,
false,
0
);
}

Expand All @@ -573,7 +638,9 @@ private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIn
int succeedCheckpointPublishOnAttempt,
CountDownLatch reachedCheckpointPublishLatch,
boolean mockPrimaryTerm,
boolean testUploadTimeout
boolean testUploadTimeout,
boolean closeShard,
int closeShardAfterAttempt
) throws IOException {
// Create index shard that we will be using to mock different methods in IndexShard for the unit test
indexShard = newStartedShard(
Expand Down Expand Up @@ -601,7 +668,6 @@ private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIn
IndexShard shard = mock(IndexShard.class);
Store store = mock(Store.class);
when(shard.store()).thenReturn(store);
when(shard.state()).thenReturn(IndexShardState.STARTED);
when(store.directory()).thenReturn(indexShard.store().directory());

// Mock (RemoteSegmentStoreDirectory) ((FilterDirectory) ((FilterDirectory) indexShard.remoteStore().directory())
Expand Down Expand Up @@ -663,6 +729,14 @@ private Tuple<RemoteStoreRefreshListener, RemoteStoreStatsTrackerFactory> mockIn
return indexShard.getLatestReplicationCheckpoint();
})).when(shard).computeReplicationCheckpoint(any());

doAnswer((invocationOnMock -> {
if (closeShard && counter.get() == closeShardAfterAttempt) {
logger.info("Closing shard...");
return IndexShardState.CLOSED;
}
return IndexShardState.STARTED;
})).when(shard).state();

doAnswer(invocation -> {
if (Objects.nonNull(successLatch)) {
successLatch.countDown();
Expand Down

0 comments on commit d7b8b78

Please sign in to comment.