-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Forbid negative values for index.unassigned.node_left.delayed_timeout #26828
Merged
DaveCTurner
merged 2 commits into
elastic:master
from
DaveCTurner:issue-26828-delayed_timeout-positive
Sep 29, 2017
Merged
Forbid negative values for index.unassigned.node_left.delayed_timeout #26828
DaveCTurner
merged 2 commits into
elastic:master
from
DaveCTurner:issue-26828-delayed_timeout-positive
Sep 29, 2017
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bleskes
suggested changes
Sep 29, 2017
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks great. We need a break change documentation. See docs/reference/migration/index.asciidoc
@bleskes ok done. |
bleskes
approved these changes
Sep 29, 2017
jasontedor
added a commit
to jasontedor/elasticsearch
that referenced
this pull request
Oct 1, 2017
* xdcr: Maybe die before trying to log cause Log cause when a write and flush fails Die if write listener fails due to fatal error RecoveryIT.testHistoryUUIDIsGenerated should reduce unassigned shards delay instead of ensure green. Replace group map settings with affix setting (elastic#26819) Fix references to vm.max_map_count in Docker docs Add more instructions about jar hell (elastic#26837) Forbid negative values for index.unassigned.node_left.delayed_timeout (elastic#26828) Nitpicking typos in comments (elastic#26831) MetaData Builder doesn't properly prevent an alias with the same name as an index (elastic#26804)
lcawl
added
:Search/Search
Search-related issues that do not fall into other categories
and removed
:Allocation
labels
Feb 13, 2018
clintongormley
added
:Distributed Indexing/Distributed
A catch all label for anything in the Distributed Area. Please avoid if you can.
and removed
:Search/Search
Search-related issues that do not fall into other categories
labels
Feb 13, 2018
26 tasks
jakelandis
added a commit
to jakelandis/elasticsearch
that referenced
this pull request
Dec 10, 2018
…eout This commit adds support to check for negative values for index setting `index.unassigned.node_left.delayed_timeout` for the deprecation info API. relates elastic#36024 relates elastic#26828
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
>breaking
:Distributed Indexing/Distributed
A catch all label for anything in the Distributed Area. Please avoid if you can.
v7.0.0-beta1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Negative values for
index.unassigned.node_left.delayed_timeout
could be expected to mean "never" whereas in fact they mean "0". "Never" is not a useful value for this, so we should just reject negative values here.