-
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
Kibana needs to handle "Fielddata access on the _id field is disallowed" #52517
Comments
Pinging @elastic/kibana-stack-services (Team:Stack Services) |
This is related to elastic/elasticsearch#49166 and elastic/elasticsearch#43599 |
We're currently pinned to an older version of Elasticsearch 8.0.0 both locally and on CI. To unpin this, we will need to remove our usage of sorting on |
There's also potentially this: kibana/x-pack/legacy/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts Lines 98 to 121 in dfac5d8
|
Quick peek through the code, I think it would be save to change the function doing this to remove the kibana/x-pack/legacy/plugins/task_manager/server/task_store.ts Lines 430 to 442 in dfac5d8
|
Running FTS with |
resolves elastic#52517 Not sure if these fixes are completely kosher, specifically if there are any down-stream effects.
The only usage I can see is the telemetry usage collector, which filters for a specific _id value when it does a fetch (so it doesn't use pagination). Seems safe to remove pagination support, we can re-introduce later if/when needed. |
I'm running FTS/FTR from master (with Gidi's fix merged), setting the following when running FTS so it uses the latest unverified ES snapshot, which is what broke with the old code (when sorting with _id):
passed! |
Sorting/Aggregating by _id was removed in elastic#52517 Retains sorting as requested by elastic#29747 Signed-off-by: Tyler Smalley <[email protected]>
This reverts commit d2b90749634c5f1d7daac61751a81b4f5057fc9b. That approach unfortunately did not work due to the problem that is described in elastic#52517.
Kibana version: 8.0.0
Elasticsearch version: 8.0.0
Server OS version: darwin_x86_64
Browser version: chrome latest
Browser OS version: OS X
Original install method (e.g. download page, yum, from source, etc.): from snapshot build on 8th dec
Describe the bug: Elasticsearch has a breaking change elastic/elasticsearch#49166 and Kibana needs to handle it.
Steps to reproduce:
Kibana logs:
ES logs:
Any additional context:
elastic/elasticsearch#49166
The text was updated successfully, but these errors were encountered: