33 lines
774 B
Plaintext

// PUT _ilm/policy/logstash_1h_candle_policy
{
"policy": {
"phases": {
"hot": {
"actions": {
"rollover": {
"max_size": "10GB",
"max_age": "300d" // 14 天滚动
},
"allocate": { "_tier_preference": "data_hot" }
}
},
"warm": {
"min_age": "600d", // 60 天进入 warm
"actions": {
"allocate": { "_tier_preference": "data_warm" }
}
},
"cold": {
"min_age": "800d", // 180 天进入 cold
"actions": {
"allocate": { "_tier_preference": "data_cold" },
"shrink": { "number_of_shards": 1 }
}
},
"delete": {
"min_age": "2400d" // 3 年后删除
}
}
}
}