-
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
Fix split package in analysis-icu plugin #78037
Conversation
The analysis-icu plugin reuses server package names for analysis and mappers. This commit moves the plugin implementation to use a single package name, o.e.p.analysis.icu
Pinging @elastic/es-search (Team:Search) |
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, I left some questions around license headers.
We don't really have a good deprecation route for analysis plugins (it's pretty messy deprecating built-in analysis components as well). It would be nice to be able to cleanly say 'these components are deprecated' in the plugin definition. Something to add to the pile.
@@ -1,4 +1,12 @@ | |||
package org.elasticsearch.index.analysis; | |||
/* |
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.
This is a directly copy of lucene's old ICUCollationKeyFilter I think? In which case it should just keep the Apache 2 license header AIUI.
@@ -1,4 +1,12 @@ | |||
package org.elasticsearch.index.analysis; | |||
/* |
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.
Same comment as above
@@ -1,4 +1,12 @@ | |||
package org.elasticsearch.index.analysis; | |||
/* |
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.
And here
💔 Backport failed
You can use sqren/backport to manually backport by running |
The analysis-icu plugin reuses server package names for analysis and
mappers. This commit moves the plugin implementation to use a single
package name, o.e.p.analysis.icu