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
|
2014-01-06 11:50:57 -05:00
|
|
|
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:
|
2014-01-06 11:50:57 -05:00
|
|
|
indices.get_settings:
|
|
|
|
flat_settings: false
|
2013-07-21 18:49:53 -04:00
|
|
|
|
|
|
|
- match:
|
2014-01-06 11:50:57 -05:00
|
|
|
test-index.settings.index.number_of_replicas: "1"
|
2013-07-21 18:49:53 -04:00
|
|
|
|