mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
This new API allows to get the mapping for a specific set of fields rather than get the whole index mapping and traverse it. The fields to be retrieved can be specified by their full path, index name and field name and will be resolved in this order. In case multiple field match, the first one will be returned. Since we are now generating the output (rather then fall back to the stored mapping), you can specify `include_defaults`=true on the request to have default values returned. Closes #3941
107 lines
1.9 KiB
Plaintext
107 lines
1.9 KiB
Plaintext
[[indices]]
|
|
= Indices APIs
|
|
|
|
[partintro]
|
|
--
|
|
The indices APIs are used to manage individual indices,
|
|
index settings, aliases, mappings, index templates
|
|
and warmers.
|
|
|
|
[float]
|
|
[[index-management]]
|
|
== Index management:
|
|
|
|
* <<indices-create-index>>
|
|
* <<indices-delete-index>>
|
|
* <<indices-exists>>
|
|
* <<indices-open-close>>
|
|
|
|
[float]
|
|
[[mapping-management]]
|
|
== Mapping management:
|
|
|
|
* <<indices-put-mapping>>
|
|
* <<indices-get-mapping>>
|
|
* <<indices-get-field-mapping>>
|
|
* <<indices-delete-mapping>>
|
|
* <<indices-types-exists>>
|
|
|
|
[float]
|
|
[[alias-management]]
|
|
== Alias management:
|
|
* <<indices-aliases>>
|
|
|
|
[float]
|
|
[[index-settings]]
|
|
== Index settings:
|
|
* <<indices-update-settings>>
|
|
* <<indices-get-settings>>
|
|
* <<indices-analyze>>
|
|
* <<indices-templates>>
|
|
* <<indices-warmers>>
|
|
|
|
[float]
|
|
[[monitoring]]
|
|
== Monitoring:
|
|
* <<indices-status>>
|
|
* <<indices-stats>>
|
|
* <<indices-segments>>
|
|
|
|
[float]
|
|
[[status-management]]
|
|
== Status management:
|
|
* <<indices-clearcache>>
|
|
* <<indices-refresh>>
|
|
* <<indices-flush>>
|
|
* <<indices-optimize>>
|
|
* <<indices-gateway-snapshot>>
|
|
|
|
--
|
|
|
|
include::indices/create-index.asciidoc[]
|
|
|
|
include::indices/delete-index.asciidoc[]
|
|
|
|
include::indices/indices-exists.asciidoc[]
|
|
|
|
include::indices/open-close.asciidoc[]
|
|
|
|
include::indices/put-mapping.asciidoc[]
|
|
|
|
include::indices/get-mapping.asciidoc[]
|
|
|
|
include::indices/get-field-mapping.asciidoc[]
|
|
|
|
include::indices/types-exists.asciidoc[]
|
|
|
|
include::indices/delete-mapping.asciidoc[]
|
|
|
|
include::indices/aliases.asciidoc[]
|
|
|
|
include::indices/update-settings.asciidoc[]
|
|
|
|
include::indices/get-settings.asciidoc[]
|
|
|
|
include::indices/analyze.asciidoc[]
|
|
|
|
include::indices/templates.asciidoc[]
|
|
|
|
include::indices/warmers.asciidoc[]
|
|
|
|
include::indices/status.asciidoc[]
|
|
|
|
include::indices/stats.asciidoc[]
|
|
|
|
include::indices/segments.asciidoc[]
|
|
|
|
include::indices/clearcache.asciidoc[]
|
|
|
|
include::indices/flush.asciidoc[]
|
|
|
|
include::indices/refresh.asciidoc[]
|
|
|
|
include::indices/optimize.asciidoc[]
|
|
|
|
include::indices/gateway-snapshot.asciidoc[]
|
|
|