2013-06-26 16:04:20 -04:00
|
|
|
---
|
|
|
|
"Refresh":
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
settings:
|
|
|
|
index.refresh_interval: -1
|
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: yellow
|
|
|
|
|
|
|
|
- do:
|
2013-06-26 16:18:14 -04:00
|
|
|
create:
|
2013-06-26 16:04:20 -04:00
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
body: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
2013-06-26 16:18:14 -04:00
|
|
|
search:
|
2013-06-26 16:04:20 -04:00
|
|
|
index: test_1
|
|
|
|
type: test
|
2013-06-26 16:18:14 -04:00
|
|
|
body:
|
|
|
|
query: { term: { _id: 1 }}
|
|
|
|
|
|
|
|
- match: { hits.total: 0 }
|
2013-06-26 16:04:20 -04:00
|
|
|
|
|
|
|
- do:
|
2013-06-26 16:18:14 -04:00
|
|
|
create:
|
2013-06-26 16:04:20 -04:00
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 2
|
|
|
|
refresh: 1
|
|
|
|
body: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
2013-06-26 16:18:14 -04:00
|
|
|
search:
|
2013-06-26 16:04:20 -04:00
|
|
|
index: test_1
|
|
|
|
type: test
|
2013-06-26 16:18:14 -04:00
|
|
|
body:
|
|
|
|
query: { term: { _id: 2 }}
|
2013-06-26 16:04:20 -04:00
|
|
|
|
2013-06-26 16:18:14 -04:00
|
|
|
- match: { hits.total: 1 }
|