本地英文版地址: ../en/rollup-get-job.html
Get rollup jobs APIedit
Retrieves the configuration, stats, and status of rollup jobs.
This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
Requestedit
GET _rollup/job/<job_id>
Prerequisitesedit
-
If the Elasticsearch security features are enabled, you must have
monitor
,monitor_rollup
,manage
ormanage_rollup
cluster privileges to use this API. For more information, see Security privileges.
Descriptionedit
The API can return the details for a single rollup job or for all rollup jobs.
This API returns only active (both STARTED
and STOPPED
) jobs. If a job
was created, ran for a while then deleted, this API does not return any details
about that job.
For details about a historical rollup job, the rollup capabilities API may be more useful.
Path parametersedit
-
<job_id>
-
(Optional, string) Identifier for the rollup job. If it is
_all
or omitted, the API returns all rollup jobs.
Response bodyedit
-
jobs
-
(array) An array of rollup job resources.
-
config
- (object) Contains the configuration for the rollup job. This information is identical to the configuration that was supplied when creating the job via the create job API.
-
status
-
(object) Contains the current status of the indexer for the rollup job. The possible values and their meanings are:
-
stopped
means the indexer is paused and will not process data, even if its cron interval triggers. -
started
means the indexer is running, but not actively indexing data. When the cron interval triggers, the job’s indexer will begin to process data. -
indexing
means the indexer is actively processing data and creating new rollup documents. When in this state, any subsequent cron interval triggers will be ignored because the job is already active with the prior trigger. -
abort
is a transient state, which is usually not witnessed by the user. It is used if the task needs to be shut down for some reason (job has been deleted, an unrecoverable error has been encountered, etc). Shortly after theabort
state is set, the job will remove itself from the cluster.
-
-
stats
- (object) Contains transient statistics about the rollup job, such as how many documents have been processed and how many rollup summary docs have been indexed. These stats are not persisted. If a node is restarted, these stats will be reset.
-
Examplesedit
If we have already created a rollup job named sensor
, the details about the
job can be retrieved with:
GET _rollup/job/sensor
The API yields the following response:
{ "jobs" : [ { "config" : { "id" : "sensor", "index_pattern" : "sensor-*", "rollup_index" : "sensor_rollup", "cron" : "*/30 * * * * ?", "groups" : { "date_histogram" : { "fixed_interval" : "1h", "delay": "7d", "field": "timestamp", "time_zone": "UTC" }, "terms" : { "fields" : [ "node" ] } }, "metrics" : [ { "field" : "temperature", "metrics" : [ "min", "max", "sum" ] }, { "field" : "voltage", "metrics" : [ "avg" ] } ], "timeout" : "20s", "page_size" : 1000 }, "status" : { "job_state" : "stopped", "upgraded_doc_id": true }, "stats" : { "pages_processed" : 0, "documents_processed" : 0, "rollups_indexed" : 0, "trigger_count" : 0, "index_failures": 0, "index_time_in_ms": 0, "index_total": 0, "search_failures": 0, "search_time_in_ms": 0, "search_total": 0, "processing_time_in_ms": 0, "processing_total": 0 } } ] }
The jobs
array contains a single job (id: sensor
) since we requested a single job in the endpoint’s URL.
If we add another job, we can see how multi-job responses are handled:
PUT _rollup/job/sensor2 { "index_pattern": "sensor-*", "rollup_index": "sensor_rollup", "cron": "*/30 * * * * ?", "page_size" :1000, "groups" : { "date_histogram": { "field": "timestamp", "fixed_interval": "1h", "delay": "7d" }, "terms": { "fields": ["node"] } }, "metrics": [ { "field": "temperature", "metrics": ["min", "max", "sum"] }, { "field": "voltage", "metrics": ["avg"] } ] } GET _rollup/job/_all
Which will yield the following response:
{ "jobs" : [ { "config" : { "id" : "sensor2", "index_pattern" : "sensor-*", "rollup_index" : "sensor_rollup", "cron" : "*/30 * * * * ?", "groups" : { "date_histogram" : { "fixed_interval" : "1h", "delay": "7d", "field": "timestamp", "time_zone": "UTC" }, "terms" : { "fields" : [ "node" ] } }, "metrics" : [ { "field" : "temperature", "metrics" : [ "min", "max", "sum" ] }, { "field" : "voltage", "metrics" : [ "avg" ] } ], "timeout" : "20s", "page_size" : 1000 }, "status" : { "job_state" : "stopped", "upgraded_doc_id": true }, "stats" : { "pages_processed" : 0, "documents_processed" : 0, "rollups_indexed" : 0, "trigger_count" : 0, "index_failures": 0, "index_time_in_ms": 0, "index_total": 0, "search_failures": 0, "search_time_in_ms": 0, "search_total": 0, "processing_time_in_ms": 0, "processing_total": 0 } }, { "config" : { "id" : "sensor", "index_pattern" : "sensor-*", "rollup_index" : "sensor_rollup", "cron" : "*/30 * * * * ?", "groups" : { "date_histogram" : { "fixed_interval" : "1h", "delay": "7d", "field": "timestamp", "time_zone": "UTC" }, "terms" : { "fields" : [ "node" ] } }, "metrics" : [ { "field" : "temperature", "metrics" : [ "min", "max", "sum" ] }, { "field" : "voltage", "metrics" : [ "avg" ] } ], "timeout" : "20s", "page_size" : 1000 }, "status" : { "job_state" : "stopped", "upgraded_doc_id": true }, "stats" : { "pages_processed" : 0, "documents_processed" : 0, "rollups_indexed" : 0, "trigger_count" : 0, "index_failures": 0, "index_time_in_ms": 0, "index_total": 0, "search_failures": 0, "search_time_in_ms": 0, "search_total": 0, "processing_time_in_ms": 0, "processing_total": 0 } } ] }