-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load date fields through 'fields' instead of 'docvalue_fields'. #75813
Labels
[Deprecated-Use Team:Presentation]Team:Geo
Former Team Label for Geo Team. Now use Team:Presentation
Feature:Discover
Discover Application
Feature:Search
Querying infrastructure in Kibana
Comments
jtibshirani
added
bug
Fixes for quality problems that affect the customer experience
Feature:Discover
Discover Application
Team:Visualizations
Visualization editors, elastic-charts and infrastructure
labels
Aug 24, 2020
Pinging @elastic/kibana-app (Team:KibanaApp) |
wylieconlon
removed
the
bug
Fixes for quality problems that affect the customer experience
label
Aug 24, 2020
nreese
added
the
[Deprecated-Use Team:Presentation]Team:Geo
Former Team Label for Geo Team. Now use Team:Presentation
label
Aug 24, 2020
Pinging @elastic/kibana-gis (Team:Geo) |
Adding geo tag since maps also loads date fields via doc_values. |
For this change |
Pinging @elastic/kibana-app-arch (Team:AppArch) |
Somehow I had missed this issue until now -- I'm planning to address this as a part of the work for #77241. |
lukeelmers
added
Feature:Search
Querying infrastructure in Kibana
and removed
Team:Visualizations
Visualization editors, elastic-charts and infrastructure
labels
Nov 3, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[Deprecated-Use Team:Presentation]Team:Geo
Former Team Label for Geo Team. Now use Team:Presentation
Feature:Discover
Discover Application
Feature:Search
Querying infrastructure in Kibana
Currently the Discover search loads the document
_source
, and also loads date fields usingdocvalue_fields
in order to apply the right formatting. Doc values are column-oriented and are more expensive to retrieve, so Elasticsearch places a limit on the number of fields that can be retrieved (index.max_docvalue_fields_search
). If a user has more date fields than this limit, the Discover search can fail.Elasticsearch merged a new
fields
option that loads fields from _source, and supports date formatting. Discover could switch to loading dates throughfields
instead ofdocvalue_fields
to prevent hitting the limit.This would resolve #22897. Also relates to #69049.
The text was updated successfully, but these errors were encountered: