Skip to content

Commit

Permalink
Merge pull request opensearch-project#150 from Bukhtawar/remote-store…
Browse files Browse the repository at this point in the history
…-enabled-its

Disabling tests as write thread pool block on replica doesn't impact …
  • Loading branch information
Bukhtawar committed Sep 2, 2023
2 parents e805cec + 11fd9d9 commit 268e711
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -75,6 +75,8 @@ protected int numberOfShards() {
return 1;
}

@AwaitsFix(bugUrl = "The tests blocks write threadpool on replica to mimic replication getting stuck. Since primary term validation is pretty light-weight we use transport_worker instead and the backpressure" +
" for segrep is dealt with differently hence skipping")
public void testShardIndexingPressureTrackingDuringBulkWrites() throws Exception {
assertAcked(
prepareCreate(
Expand Down Expand Up @@ -266,6 +268,8 @@ public void testShardIndexingPressureTrackingDuringBulkWrites() throws Exception
}
}

@AwaitsFix(bugUrl = "The tests blocks write threadpool on replica to mimic replication getting stuck. Since primary term validation is pretty light-weight we use transport_worker instead and the backpressure" +
" for segrep is dealt with differently hence skipping")
public void testWritesRejectedForSingleCoordinatingShardDueToNodeLevelLimitBreach() throws Exception {
final BulkRequest bulkRequest = new BulkRequest();
int totalRequestSize = 0;
Expand Down Expand Up @@ -354,6 +358,8 @@ public void testWritesRejectedForSingleCoordinatingShardDueToNodeLevelLimitBreac
}
}

@AwaitsFix(bugUrl = "The tests blocks write threadpool on replica to mimic replication getting stuck. Since primary term validation is pretty light-weight we use transport_worker instead and the backpressure" +
" for segrep is dealt with differently hence skipping")
public void testWritesRejectedFairnessWithMultipleCoordinatingShardsDueToNodeLevelLimitBreach() throws Exception {
final BulkRequest largeBulkRequest = new BulkRequest();
int totalRequestSize = 0;
Expand Down Expand Up @@ -518,6 +524,8 @@ public void testWritesRejectedFairnessWithMultipleCoordinatingShardsDueToNodeLev
}
}

@AwaitsFix(bugUrl = "The tests blocks write threadpool on replica to mimic replication getting stuck. Since primary term validation is pretty light-weight we use transport_worker instead and the backpressure" +
" for segrep is dealt with differently hence skipping")
public void testWritesRejectedForSinglePrimaryShardDueToNodeLevelLimitBreach() throws Exception {
final BulkRequest bulkRequest = new BulkRequest();
int totalRequestSize = 0;
Expand Down Expand Up @@ -598,6 +606,8 @@ public void testWritesRejectedForSinglePrimaryShardDueToNodeLevelLimitBreach() t
}
}

@AwaitsFix(bugUrl = "The tests blocks write threadpool on replica to mimic replication getting stuck. Since primary term validation is pretty light-weight we use transport_worker instead and the backpressure" +
" for segrep is dealt with differently hence skipping")
public void testWritesRejectedFairnessWithMultiplePrimaryShardsDueToNodeLevelLimitBreach() throws Exception {
final BulkRequest largeBulkRequest = new BulkRequest();
int totalRequestSize = 0;
Expand Down

0 comments on commit 268e711

Please sign in to comment.