- Elasticsearch Guide: other versions:
- Getting Started
- Setup
- Breaking changes
- Breaking changes in 2.1
- Breaking changes in 2.0
- Removed features
- Network changes
- Multiple
path.data
striping - Mapping changes
- CRUD and routing changes
- Query DSL changes
- Search changes
- Aggregation changes
- Parent/Child changes
- Scripting changes
- Index API changes
- Snapshot and Restore changes
- Plugin and packaging changes
- Setting changes
- Stats, info, and
cat
changes - Java API changes
- API Conventions
- Document APIs
- Search APIs
- Aggregations
- Metrics Aggregations
- Avg Aggregation
- Cardinality Aggregation
- Extended Stats Aggregation
- Geo Bounds Aggregation
- Geo Centroid Aggregation
- Max Aggregation
- Min Aggregation
- Percentiles Aggregation
- Percentile Ranks Aggregation
- Scripted Metric Aggregation
- Stats Aggregation
- Sum Aggregation
- Top hits Aggregation
- Value Count Aggregation
- Bucket Aggregations
- Children Aggregation
- Date Histogram Aggregation
- Date Range Aggregation
- Filter Aggregation
- Filters Aggregation
- Geo Distance Aggregation
- GeoHash grid Aggregation
- Global Aggregation
- Histogram Aggregation
- IPv4 Range Aggregation
- Missing Aggregation
- Nested Aggregation
- Range Aggregation
- Reverse nested Aggregation
- Sampler Aggregation
- Significant Terms Aggregation
- Terms Aggregation
- Pipeline Aggregations
- Avg Bucket Aggregation
- Derivative Aggregation
- Max Bucket Aggregation
- Min Bucket Aggregation
- Sum Bucket Aggregation
- Stats Bucket Aggregation
- Extended Stats Bucket Aggregation
- Percentiles Bucket Aggregation
- Moving Average Aggregation
- Cumulative Sum Aggregation
- Bucket Script Aggregation
- Bucket Selector Aggregation
- Serial Differencing Aggregation
- Caching heavy aggregations
- Returning only aggregation results
- Aggregation Metadata
- Metrics Aggregations
- Indices APIs
- Create Index
- Delete Index
- Get Index
- Indices Exists
- Open / Close Index API
- Put Mapping
- Get Mapping
- Get Field Mapping
- Types Exists
- Index Aliases
- Update Indices Settings
- Get Settings
- Analyze
- Index Templates
- Warmers
- Shadow replica indices
- Indices Stats
- Indices Segments
- Indices Recovery
- Indices Shard Stores
- Clear Cache
- Flush
- Refresh
- Force Merge
- Optimize
- Upgrade
- cat APIs
- Cluster APIs
- Query DSL
- Mapping
- Field datatypes
- Meta-Fields
- Mapping parameters
analyzer
boost
coerce
copy_to
doc_values
dynamic
enabled
fielddata
format
geohash
geohash_precision
geohash_prefix
ignore_above
ignore_malformed
include_in_all
index
index_options
lat_lon
fields
norms
null_value
position_increment_gap
precision_step
properties
search_analyzer
similarity
store
term_vector
- Dynamic Mapping
- Transform
- Analysis
- Analyzers
- Tokenizers
- Token Filters
- Standard Token Filter
- ASCII Folding Token Filter
- Length Token Filter
- Lowercase Token Filter
- Uppercase Token Filter
- NGram Token Filter
- Edge NGram Token Filter
- Porter Stem Token Filter
- Shingle Token Filter
- Stop Token Filter
- Word Delimiter Token Filter
- Stemmer Token Filter
- Stemmer Override Token Filter
- Keyword Marker Token Filter
- Keyword Repeat Token Filter
- KStem Token Filter
- Snowball Token Filter
- Phonetic Token Filter
- Synonym Token Filter
- Compound Word Token Filter
- Reverse Token Filter
- Elision Token Filter
- Truncate Token Filter
- Unique Token Filter
- Pattern Capture Token Filter
- Pattern Replace Token Filter
- Trim Token Filter
- Limit Token Count Token Filter
- Hunspell Token Filter
- Common Grams Token Filter
- Normalization Token Filter
- CJK Width Token Filter
- CJK Bigram Token Filter
- Delimited Payload Token Filter
- Keep Words Token Filter
- Keep Types Token Filter
- Classic Token Filter
- Apostrophe Token Filter
- Character Filters
- ICU Analysis Plugin
- Modules
- Index Modules
- Testing
- Glossary of terms
- Release Notes
WARNING: Version 2.1 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Index Aliases
editIndex Aliases
editAPIs in elasticsearch accept an index name when working against a specific index, and several indices when applicable. The index aliases API allow to alias an index with a name, with all APIs automatically converting the alias name to the actual index name. An alias can also be mapped to more than one index, and when specifying it, the alias will automatically expand to the aliases indices. An alias can also be associated with a filter that will automatically be applied when searching, and routing values. An alias cannot have the same name as an index.
Here is a sample of associating the alias alias1
with index test1
:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "add" : { "index" : "test1", "alias" : "alias1" } } ] }'
An alias can also be removed, for example:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "remove" : { "index" : "test1", "alias" : "alias1" } } ] }'
Renaming an alias is a simple remove
then add
operation within the
same API. This operation is atomic, no need to worry about a short
period of time where the alias does not point to an index:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "remove" : { "index" : "test1", "alias" : "alias1" } }, { "add" : { "index" : "test1", "alias" : "alias2" } } ] }'
Associating an alias with more than one index are simply several add
actions:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "add" : { "index" : "test1", "alias" : "alias1" } }, { "add" : { "index" : "test2", "alias" : "alias1" } } ] }'
Alternatively, you can use a glob pattern to associate an alias to more than one index that share a common name:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "add" : { "index" : "test*", "alias" : "all_test_indices" } } ] }'
In this case, the alias is a point-in-time alias that will group all current indices that match, it will not automatically update as new indices that match this pattern are added/removed.
It is an error to index to an alias which points to more than one index.
Filtered Aliases
editAliases with filters provide an easy way to create different "views" of the same index. The filter can be defined using Query DSL and is applied to all Search, Count, Delete By Query and More Like This operations with this alias.
To create a filtered alias, first we need to ensure that the fields already exist in the mapping:
curl -XPUT 'http://localhost:9200/test1' -d '{ "mappings": { "type1": { "properties": { "user" : { "type": "string", "index": "not_analyzed" } } } } }
Now we can create an alias that uses a filter on field user
:
curl -XPOST 'http://localhost:9200/_aliases' -d '{ "actions" : [ { "add" : { "index" : "test1", "alias" : "alias2", "filter" : { "term" : { "user" : "kimchy" } } } } ] }'
Routing
editIt is possible to associate routing values with aliases. This feature can be used together with filtering aliases in order to avoid unnecessary shard operations.
The following command creates a new alias alias1
that points to index
test
. After alias1
is created, all operations with this alias are
automatically modified to use value 1
for routing:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "add" : { "index" : "test", "alias" : "alias1", "routing" : "1" } } ] }'
It’s also possible to specify different routing values for searching and indexing operations:
curl -XPOST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "add" : { "index" : "test", "alias" : "alias2", "search_routing" : "1,2", "index_routing" : "2" } } ] }'
As shown in the example above, search routing may contain several values separated by comma. Index routing can contain only a single value.
If an operation that uses routing alias also has a routing parameter, an intersection of both alias routing and routing specified in the parameter is used. For example the following command will use "2" as a routing value:
curl -XGET 'http://localhost:9200/alias2/_search?q=user:kimchy&routing=2,3'
Add a single alias
editAn alias can also be added with the endpoint
PUT /{index}/_alias/{name}
where
|
The index the alias refers to. Can be any of |
|
The name of the alias. This is a required option. |
|
An optional routing that can be associated with an alias. |
|
An optional filter that can be associated with an alias. |
You can also use the plural _aliases
.
Examples:
edit- Adding time based alias
-
curl -XPUT 'localhost:9200/logs_201305/_alias/2013'
- Adding a user alias
-
First create the index and add a mapping for the
user_id
field:curl -XPUT 'localhost:9200/users' -d '{ "mappings" : { "user" : { "properties" : { "user_id" : {"type" : "integer"} } } } }'
Then add the alias for a specific user:
curl -XPUT 'localhost:9200/users/_alias/user_12' -d '{ "routing" : "12", "filter" : { "term" : { "user_id" : 12 } } }'
Aliases during index creation
editAliases can also be specified during index creation:
curl -XPUT localhost:9200/logs_20142801 -d '{ "mappings" : { "type" : { "properties" : { "year" : {"type" : "integer"} } } }, "aliases" : { "current_day" : {}, "2014" : { "filter" : { "term" : {"year" : 2014 } } } } }'
Delete aliases
editThe rest endpoint is: /{index}/_alias/{name}
where
|
|
|
|
Alternatively you can use the plural _aliases
. Example:
curl -XDELETE 'localhost:9200/users/_alias/user_12'
Retrieving existing aliases
editThe get index alias api allows to filter by alias name and index name. This api redirects to the master and fetches the requested index aliases, if available. This api only serialises the found index aliases.
Possible options:
|
The index name to get aliases for. Partially names are supported via wildcards, also multiple index names can be specified separated with a comma. Also the alias name for an index can be used. |
|
The name of alias to return in the response. Like the index option, this option supports wildcards and the option the specify multiple alias names separated by a comma. |
|
What to do if an specified index name doesn’t
exist. If set to |
The rest endpoint is: /{index}/_alias/{alias}
.
Examples:
editAll aliases for the index users:
curl -XGET 'localhost:9200/users/_alias/*'
Response:
{ "users" : { "aliases" : { "user_13" : { "filter" : { "term" : { "user_id" : 13 } }, "index_routing" : "13", "search_routing" : "13" }, "user_14" : { "filter" : { "term" : { "user_id" : 14 } }, "index_routing" : "14", "search_routing" : "14" }, "user_12" : { "filter" : { "term" : { "user_id" : 12 } }, "index_routing" : "12", "search_routing" : "12" } } } }
All aliases with the name 2013 in any index:
curl -XGET 'localhost:9200/_alias/2013'
Response:
{ "logs_201304" : { "aliases" : { "2013" : { } } }, "logs_201305" : { "aliases" : { "2013" : { } } } }
All aliases that start with 2013_01 in any index:
curl -XGET 'localhost:9200/_alias/2013_01*'
Response:
{ "logs_20130101" : { "aliases" : { "2013_01" : { } } } }
There is also a HEAD variant of the get indices aliases api to check if index aliases exist. The indices aliases exists api supports the same option as the get indices aliases api. Examples:
curl -XHEAD -i 'localhost:9200/_alias/2013' curl -XHEAD -i 'localhost:9200/_alias/2013_01*' curl -XHEAD -i 'localhost:9200/users/_alias/*'
On this page