Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion test/common/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,17 @@ export default function () {
opensearchTestCluster: {
license: 'oss',
from: 'snapshot',
serverArgs: ['search.concurrent_segment_search.mode=none'],
serverArgs: [
'search.concurrent_segment_search.mode=none',
// Disable disk-based shard allocation to prevent index creation blocks in CI
'cluster.routing.allocation.disk.threshold_enabled=false',
// Set very low disk watermarks for testing
'cluster.routing.allocation.disk.watermark.low=1gb',
'cluster.routing.allocation.disk.watermark.high=500mb',
'cluster.routing.allocation.disk.watermark.flood_stage=100mb',
// Disable read-only index block when disk space is low
'cluster.blocks.read_only_allow_delete=false',
],
},

osdTestServer: {
Expand Down
Loading