2013-08-28 19:24:34 -04:00
|
|
|
[[mapping-routing-field]]
|
2015-07-19 19:24:29 -04:00
|
|
|
=== `_routing` field
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-19 19:24:29 -04:00
|
|
|
A document is routed to a particular shard in an index using the following
|
|
|
|
formula:
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-19 19:24:29 -04:00
|
|
|
shard_num = hash(_routing) % num_primary_shards
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-19 19:24:29 -04:00
|
|
|
The default value used for `_routing` is the document's <<mapping-id-field,`_id`>>
|
|
|
|
or the document's <<mapping-parent-field,`_parent`>> ID, if present.
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-19 19:24:29 -04:00
|
|
|
Custom routing patterns can be implemented by specifying a custom `routing`
|
|
|
|
value per document. For instance:
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-19 19:24:29 -04:00
|
|
|
[source,js]
|
|
|
|
------------------------------
|
2016-08-23 07:32:14 -04:00
|
|
|
PUT my_index/my_type/1?routing=user1&refresh=true <1>
|
2015-07-19 19:24:29 -04:00
|
|
|
{
|
|
|
|
"title": "This is a document"
|
|
|
|
}
|
|
|
|
|
|
|
|
GET my_index/my_type/1?routing=user1 <2>
|
|
|
|
------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
// CONSOLE
|
2016-04-29 10:42:03 -04:00
|
|
|
// TESTSETUP
|
2015-07-19 19:24:29 -04:00
|
|
|
|
|
|
|
<1> This document uses `user1` as its routing value, instead of its ID.
|
2016-02-09 05:07:32 -05:00
|
|
|
<2> The same `routing` value needs to be provided when
|
2015-07-19 19:24:29 -04:00
|
|
|
<<docs-get,getting>>, <<docs-delete,deleting>>, or <<docs-update,updating>>
|
|
|
|
the document.
|
|
|
|
|
2016-08-23 07:32:14 -04:00
|
|
|
The value of the `_routing` field is accessible in queries:
|
2015-07-19 19:24:29 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------
|
|
|
|
GET my_index/_search
|
|
|
|
{
|
|
|
|
"query": {
|
|
|
|
"terms": {
|
|
|
|
"_routing": [ "user1" ] <1>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
// CONSOLE
|
2015-07-19 19:24:29 -04:00
|
|
|
|
|
|
|
<1> Querying on the `_routing` field (also see the <<query-dsl-ids-query,`ids` query>>)
|
|
|
|
|
|
|
|
==== Searching with custom routing
|
|
|
|
|
|
|
|
Custom routing can reduce the impact of searches. Instead of having to fan
|
|
|
|
out a search request to all the shards in an index, the request can be sent to
|
|
|
|
just the shard that matches the specific routing value (or values):
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
------------------------------
|
|
|
|
GET my_index/_search?routing=user1,user2 <1>
|
|
|
|
{
|
|
|
|
"query": {
|
|
|
|
"match": {
|
|
|
|
"title": "document"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
// CONSOLE
|
2015-07-19 19:24:29 -04:00
|
|
|
|
|
|
|
<1> This search request will only be executed on the shards associated with the `user1` and `user2` routing values.
|
|
|
|
|
|
|
|
|
|
|
|
==== Making a routing value required
|
|
|
|
|
|
|
|
When using custom routing, it is important to provide the routing value
|
|
|
|
whenever <<docs-index_,indexing>>, <<docs-get,getting>>,
|
|
|
|
<<docs-delete,deleting>>, or <<docs-update,updating>> a document.
|
|
|
|
|
|
|
|
Forgetting the routing value can lead to a document being indexed on more than
|
|
|
|
one shard. As a safeguard, the `_routing` field can be configured to make a
|
|
|
|
custom `routing` value required for all CRUD operations:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
------------------------------
|
2016-04-29 10:42:03 -04:00
|
|
|
PUT my_index2
|
2015-07-19 19:24:29 -04:00
|
|
|
{
|
|
|
|
"mappings": {
|
|
|
|
"my_type": {
|
|
|
|
"_routing": {
|
|
|
|
"required": true <1>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 10:42:03 -04:00
|
|
|
PUT my_index2/my_type/1 <2>
|
2015-07-19 19:24:29 -04:00
|
|
|
{
|
|
|
|
"text": "No routing value provided"
|
|
|
|
}
|
|
|
|
------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
// CONSOLE
|
2016-04-29 10:42:03 -04:00
|
|
|
// TEST[catch:request]
|
2015-07-19 19:24:29 -04:00
|
|
|
<1> Routing is required for `my_type` documents.
|
|
|
|
<2> This index request throws a `routing_missing_exception`.
|
|
|
|
|
|
|
|
==== Unique IDs with custom routing
|
|
|
|
|
|
|
|
When indexing documents specifying a custom `_routing`, the uniqueness of the
|
|
|
|
`_id` is not guaranteed across all of the shards in the index. In fact,
|
|
|
|
documents with the same `_id` might end up on different shards if indexed with
|
|
|
|
different `_routing` values.
|
|
|
|
|
|
|
|
It is up to the user to ensure that IDs are unique across the index.
|