Lines Matching refs:delete

315      * Allows to perform multiple index/update/delete operations in a single request.
474 * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the delete 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)
478 * $params['if_seq_no'] = (number) only perform the delete operation if the last operation that has changed the document has the specified sequence number
479 * $params['if_primary_term'] = (number) only perform the delete operation if the last operation that has changed the document has the specified primary term
485 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-delete.html
487 public function delete(array $params = [])
514 * $params['conflicts'] = (enum) What to do when the delete by query hits version conflicts? (Options = abort,proceed) (Default = abort)
535 * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the delete 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)
536 * $params['scroll_size'] = (number) Size on the scroll request powering the delete by query (Default = 100)
537 * $params['wait_for_completion'] = (boolean) Should the request should block until the delete by query is complete. (Default = true)
544 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-delete-by-query.html
569 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html