2013-07-01 10:03:37 -04:00
|
|
|
---
|
|
|
|
"Routing":
|
|
|
|
|
2014-02-10 06:30:37 -05:00
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
settings:
|
|
|
|
index:
|
2014-03-10 08:48:17 -04:00
|
|
|
number_of_shards: 5
|
2014-02-10 06:30:37 -05:00
|
|
|
number_of_replicas: 0
|
|
|
|
|
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: green
|
|
|
|
|
2013-07-01 10:03:37 -04:00
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
routing: 5
|
|
|
|
body: { foo: bar }
|
2014-02-10 06:30:37 -05:00
|
|
|
|
2013-07-01 10:03:37 -04:00
|
|
|
- do:
|
|
|
|
mget:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
fields: [_routing]
|
|
|
|
body:
|
|
|
|
docs:
|
|
|
|
- { _id: 1 }
|
|
|
|
- { _id: 1, routing: 4 }
|
|
|
|
- { _id: 1, routing: 5 }
|
|
|
|
|
2014-01-02 15:31:49 -05:00
|
|
|
- is_false: docs.0.found
|
|
|
|
- is_false: docs.1.found
|
2013-07-01 10:03:37 -04:00
|
|
|
|
2014-01-02 15:31:49 -05:00
|
|
|
- is_true: docs.2.found
|
2013-07-01 10:03:37 -04:00
|
|
|
- match: { docs.2._index: test_1 }
|
|
|
|
- match: { docs.2._type: test }
|
2013-07-11 08:04:16 -04:00
|
|
|
- match: { docs.2._id: "1" }
|
|
|
|
- match: { docs.2.fields._routing: "5" }
|