Simplify Snapshot Resiliency Test (#40930) (#41565)

* Thanks to #39793 dynamic mapping updates don't contain blocking operations anymore so we don't have to manually put the mapping in this test and can keep it a little simpler
This commit is contained in:
Armin Braun 2019-04-26 10:59:09 +02:00 committed by GitHub
parent 67820f9da1
commit 7824f60a34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 24 deletions

View File

@ -47,7 +47,6 @@ import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest; import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
import org.elasticsearch.action.admin.indices.delete.TransportDeleteIndexAction; import org.elasticsearch.action.admin.indices.delete.TransportDeleteIndexAction;
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingAction; import org.elasticsearch.action.admin.indices.mapping.put.PutMappingAction;
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
import org.elasticsearch.action.admin.indices.mapping.put.TransportPutMappingAction; import org.elasticsearch.action.admin.indices.mapping.put.TransportPutMappingAction;
import org.elasticsearch.action.admin.indices.shards.IndicesShardStoresAction; import org.elasticsearch.action.admin.indices.shards.IndicesShardStoresAction;
import org.elasticsearch.action.admin.indices.shards.TransportIndicesShardStoresAction; import org.elasticsearch.action.admin.indices.shards.TransportIndicesShardStoresAction;
@ -260,9 +259,6 @@ public class SnapshotResiliencyTests extends ESTestCase {
))); )));
})); }));
final AtomicInteger countdown = new AtomicInteger(documents); final AtomicInteger countdown = new AtomicInteger(documents);
masterNode.client.admin().indices().putMapping(
new PutMappingRequest(index).type("_doc").source("foo", "type=text"),
assertNoFailureListener(r -> {
for (int i = 0; i < documents; ++i) { for (int i = 0; i < documents; ++i) {
masterNode.client.bulk( masterNode.client.bulk(
new BulkRequest().add(new IndexRequest(index).source( new BulkRequest().add(new IndexRequest(index).source(
@ -281,8 +277,6 @@ public class SnapshotResiliencyTests extends ESTestCase {
if (documents == 0) { if (documents == 0) {
afterIndexing.run(); afterIndexing.run();
} }
}
));
})))); }))));
runUntil(documentCountVerified::get, TimeUnit.MINUTES.toMillis(5L)); runUntil(documentCountVerified::get, TimeUnit.MINUTES.toMillis(5L));
assertTrue(createdSnapshot.get()); assertTrue(createdSnapshot.get());