mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
Rename fields
to stored_fields
and add docvalue_fields
`stored_fields` parameter will no longer try to retrieve fields from the _source but will only return stored fields. `fields` will throw an exception if the user uses it. Add `docvalue_fields` as an adjunct to `fielddata_fields` which is deprecated. `docvalue_fields` will try to load the value from the docvalue and fallback to fielddata cache if docvalues are not enabled on that field. Closes #18943
This commit is contained in:
parent
b0da4719aa
commit
2f46f53dc8
45 changed files with 453 additions and 318 deletions
|
@ -152,7 +152,7 @@ First, let's look at the source data for a player by submitting the following re
|
|||
----------------------------------------------------------------
|
||||
GET hockey/_search
|
||||
{
|
||||
"fields": [
|
||||
"stored_fields": [
|
||||
"_id",
|
||||
"_source"
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue