mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 05:58:44 +00:00
905237a56f
Original commit: elastic/x-pack-elasticsearch@2018bb5f9f
28 lines
450 B
YAML
28 lines
450 B
YAML
---
|
|
"Tribe node search":
|
|
|
|
- do:
|
|
index:
|
|
index: index1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
|
|
- do:
|
|
index:
|
|
index: index2
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
|
|
- do:
|
|
indices.refresh: {}
|
|
|
|
- do:
|
|
search:
|
|
index: index1,index2
|
|
body:
|
|
query: { term: { foo: bar }}
|
|
|
|
- match: { hits.total: 2 }
|