Dear Elastic team members,
Today I did an Index Lifecycle policies on index metricbeat-2019
on Kibana. But it's not working.
Before I posted the issue here, I want to talk about a little bit of backgrounds of use case I used.
The Elasticsearch cluster I used is hosted on the elstic cloud.
Here is the license I have
(redacted)
The Cluster Deployments I used is I/O Optimized
not Hot-Warm Architecture
because of the trial version. Here is a cluster deployment with the details as below:
Configuration of Index Lifecycle Policies I made here:
Index metricbeat template as here:
{
"metricbeat" : {
"order" : 1,
"index_patterns" : [
"metricbeat-*"
],
"settings" : {
"index" : {
"lifecycle" : {
"name" : "metricbeat_ILP",
"rollover_alias" : "metricbeat-alias"
},
"mapping" : {
"total_fields" : {
"limit" : "50000"
}
},
"refresh_interval" : "60s",
"number_of_shards" : "5",
"translog" : {
"flush_threshold_size" : "4G",
"sync_interval" : "60s",
"durability" : "async"
},
"merge" : {
"scheduler" : {
"max_thread_count" : "1"
},
"policy" : {
"max_merge_at_once_explicit" : "30",
"max_merge_at_once" : "10",
"max_merged_segment" : "5gb",
"floor_segment" : "2mb"
}
},
"number_of_replicas" : "1"
}
},
"mappings" : { },
"aliases" : {
"metricbeat-alias" : { }
}
}
}
The problem I had here: