2013-07-01 16:02:38 +02:00
|
|
|
---
|
|
|
|
"Realtime Refresh":
|
|
|
|
|
2013-11-05 13:28:47 +01:00
|
|
|
- do:
|
2013-07-01 16:02:38 +02:00
|
|
|
indices.create:
|
2013-11-05 11:24:31 +01:00
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
settings:
|
|
|
|
index:
|
|
|
|
refresh_interval: -1
|
|
|
|
number_of_replicas: 0
|
|
|
|
|
2013-07-01 16:02:38 +02:00
|
|
|
- do:
|
|
|
|
cluster.health:
|
2014-02-10 11:31:26 +01:00
|
|
|
wait_for_status: green
|
2013-07-01 16:02:38 +02:00
|
|
|
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
body: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
get:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
realtime: 1
|
|
|
|
|
2014-01-02 13:31:49 -07:00
|
|
|
- is_true: found
|
2013-07-01 16:02:38 +02:00
|
|
|
|
|
|
|
- do:
|
|
|
|
catch: missing
|
|
|
|
get:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
realtime: 0
|
|
|
|
|
|
|
|
- do:
|
|
|
|
get:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
realtime: 0
|
|
|
|
refresh: 1
|
|
|
|
|
2014-01-02 13:31:49 -07:00
|
|
|
- is_true: found
|