reindexedit

client.reindex([params, [callback]])

Check the API Conventions and the elasticsearch docs for more information pertaining to this method.

Params

refresh

Boolean — Should the effected indexes be refreshed?

[timeout=1m]

DurationString — Time each individual bulk request should wait for shards that are unavailable.

waitForActiveShards

String — 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)

[waitForCompletion=true]

Boolean — Should the request should block until the reindex is complete.

requestsPerSecond

Number — The throttle to set on this request in sub-requests per second. -1 means no throttle.

[scroll=5m]

DurationString — Control how long to keep the search context alive

[slices=1]

Number — The number of slices this task should be divided into. Defaults to 1 meaning the task isn’t sliced into subtasks.

body

Object, JSON — The request body, as either JSON or a JSON serializable object. See the elasticsearch docs for details about what can be specified here.

back to top