Skip to content

Commit 6851d28

Browse files
committed
Addresses errors in indices.rollover
- 400 status_exception: Parameter validation failed for [/logs-1]: The http parameter [wait_for_active_shards] (with value [1]) is not permitted when running in serverless mode - 400 illegal_argument_exception: rollover with condition is not supported in serverless mode
1 parent 31cc2c5 commit 6851d28

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

tests/indices/rollover.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ requires:
55
---
66
teardown:
77
- do:
8-
indices.delete: { index: logs-1 }
8+
indices.delete: { index: logs-1, ignore: 404 }
99
- do:
10-
indices.delete: { index: logs-000002 }
10+
indices.delete: { index: logs-000002, ignore: 404 }
1111
---
1212
"Rollover index via API":
1313
# create index with alias
1414
- do:
1515
indices.create:
1616
index: logs-1
17-
wait_for_active_shards: 1
1817
body:
1918
aliases:
2019
logs_index: {}
2120
logs_search: {}
21+
2222
# index document
2323
- do:
2424
index:
@@ -39,15 +39,10 @@ teardown:
3939
- do:
4040
indices.rollover:
4141
alias: "logs_search"
42-
wait_for_active_shards: 1
43-
body:
44-
conditions:
45-
max_docs: 1
4642
- match: { old_index: logs-1 }
4743
- match: { new_index: logs-000002 }
4844
- match: { rolled_over: true }
4945
- match: { dry_run: false }
50-
- match: { conditions: { "[max_docs: 1]": true } }
5146

5247
# ensure new index is created
5348
- do:

0 commit comments

Comments
 (0)