Hi everyone, I’m running into an issue that I think might be slowing down my cluster and causing it to not keep up. First I’d like to verify that this is, in fact, an issue and maybe be able to resolve it.
I have filebeat and metricbeat creating new daily indices and pushing logs into my cluster. I have an index management policy that should transition from hot to warm to cold and then rotten for deletion. All of my indices seem to be getting to the transition stage, more or less, but they always stay running and never complete. Can anyone give me any insight into what might be happening?
{
"policy_id": "hot_cold_rotten_workflow",
"description": "Default policy that moves indicies from hot to warm to cold to rotten states. Indicies delete on rotten.",
"last_updated_time": 1617990491574,
"schema_version": 1,
"error_notification": null,
"default_state": "hot",
"states": [
{
"name": "hot",
"actions": [],
"transitions": [
{
"state_name": "warm",
"conditions": {
"min_index_age": "1d"
}
}
]
},
{
"name": "warm",
"actions": [
{
"replica_count": {
"number_of_replicas": 3
}
}
],
"transitions": [
{
"state_name": "cold",
"conditions": {
"min_index_age": "30d"
}
}
]
},
{
"name": "cold",
"actions": [
{
"replica_count": {
"number_of_replicas": 1
}
}
],
"transitions": [
{
"state_name": "rotten",
"conditions": {
"min_index_age": "90d"
}
}
]
},
{
"name": "rotten",
"actions": [
{
"delete": {}
}
],
"transitions": []
}
]
}