-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
logs about updating IndexSetting should be more detailed #49818
Labels
:Core/Infra/Settings
Settings infrastructure and APIs
>enhancement
good first issue
low hanging fruit
help wanted
adoptme
Comments
DaveCTurner
added
:Core/Infra/Settings
Settings infrastructure and APIs
>enhancement
labels
Dec 4, 2019
Pinging @elastic/es-core-infra (:Core/Infra/Settings) |
Seems like a reasonable thing to want @kkewwei. Would you care to work on a PR? |
It's my pleasure to do it. |
Is this item still open? |
@rachana-prajapati, yes, you can see it it the pr. |
DaveCTurner
pushed a commit
that referenced
this issue
Jan 3, 2020
Today we log changes to index settings like this: updating [index.setting.blah] from [A] to [B] The identity of the index whose settings were updated is conspicuously absent from this message. This commit addresses this by adding the index name to these messages. Fixes #49818.
SivagurunathanV
pushed a commit
to SivagurunathanV/elasticsearch
that referenced
this issue
Jan 23, 2020
Today we log changes to index settings like this: updating [index.setting.blah] from [A] to [B] The identity of the index whose settings were updated is conspicuously absent from this message. This commit addresses this by adding the index name to these messages. Fixes elastic#49818.
This was referenced Feb 3, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
:Core/Infra/Settings
Settings infrastructure and APIs
>enhancement
good first issue
low hanging fruit
help wanted
adoptme
ES_VERSION: 7.3.1
Description of the problem including expected versus actual behavior:
When updating index setting like this:
PUT index1/_settings { "index": { "merge": { "policy": { "max_merge_at_once": "5" } } } }
and relevent log is:
[2019-12-03T21:59:14,065][INFO ][o.e.c.s.IndexScopedSettings] [node-1] updating [index.merge.policy.max_merge_at_once] from [10] to [5]
according to the log, I don't know which index is updated, If we could add the index name in the log.
The text was updated successfully, but these errors were encountered: