@@ -631,6 +631,7 @@ public void testCacheWithFilteredAlias() throws InterruptedException {
631
631
assertCacheState (client , index , 2 , 2 );
632
632
}
633
633
634
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/11374" )
634
635
public void testProfileDisableCache () throws Exception {
635
636
Client client = client ();
636
637
String index = "index" ;
@@ -673,6 +674,7 @@ public void testProfileDisableCache() throws Exception {
673
674
}
674
675
}
675
676
677
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/12308" )
676
678
public void testCacheWithInvalidation () throws Exception {
677
679
Client client = client ();
678
680
String index = "index" ;
@@ -758,6 +760,7 @@ public void testCacheClearAPIRemovesStaleKeysWhenStalenessThresholdIsLow() throw
758
760
}
759
761
760
762
// when staleness threshold is lower than staleness, it should clean the stale keys from cache
763
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13540" )
761
764
public void testStaleKeysCleanupWithLowThreshold () throws Exception {
762
765
int cacheCleanIntervalInMillis = 1 ;
763
766
String node = internalCluster ().startNode (
@@ -804,6 +807,7 @@ public void testStaleKeysCleanupWithLowThreshold() throws Exception {
804
807
}
805
808
806
809
// when staleness threshold is equal to staleness, it should clean the stale keys from cache
810
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13503" )
807
811
public void testCacheCleanupOnEqualStalenessAndThreshold () throws Exception {
808
812
int cacheCleanIntervalInMillis = 1 ;
809
813
String node = internalCluster ().startNode (
@@ -982,6 +986,7 @@ public void testStaleKeysRemovalWithoutExplicitThreshold() throws Exception {
982
986
}
983
987
984
988
// when cache cleaner interval setting is not set, cache cleaner is configured appropriately with the fall-back setting
989
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13711" )
985
990
public void testCacheCleanupWithDefaultSettings () throws Exception {
986
991
int cacheCleanIntervalInMillis = 1 ;
987
992
String node = internalCluster ().startNode (
@@ -1022,6 +1027,7 @@ public void testCacheCleanupWithDefaultSettings() throws Exception {
1022
1027
}
1023
1028
1024
1029
// staleness threshold updates flows through to the cache cleaner
1030
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13949" )
1025
1031
public void testDynamicStalenessThresholdUpdate () throws Exception {
1026
1032
int cacheCleanIntervalInMillis = 1 ;
1027
1033
String node = internalCluster ().startNode (
@@ -1169,6 +1175,7 @@ public void testCacheCleanupAfterIndexDeletion() throws Exception {
1169
1175
}
1170
1176
1171
1177
// when staleness threshold is lower than staleness, it should clean the cache from all indices having stale keys
1178
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13437" )
1172
1179
public void testStaleKeysCleanupWithMultipleIndices () throws Exception {
1173
1180
int cacheCleanIntervalInMillis = 10 ;
1174
1181
String node = internalCluster ().startNode (
@@ -1223,6 +1230,7 @@ public void testStaleKeysCleanupWithMultipleIndices() throws Exception {
1223
1230
}, cacheCleanIntervalInMillis * 2 , TimeUnit .MILLISECONDS );
1224
1231
}
1225
1232
1233
+ @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13600" )
1226
1234
public void testDeleteAndCreateSameIndexShardOnSameNode () throws Exception {
1227
1235
String node_1 = internalCluster ().startNode (Settings .builder ().build ());
1228
1236
Client client = client (node_1 );
0 commit comments