
Elasticsearch Scroll
CertifiedScroll and store search results
Elasticsearch Scroll
Scroll and store search results
Executes a search with a 60s scroll context and streams all hits to a Kestra internal storage file. Uses the provided request body, with optional indices and routing.
type: io.kestra.plugin.elasticsearch.ScrollExamples
id: elasticsearch_scroll
namespace: company.team
tasks:
- id: scroll
type: io.kestra.plugin.elasticsearch.Scroll
connection:
hosts:
- "http://localhost:9200"
indexes:
- "my_index"
request:
query:
term:
name:
value: 'john'
Properties
connection *RequiredNon-dynamic
Elasticsearch connection
Connection settings shared by tasks; hosts are required.
request *Requiredobject
Search request body
Elasticsearch search body as Map or JSON string; rendered before execution. Required.
indexes array
Target indices
List of Elasticsearch indices to query; empty means all indices.
routing string
Custom shard routing
Optional routing key hashed to pick the shard instead of using the document id.
Outputs
size integer
Fetched hit count
Total number of hits written to storage.
uri string
uriStored hits URI
Kestra internal storage path to the ION file containing all hits.
Metrics
records counter
recordsNumber of records returned
requests.count counter
Number of scroll requests sent
requests.duration timer
Duration of scroll requests