You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
** *`size` (Optional, number)*: Must be zero if set, as rollups work on pre-aggregated data.
7035
7038
** *`rest_total_hits_as_int` (Optional, boolean)*: Indicates whether hits.total should be rendered as an integer or an object in the rest search response
7036
7039
** *`typed_keys` (Optional, boolean)*: Specify whether aggregation and suggester names should be prefixed by their respective types in the response
7037
7040
@@ -7049,7 +7052,7 @@ client.rollup.startJob({ id })
7049
7052
==== Arguments
7050
7053
7051
7054
* *Request (object):*
7052
-
** *`id` (string)*: The ID of the job to start
7055
+
** *`id` (string)*: Identifier for the rollup job.
7053
7056
7054
7057
[discrete]
7055
7058
==== stop_job
@@ -7065,9 +7068,11 @@ client.rollup.stopJob({ id })
7065
7068
==== Arguments
7066
7069
7067
7070
* *Request (object):*
7068
-
** *`id` (string)*: The ID of the job to stop
7069
-
** *`timeout` (Optional, string | -1 | 0)*: Block for (at maximum) the specified duration while waiting for the job to stop. Defaults to 30s.
7070
-
** *`wait_for_completion` (Optional, boolean)*: True if the API should block until the job has fully stopped, false if should be executed async. Defaults to false.
7071
+
** *`id` (string)*: Identifier for the rollup job.
7072
+
** *`timeout` (Optional, string | -1 | 0)*: If `wait_for_completion` is `true`, the API blocks for (at maximum) the specified duration while waiting for the job to stop.
7073
+
If more than `timeout` time has passed, the API throws a timeout exception.
7074
+
** *`wait_for_completion` (Optional, boolean)*: If set to `true`, causes the API to block until the indexer state completely stops.
7075
+
If set to `false`, the API returns immediately and the indexer is stopped asynchronously in the background.
0 commit comments