-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CCR] Retry when no index shard stats can be found (#34852)
Index shard stats for the follower shard are fetched, when a shard follow task is started. This is needed in order to bootstap the shard follow task with the follower global checkpoint. Sometimes index shard stats are not available (e.g. during a restart) and we fail now, while it is very likely that these stats will be available some time later.
- Loading branch information
Showing
4 changed files
with
162 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
x-pack/plugin/ccr/src/test/java/org/elasticsearch/xpack/ccr/RestartIndexFollowingIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
package org.elasticsearch.xpack.ccr; | ||
|
||
import org.elasticsearch.common.xcontent.XContentType; | ||
import org.elasticsearch.index.IndexSettings; | ||
import org.elasticsearch.xpack.CcrIntegTestCase; | ||
import org.elasticsearch.xpack.core.ccr.action.PutFollowAction; | ||
|
||
import java.util.Locale; | ||
|
||
import static java.util.Collections.singletonMap; | ||
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked; | ||
import static org.hamcrest.Matchers.equalTo; | ||
|
||
public class RestartIndexFollowingIT extends CcrIntegTestCase { | ||
|
||
@Override | ||
protected int numberOfNodesPerCluster() { | ||
return 1; | ||
} | ||
|
||
public void testFollowIndex() throws Exception { | ||
final String leaderIndexSettings = getIndexSettings(1, 0, | ||
singletonMap(IndexSettings.INDEX_SOFT_DELETES_SETTING.getKey(), "true")); | ||
singletonMap(IndexSettings.INDEX_SOFT_DELETES_SETTING.getKey(), "true"); | ||
assertAcked(leaderClient().admin().indices().prepareCreate("index1").setSource(leaderIndexSettings, XContentType.JSON)); | ||
ensureLeaderGreen("index1"); | ||
|
||
final PutFollowAction.Request followRequest = putFollow("index1", "index2"); | ||
followerClient().execute(PutFollowAction.INSTANCE, followRequest).get(); | ||
|
||
final long firstBatchNumDocs = randomIntBetween(2, 64); | ||
logger.info("Indexing [{}] docs as first batch", firstBatchNumDocs); | ||
for (int i = 0; i < firstBatchNumDocs; i++) { | ||
final String source = String.format(Locale.ROOT, "{\"f\":%d}", i); | ||
leaderClient().prepareIndex("index1", "doc", Integer.toString(i)).setSource(source, XContentType.JSON).get(); | ||
} | ||
|
||
assertBusy(() -> { | ||
assertThat(followerClient().prepareSearch("index2").get().getHits().totalHits, equalTo(firstBatchNumDocs)); | ||
}); | ||
|
||
getFollowerCluster().fullRestart(); | ||
ensureFollowerGreen("index2"); | ||
|
||
final long secondBatchNumDocs = randomIntBetween(2, 64); | ||
for (int i = 0; i < secondBatchNumDocs; i++) { | ||
leaderClient().prepareIndex("index1", "doc").setSource("{}", XContentType.JSON).get(); | ||
} | ||
|
||
assertBusy(() -> { | ||
assertThat(followerClient().prepareSearch("index2").get().getHits().totalHits, | ||
equalTo(firstBatchNumDocs + secondBatchNumDocs)); | ||
}); | ||
} | ||
|
||
} |