-
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
Remove xpack actions for the flattened field. #53076
Remove xpack actions for the flattened field. #53076
Conversation
The current consensus is that we don't need info actions for smaller items like field mappers. We can also remove the usage action since the cluster stats API now tracks information about mappings, like what field types are defined.
Pinging @elastic/es-search (:Search/Mapping) |
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 was going to talk to you about removing those today, but you've been too fast!
Thanks @jpountz ! A note that I only plan to commit to master, since it's a breaking change. |
Yes, I checked the version labels when reviewing, this makes sense to me. |
We have already decided not to have xpack usage for field mappers (see elastic#53076). As mappings stats of all fields is already tracked in cluster stats. Moreover xpack usage for vector field is a quite expensive operation (see elastic#74974). This removes xpack actions for vector field.
We have already decided not to have xpack usage for field mappers (see elastic#53076). As mappings stats of all fields is already tracked in cluster stats. Moreover xpack usage for vector field is a quite expensive operation (see elastic#74974). This removes xpack actions for vector field. Backport for elastic#75017
The current consensus is that we don't need info actions for smaller items like
field mappers. We can also remove the usage action since the cluster stats API
now tracks information about mappings, like what field types are defined.
Relates to #53071 and #51260.