Files
opensearch-pyd/elasticsearch/client/rollup.py
T

134 lines
4.5 KiB
Python
Raw Normal View History

from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
2019-03-29 09:25:23 -06:00
class RollupClient(NamespacedClient):
@query_params()
2020-03-11 16:33:15 -05:00
def delete_job(self, id, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
:arg id: The ID of the job to delete
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"DELETE", _make_path("_rollup", "job", id), params=params, headers=headers
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def get_jobs(self, id=None, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2019-12-17 22:31:35 +01:00
:arg id: The ID of the job(s) to fetch. Accepts glob patterns,
or left blank for all jobs
2019-03-29 09:25:23 -06:00
"""
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"GET", _make_path("_rollup", "job", id), params=params, headers=headers
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def get_rollup_caps(self, id=None, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2019-12-17 22:31:35 +01:00
:arg id: The ID of the index to check rollup capabilities on, or
left blank for all jobs
2019-03-29 09:25:23 -06:00
"""
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"GET", _make_path("_rollup", "data", id), params=params, headers=headers
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def get_rollup_index_caps(self, index, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
:arg index: The rollup index or index pattern to obtain rollup
capabilities from.
"""
if index in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'index'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"GET", _make_path(index, "_rollup", "data"), params=params, headers=headers
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def put_job(self, id, body, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
:arg id: The ID of the job to create
:arg body: The job configuration
"""
for param in (id, body):
if param in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"PUT",
_make_path("_rollup", "job", id),
params=params,
headers=headers,
body=body,
2019-03-29 09:25:23 -06:00
)
@query_params("rest_total_hits_as_int", "typed_keys")
2020-03-11 16:33:15 -05:00
def rollup_search(self, index, body, doc_type=None, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2019-12-17 22:31:35 +01:00
:arg index: The indices or index-pattern(s) (containing rollup
or regular data) that should be searched
2019-03-29 09:25:23 -06:00
:arg body: The search request body
:arg doc_type: The doc type inside the index
2019-12-17 22:31:35 +01:00
:arg rest_total_hits_as_int: Indicates whether hits.total should
be rendered as an integer or an object in the rest search response
:arg typed_keys: Specify whether aggregation and suggester names
should be prefixed by their respective types in the response
2019-03-29 09:25:23 -06:00
"""
for param in (index, body):
if param in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-13 13:44:46 -05:00
"POST",
2019-03-29 09:25:23 -06:00
_make_path(index, doc_type, "_rollup_search"),
params=params,
2020-03-11 16:33:15 -05:00
headers=headers,
2019-03-29 09:25:23 -06:00
body=body,
)
@query_params()
2020-03-11 16:33:15 -05:00
def start_job(self, id, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
:arg id: The ID of the job to start
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"POST",
_make_path("_rollup", "job", id, "_start"),
params=params,
headers=headers,
2019-03-29 09:25:23 -06:00
)
@query_params("timeout", "wait_for_completion")
2020-03-11 16:33:15 -05:00
def stop_job(self, id, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
:arg id: The ID of the job to stop
2019-12-17 22:31:35 +01:00
:arg timeout: Block for (at maximum) the specified duration
while waiting for the job to stop. Defaults to 30s.
:arg wait_for_completion: True if the API should block until the
job has fully stopped, false if should be executed async. Defaults to
false.
2019-03-29 09:25:23 -06:00
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"POST",
_make_path("_rollup", "job", id, "_stop"),
params=params,
headers=headers,
2019-03-29 09:25:23 -06:00
)