-
Notifications
You must be signed in to change notification settings - Fork 25.2k
tieBreakerMultiplier is broken #73
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
Comments
can you add sample data that you used with this query? |
here's a complete test case:
|
Fixed - tieBreakerMultiplier was used at the wrong level. Now the server throws an error instead of hanging |
rmuir
pushed a commit
to rmuir/elasticsearch
that referenced
this issue
Nov 8, 2015
When we want to force some values, we need to set those using `_field` where `field` is the field name we want to force: ``` { "file": { "_name": "myfilename.txt" } } ``` But to set the content itself, we use `content` field name. ``` { "file": { "content": "VGhpcyBpcyBhbiBlbGFzdGljc2VhcmNoIG1hcHBlciBhdHRhY2htZW50IHRlc3Qu", "_name": "myfilename.txt" } } ``` For consistency, we set `_content` instead: ``` { "file": { "_content": "VGhpcyBpcyBhbiBlbGFzdGljc2VhcmNoIG1hcHBlciBhdHRhY2htZW50IHRlc3Qu", "_name": "myfilename.txt" } } ``` Closes elastic#73. (cherry picked from commit 2e6be20)
rmuir
pushed a commit
to rmuir/elasticsearch
that referenced
this issue
Nov 8, 2015
In elastic#73, we deprecated `content` field in favor of `_content` field. In plugin version 2.4.0, we can now remove the old field name. Closes elastic#75. (cherry picked from commit 7a0f838)
maabernethy
pushed a commit
to maabernethy/elasticsearch
that referenced
this issue
Mar 20, 2017
Update Coordination.md
henningandersen
pushed a commit
to henningandersen/elasticsearch
that referenced
this issue
Jun 4, 2020
with this commit we lower the time window for dashboard queries from 50% to 25% and also lower their target throughput to better match real world use cases.
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hiya
The query below just hangs. Without the tieBreakerMultiplier it works fine:
ta
clint
The text was updated successfully, but these errors were encountered: