2013-06-28 13:44:13 -04:00
|
|
|
---
|
|
|
|
"Refresh":
|
2013-07-01 09:58:23 -04:00
|
|
|
|
2013-06-28 13:44:13 -04:00
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
settings:
|
|
|
|
index.refresh_interval: -1
|
2014-03-31 05:28:34 -04:00
|
|
|
number_of_replicas: 0
|
2013-06-28 13:44:13 -04:00
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: yellow
|
|
|
|
|
|
|
|
- do:
|
|
|
|
update:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
body:
|
|
|
|
doc: { foo: baz }
|
|
|
|
upsert: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
search:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
body:
|
|
|
|
query: { term: { _id: 1 }}
|
|
|
|
|
|
|
|
- match: { hits.total: 0 }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
update:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 2
|
|
|
|
refresh: 1
|
|
|
|
body:
|
|
|
|
doc: { foo: baz }
|
|
|
|
upsert: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
search:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
body:
|
|
|
|
query: { term: { _id: 2 }}
|
|
|
|
|
|
|
|
- match: { hits.total: 1 }
|