Skip to content

Commit 79ec874

Browse files
Fix SnapshotStatusApisIT.testGetSnapshotsWithSnapshotInProgress (#89925)
Same issue as fixed in #89908, we need our pool to be large enough so all the not-blocked snapshot metadata work can complete while we block data file work. closes #89922
1 parent e89586c commit 79ec874

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

server/src/internalClusterTest/java/org/elasticsearch/snapshots/SnapshotStatusApisIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {
6363
return Settings.builder()
6464
.put(super.nodeSettings(nodeOrdinal, otherSettings))
6565
.put(ThreadPool.ESTIMATED_TIME_INTERVAL_SETTING.getKey(), 0) // We have tests that check by-timestamp order
66+
.put(LARGE_SNAPSHOT_POOL_SETTINGS) // we have #testGetSnapshotsWithSnapshotInProgress which needs many threads to ensure
67+
// its snapshot pool does not become fully blocked on data nodes when blocking on data files
6668
.build();
6769
}
6870

0 commit comments

Comments
 (0)