2013-08-28 19:24:34 -04:00
|
|
|
[[indices-get-mapping]]
|
|
|
|
== Get Mapping
|
|
|
|
|
2014-03-07 08:21:45 -05:00
|
|
|
The get mapping API allows to retrieve mapping definitions for an index or
|
2013-08-28 19:24:34 -04:00
|
|
|
index/type.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2014-05-06 11:21:09 -04:00
|
|
|
curl -XGET 'http://localhost:9200/twitter/_mapping/tweet'
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
[float]
|
|
|
|
=== Multiple Indices and Types
|
|
|
|
|
|
|
|
The get mapping API can be used to get more than one index or type
|
|
|
|
mapping with a single call. General usage of the API follows the
|
2014-08-21 13:56:11 -04:00
|
|
|
following syntax: `host:port/{index}/_mapping/{type}` where both
|
2014-03-07 08:21:45 -05:00
|
|
|
`{index}` and `{type}` can accept a comma-separated list of names. To
|
2013-08-28 19:24:34 -04:00
|
|
|
get mappings for all indices you can use `_all` for `{index}`. The
|
|
|
|
following are some examples:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2014-05-06 11:21:09 -04:00
|
|
|
curl -XGET 'http://localhost:9200/_mapping/twitter,kimchy'
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2014-05-06 11:21:09 -04:00
|
|
|
curl -XGET 'http://localhost:9200/_all/_mapping/tweet,book'
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
If you want to get mappings of all indices and types then the following
|
|
|
|
two examples are equivalent:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2013-10-14 02:53:07 -04:00
|
|
|
curl -XGET 'http://localhost:9200/_all/_mapping'
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2013-10-14 02:53:07 -04:00
|
|
|
curl -XGET 'http://localhost:9200/_mapping'
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|