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
** *`dest` ({ index, op_type, pipeline, routing, version_type })*: The destination you are copying to.
716
+
** *`source` ({ index, query, remote, size, slice, sort, _source, runtime_mappings })*: The source you are copying from.
717
+
** *`conflicts` (Optional, Enum("abort" | "proceed"))*: Set to proceed to continue reindexing even if there are conflicts.
718
+
** *`max_docs` (Optional, number)*: The maximum number of documents to reindex.
719
+
** *`script` (Optional, { lang, options, source } | { id })*: The script to run to update the document source or metadata when reindexing.
720
720
** *`size` (Optional, number)*
721
-
** *`refresh` (Optional, boolean)*: Should the affected indexes be refreshed?
722
-
** *`requests_per_second` (Optional, float)*: The throttle to set on this request in sub-requests per second. -1 means no throttle.
723
-
** *`scroll` (Optional, string | -1 | 0)*: Control how long to keep the search context alive
724
-
** *`slices` (Optional, number | Enum("auto"))*: The number of slices this task should be divided into. Defaults to 1, meaning the task isn't sliced into subtasks. Can be set to `auto`.
725
-
** *`timeout` (Optional, string | -1 | 0)*: Time each individual bulk request should wait for shards that are unavailable.
726
-
** *`wait_for_active_shards` (Optional, number | Enum("all" | "index-setting"))*: Sets the number of shard copies that must be active before proceeding with the reindex operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)
727
-
** *`wait_for_completion` (Optional, boolean)*: Should the request should block until the reindex is complete.
728
-
** *`require_alias` (Optional, boolean)*
721
+
** *`refresh` (Optional, boolean)*: If `true`, the request refreshes affected shards to make this operation visible to search.
722
+
** *`requests_per_second` (Optional, float)*: The throttle for this request in sub-requests per second.
723
+
Defaults to no throttle.
724
+
** *`scroll` (Optional, string | -1 | 0)*: Specifies how long a consistent view of the index should be maintained for scrolled search.
725
+
** *`slices` (Optional, number | Enum("auto"))*: The number of slices this task should be divided into.
726
+
Defaults to 1 slice, meaning the task isn’t sliced into subtasks.
727
+
** *`timeout` (Optional, string | -1 | 0)*: Period each indexing waits for automatic index creation, dynamic mapping updates, and waiting for active shards.
728
+
** *`wait_for_active_shards` (Optional, number | Enum("all" | "index-setting"))*: The number of shard copies that must be active before proceeding with the operation.
729
+
Set to `all` or any positive integer up to the total number of shards in the index (`number_of_replicas+1`).
730
+
** *`wait_for_completion` (Optional, boolean)*: If `true`, the request blocks until the operation is complete.
731
+
** *`require_alias` (Optional, boolean)*: If `true`, the destination must be an index alias.
0 commit comments