OpenSearch/rest-api-spec/test/scroll/10_basic.yaml

32 lines
534 B
YAML
Raw Normal View History

2013-07-16 10:43:47 -04:00
---
"Basic scroll":
- do:
indices.create:
index: test_scroll
- do:
index:
index: test_scroll
type: test
id: 42
body: { foo: bar }
- do:
indices.refresh: {}
- do:
search:
search_type: scan
scroll: 1m
body:
query:
match_all: {}
- set: {_scroll_id: scroll_id}
- do:
scroll:
scroll_id: $scroll_id
- match: {hits.total: 1 }
- match: {hits.hits.0._id: "42" }