Home
last modified time | relevance | path

Searched refs:indices (Results 51 – 75 of 95) sorted by path

1234

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D6bf63f2ec6ba55fcaf1092f48212bf25.asciidoc1 // indices/put-mapping.asciidoc:519
17 $response = $client->indices()->create($params);
H A D71ba9033107882f61cdc3b32fc73568d.asciidoc16 $response = $client->indices()->putMapping($params);
H A D734c2e2a1e45b84f1e4e65b51356fcd7.asciidoc1 // indices/put-mapping.asciidoc:446
17 $response = $client->indices()->create($params);
H A D9166cf38427d5cde5d2ec12a2012b669.asciidoc1 // indices/templates.asciidoc:223
18 $response = $client->indices()->putTemplate($params);
H A D98f14fddddea54a7d6149ab7b92e099d.asciidoc1 // indices/delete-index.asciidoc:10
8 $response = $client->indices()->delete($params);
H A D99a52be903945b17e734a1d02a57e958.asciidoc9 $response = $client->indices()->getFieldMapping($params);
H A Dafc29b61c532cf683f749baf013e7bfe.asciidoc1 // indices/put-mapping.asciidoc:536
16 $response = $client->indices()->putMapping($params);
H A Db5f95bc097a201b29c7200fc8d3d31c1.asciidoc1 // indices/templates.asciidoc:172
22 $response = $client->indices()->putTemplate($params);
40 $response = $client->indices()->putTemplate($params);
H A Db9c5d7ca6ca9c6f747201f45337a4abf.asciidoc1 // indices/create-index.asciidoc:99
14 $response = $client->indices()->create($params);
H A Dbd5918ab903c0889bb1f09c8c2466e43.asciidoc1 // indices/put-mapping.asciidoc:409
17 $response = $client->indices()->create($params);
H A Dc849c6c8f8659dbb93e1c14356f74e37.asciidoc1 // indices/put-mapping.asciidoc:234
17 $response = $client->indices()->create($params);
H A Dd8b2a88b5eca99d3691ad3cd40266736.asciidoc23 $response = $client->indices()->create($params);
H A Dd9474f66970c6955e24b17c7447e7b5f.asciidoc1 // indices/put-mapping.asciidoc:144
21 $response = $client->indices()->create($params);
H A Ddfef545b1e2c247bafd1347e8e807ac1.asciidoc1 // indices/create-index.asciidoc:123
20 $response = $client->indices()->create($params);
H A De4be53736bcc02b03068fd72fdbfe271.asciidoc1 // indices/put-mapping.asciidoc:92
15 $response = $client->indices()->putMapping($params);
H A De5d2172b524332196cac0f031c043659.asciidoc1 // indices/create-index.asciidoc:81
16 $response = $client->indices()->create($params);
H A De5f50b31f165462d883ecbff45f74985.asciidoc1 // indices/templates.asciidoc:10
31 $response = $client->indices()->putTemplate($params);
H A Dfabe14480624a99e8ee42c7338672058.asciidoc1 // indices/create-index.asciidoc:203
8 $response = $client->indices()->create($params);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dfutures.asciidoc269 example, "exists" APIs (`$client->exists()`, `$client->indices()->exists`,
270 `$client->indices->templateExists()`, and so on) typically return a true or
H A Dindex-operations.asciidoc4 Index management operations allow you to manage the indices in your {es}
5 cluster, such as creating, deleting and updating indices and their
23 $response = $client->indices()->create($params);
59 $response = $client->indices()->create($params);
132 $client->indices()->create($params);
149 $response = $client->indices()->delete($params);
170 $response = $client->indices()->putSettings($params);
178 indices:
184 $response = $client->indices()->getSettings($params);
186 // Get settings for several indices
[all...]
H A Dnamespaces.asciidoc12 | `indices()` | Index-centric stats and info
15 | `snapshot()` | Methods to snapshot/restore your cluster and indices
30 $response = $client->indices()->stats();
47 indices:
55 $response = $client->indices()->stats($params);
59 $response = $client->indices()->stats($params);
77 $client->indices()->updateAliases($params);
H A Drelease-notes.asciidoc311 * added `wait_for_active_shards` parameter to `indices.close` API;
314 parameters to `indices.stats` API.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php162 protected $indices; variable in Elasticsearch\\Client
289 $this->indices = new IndicesNamespace($transport, $endpoint);
395 * $params['index'] = (list) A comma-separated list of indices to restrict the results
397 * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed)
398 * $params['ignore_throttled'] = (boolean) Whether specified concrete, expanded or aliased indices should be ignored when throttled
399 * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
400 * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open)
505 * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices (Require
1758 public function indices(): IndicesNamespace global() function in Elasticsearch\\Client
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DCatNamespace.php31 * Shows information about currently configured aliases to indices including filter and routing infos.
40 * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all)
86 * Provides quick access to the document count of the entire cluster, or individual indices.
180 * Returns information about indices: number of primaries and replicas, document counts, disk size, ...
188 * $params['health'] = (enum) A health status ("green", "yellow", or "red" to filter only indices matching the specified health status (Options = green,yellow,red)
195 * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all)
199 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-indices.html
201 public function indices(array $params = []) function in Elasticsearch\\Namespaces\\CatNamespace
/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)
517 - removed analyzed/not_analyzed on [indices mapping](https://www.elastic.co/guide/en/elasticsearch/reference/6.0/mapping-index.html)
521 - Removed ```optimize``` from Index class as it has been deprecated in ES 2.1 and removed in [ES 5.x+](https://www.elastic.co/guide/en/elasticsearch/reference/2.4/indices-optimize.html) use forcemerge [#1351](https://github.com/ruflin/Elastica/pull/1350)
529 - Disable [_all](https://github.com/elastic/elasticsearch/pull/22144) by default, disallow configuring _all on 6.0+ indices [#1365](https://github.com/ruflin/Elastica/pull/1365)
537 - [Analyze Explain](https://www.elastic.co/guide/en/elasticsearch/reference/6.0/_explain_analyze.html) no more support [request parameters](https://www.elastic.co/guide/en/elasticsearch/reference/5.5/indices-analyze.html), use request body instead. [#1370](https://github.com/ruflin/Elastica/pull/1370)
586 - Add support for querystring in Type. this allow to use `update_all_types` in type mapping in order to resolve conflicts between fields in different types. [Conflicts between fields in different types](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html#merging-conflicts)
588 - Added `\Elastica\Reindex` for reindexing between indices [#1311](https://github.com/ruflin/Elastica/issues/1311)
743 $indices = $cluster->getHealth()->getIndices();
744 $indices[
[all...]

1234