-
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
[Transform] Improve transform upgrader #79601
[Transform] Improve transform upgrader #79601
Conversation
ad624b0
to
4d23596
Compare
action.destructive_requires_name is set to true(default)
4d23596
to
17c6b4e
Compare
Pinging @elastic/ml-core (Team:ML) |
.../plugin/core/src/main/java/org/elasticsearch/xpack/core/transform/TransformDeprecations.java
Outdated
Show resolved
Hide resolved
...in/core/src/main/java/org/elasticsearch/xpack/core/transform/transforms/TransformConfig.java
Outdated
Show resolved
Hide resolved
...re/src/test/java/org/elasticsearch/xpack/core/transform/transforms/TransformConfigTests.java
Outdated
Show resolved
Hide resolved
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.
Minor typo, otherwise text LGTM
.../plugin/core/src/main/java/org/elasticsearch/xpack/core/transform/TransformDeprecations.java
Outdated
Show resolved
Hide resolved
If you implement my suggestion ( |
…transform/TransformDeprecations.java Co-authored-by: Lisa Cawley <[email protected]>
Co-authored-by: Lisa Cawley <[email protected]>
@elasticmachine update branch |
…hs/elasticsearch into transform-upgrade-enhancements
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.
LGTM
This changes fixes some issues with the upgrader. It inlines the index name resolver as wildcard deletes are not supported if action.destructive_requires_name is set to true(default). It changes response to always return all counters in order to avoid an empty response. After documentation has been created, it switches the deprecation URL to the upgrade API docs.
* [Transform] Improve transform upgrader (#79601) This changes fixes some issues with the upgrader. It inlines the index name resolver as wildcard deletes are not supported if action.destructive_requires_name is set to true(default). It changes response to always return all counters in order to avoid an empty response. After documentation has been created, it switches the deprecation URL to the upgrade API docs. * change url to 7.16 specific one * fix 7.x specific test * fix put mapping call
This changes fixes some issues with the upgrader. It inlines the index name resolver as wildcard deletes are not supported if action.destructive_requires_name is set to true(default). It changes response to always return all counters in order to avoid an empty response. After documentation has been created, it switches the deprecation URL to the upgrade API docs.
This changes fixes some issues with the upgrader. It inlines the index name resolver as wildcard deletes are not supported if
action.destructive_requires_name
is set totrue
(default). It changes response to always return all counters in order to avoid an empty response. After documentation has been created, it switches the deprecation URL to the upgrade API docs.Notes