57 lines
995 B
YAML
Raw Normal View History

2013-06-28 19:44:13 +02:00
---
"Routing":
- do:
indices.create:
index: test_1
body:
settings:
index:
number_of_replicas: 0
- do:
cluster.health:
wait_for_status: green
2013-06-28 19:44:13 +02:00
- do:
update:
index: test_1
type: test
id: 1
routing: 5
body:
doc: { foo: baz }
upsert: { foo: bar }
- do:
get:
index: test_1
type: test
id: 1
routing: 5
fields: _routing
2013-07-12 18:26:18 +02:00
- match: { fields._routing: "5"}
2013-06-28 19:44:13 +02:00
- do:
catch: missing
update:
index: test_1
type: test
id: 1
body:
doc: { foo: baz }
- do:
update:
index: test_1
type: test
id: 1
routing: 5
fields: foo
body:
doc: { foo: baz }
2014-01-04 01:21:43 +01:00
- match: { get.fields.foo: [baz] }
2013-06-28 19:44:13 +02:00