-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[Lens] Server side sortable table columns while in edit mode #55905
Comments
Pinging @elastic/kibana-app (Team:KibanaApp) |
We decided to implement client side sorting during the "Lens by default" time frame - this is tracked here: #76962 |
Because the Terms aggregation is the biggest cause of confusion in sorting, I think we might want to push for the ability to do multi-field terms aggs, which I've written up here: #77632 |
Thank you for contributing to this issue, however, we are closing this issue due to inactivity as part of a backlog grooming effort. If you believe this feature/bug should still be considered, please reopen with a comment. |
User goal: It should be possible for users to trigger server-side sorting from the Lens editor in at least some cases.
Technical background: The Lens architecture does not currently support this kind of sorting for several reasons, but primarily because of the separation between data sources and visualizations. Also, Elasticsearch doesn't support every kind of sorting, and this might need to be represented in our datasources.
As it exists today, the only sortable operation in Lens is the Terms aggregation, which can be sorted:
For the data table visualization to know that these limitations exist, we would need these architectural changes, provided via the
getOperation
function on data sources.The text was updated successfully, but these errors were encountered: