Home
last modified time | relevance | path

Searched refs:shard (Results 1 – 12 of 12) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Testing/
H A DTestExecution.php112 public function setShard(Shard $shard) argument
114 $this->shard = $shard;
121 return $this->shard;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/Health/
H A DIndex.php116 foreach ($this->_data['shards'] as $shardNumber => $shard) {
117 $shards[] = new Shard($shardNumber, $shard);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc107 $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the bulk 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)
163 $params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random)
171 $params['terminate_after'] = (number) The maximum count for each shard, upon reaching which the query execution will terminate early
188 $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the index 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 (numbe
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCcrNamespace.asciidoc57 $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before returning. Defaults to 0. 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) (Default = 0)
H A DAsyncSearchNamespace.asciidoc80 $params['batched_reduce_size'] = (number) The number of shard results that should be reduced at once on the coordinating node. This value should be used as the granularity at which progress results will be made available. (Default = 5)
95 $params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random)
104 $params['terminate_after'] = (number) The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early.
H A DClusterNamespace.asciidoc46 $params['include_disk_info'] = (boolean) Return information about disk usage and shard sizes (default: false)
47 $params['body'] = (array) The index, shard, and primary flag to explain. Empty means 'explain the first unassigned shard'
H A DSearchableSnapshotsNamespace.asciidoc86 $params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices)
H A DCatNamespace.asciidoc381 $params['active_only'] = (boolean) If `true`, the response only includes ongoing shard recoveries (Default = false)
383 $params['detailed'] = (boolean) If `true`, the response includes detailed information about shard recoveries (Default = false)
H A DIndicesNamespace.asciidoc733 $params['detailed'] = (boolean) Whether to display detailed information about shard recovery (Default = false)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dcrud.asciidoc144 immediately retrieve the document from any shard. Get operations are performed
H A Dsearch-operations.asciidoc260 'size' => 50, // how many results *per shard* you want back
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md435 * [Index Recovery](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-recovery.html) : the indices recovery API provides insight into on-going index shard recoveries. It was never been implemented into Elastica. [#1537](https://github.com/ruflin/Elastica/pull/1537)
1426 - Setting shard timeout doesn't work [#547](https://github.com/ruflin/Elastica/issues/547/)
1457 - Add support for shard timeout to the Bulk api.