2016-08-24 22:37:59 +02:00
[[search-request-stored-fields]]
2013-08-29 01:24:34 +02:00
=== Fields
2016-06-21 11:27:27 +02:00
WARNING: The `stored_fields` parameter is about fields that are explicitly marked as
2015-11-03 11:18:00 +01:00
stored in the mapping, which is off by default and generally not recommended.
Use <<search-request-source-filtering,source filtering>> instead to select
subsets of the original source document to be returned.
2013-11-13 16:53:10 +01:00
Allows to selectively load specific stored fields for each document represented
by a search hit.
2013-08-29 01:24:34 +02:00
[source,js]
--------------------------------------------------
2016-05-18 13:15:19 +02:00
GET /_search
2013-08-29 01:24:34 +02:00
{
2016-06-21 11:27:27 +02:00
"stored_fields" : ["user", "postDate"],
2013-08-29 01:24:34 +02:00
"query" : {
"term" : { "user" : "kimchy" }
}
}
--------------------------------------------------
2016-05-18 13:15:19 +02:00
// CONSOLE
2013-08-29 01:24:34 +02:00
`*` can be used to load all stored fields from the document.
An empty array will cause only the `_id` and `_type` for each hit to be
returned, for example:
[source,js]
--------------------------------------------------
2016-05-18 13:15:19 +02:00
GET /_search
2013-08-29 01:24:34 +02:00
{
2016-06-21 11:27:27 +02:00
"stored_fields" : [],
2013-08-29 01:24:34 +02:00
"query" : {
"term" : { "user" : "kimchy" }
}
}
--------------------------------------------------
2016-05-18 13:15:19 +02:00
// CONSOLE
2013-08-29 01:24:34 +02:00
2016-09-13 20:54:41 +02:00
If the requested fields are not stored (`store` mapping set to `false`), they will be ignored.
2013-11-13 16:53:10 +01:00
2017-07-05 12:30:19 +02:00
Stored field values fetched from the document itself are always returned as an array. On the contrary, metadata fields like `_routing` are never returned as an array.
2014-01-02 23:38:08 +01:00
Also only leaf fields can be returned via the `field` option. So object fields can't be returned and such requests
will fail.
2013-08-29 01:24:34 +02:00
Script fields can also be automatically detected and used as fields, so
2014-01-02 23:38:08 +01:00
things like `_source.obj1.field1` can be used, though not recommended, as
`obj1.field1` will work as well.
2013-08-29 01:24:34 +02:00
2016-08-17 15:59:38 +02:00
==== Disable stored fields entirely
2017-02-03 10:18:01 +01:00
To disable the stored fields (and metadata fields) entirely use: `_none_`:
2016-08-17 15:59:38 +02:00
[source,js]
--------------------------------------------------
GET /_search
{
"stored_fields": "_none_",
"query" : {
"term" : { "user" : "kimchy" }
}
}
--------------------------------------------------
// CONSOLE
NOTE: <<search-request-source-filtering,`_source`>> and <<search-request-version, `version`>> parameters cannot be activated if `_none_` is used.