You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[TSDB] Rename rollup public API to downsample (#89809)
This PR renames all public APIs for downsampling so that they contain the downsample
keyword instead of the rollup that we had until now.
1. The API endpoint for the downsampling action is renamed to:
/source-index/_downsample/target-index
2. The ILM action is renamed to
PUT _ilm/policy/my_policy
{
"policy": {
"phases": {
"warm": {
"actions": {
"downsample": {
"fixed_interval": "24h"
}
}
}
}
}
}
3. unsupported_aggregation_on_rollup_index was renamed to unsupported_aggregation_on_downsampled_index
4. Internal trasport actions were renamed:
indices:admin/xpack/rollup -> indices:admin/xpack/downsample
indices:admin/xpack/rollup_indexer -> indices:admin/xpack/downsample_indexer
5. Renamed the following index settings:
index.rollup.source.uuid -> index.downsample.source.uuid
index.rollup.source.name -> index.downsample.source.name
index.rollup.status -> index.downsample.status
Finally, we renamed many internal variables and classes from *Rollup* to *Downsample*.
However, this effort will be completed in more than one PRs so that we minimize conflicts with other in-flight PRs.
Relates to #74660
Copy file name to clipboardExpand all lines: server/src/main/java/org/elasticsearch/search/aggregations/bucket/histogram/DateHistogramAggregationBuilder.java
0 commit comments