OpenSearch/rest-api-spec/test/indices.put_settings/10_basic.yaml

31 lines
552 B
YAML
Raw Normal View History

2013-07-21 18:49:53 -04:00
---
"Test indices settings":
- do:
indices.create:
index: test-index
body:
settings:
index:
number_of_replicas: 0
- do:
indices.get_settings:
index: test-index
flat_settings: true
2013-07-21 18:49:53 -04:00
- match:
test-index.settings.index\.number_of_replicas: "0"
- do:
indices.put_settings:
body:
number_of_replicas: 1
- do:
indices.get_settings:
flat_settings: false
2013-07-21 18:49:53 -04:00
- match:
test-index.settings.index.number_of_replicas: "1"
2013-07-21 18:49:53 -04:00