Lines Matching defs:update

315      * Allows to perform multiple index/update/delete operations in a single request.
1547 * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the update 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)
1556 * $params['if_seq_no'] = (number) only perform the update operation if the last operation that has changed the document has the specified sequence number
1557 * $params['if_primary_term'] = (number) only perform the update operation if the last operation that has changed the document has the specified primary term
1563 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-update.html
1565 public function update(array $params = [])
1583 * Performs an update on every document in the index without changing the source,for example to pick up a mapping change.
1594 * $params['conflicts'] = (enum) What to do when the update by query hits version conflicts? (Options = abort,proceed) (Default = abort)
1617 * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the update by query 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)
1618 * $params['scroll_size'] = (number) Size on the scroll request powering the update by query (Default = 100)
1619 * $params['wait_for_completion'] = (boolean) Should the request should block until the update by query operation is complete. (Default = true)
1626 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-update-by-query.html
1651 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update-by-query.html