File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,17 @@ export default function () {
4444 opensearchTestCluster : {
4545 license : 'oss' ,
4646 from : 'snapshot' ,
47- serverArgs : [ 'search.concurrent_segment_search.mode=none' ] ,
47+ serverArgs : [
48+ 'search.concurrent_segment_search.mode=none' ,
49+ // Disable disk-based shard allocation to prevent index creation blocks in CI
50+ 'cluster.routing.allocation.disk.threshold_enabled=false' ,
51+ // Set very low disk watermarks for testing
52+ 'cluster.routing.allocation.disk.watermark.low=1gb' ,
53+ 'cluster.routing.allocation.disk.watermark.high=500mb' ,
54+ 'cluster.routing.allocation.disk.watermark.flood_stage=100mb' ,
55+ // Disable read-only index block when disk space is low
56+ 'cluster.blocks.read_only_allow_delete=false' ,
57+ ] ,
4858 } ,
4959
5060 osdTestServer : {
You can’t perform that action at this time.
0 commit comments