Hi all,
I've the following paramters on my ILM :
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {
"rollover": {
"max_primary_shard_size": "12gb",
"max_age": "30m"
},
"set_priority": {
"priority": 100
}
}
},
"delete": {
"min_age": "2h",
"actions": {
"delete": {
"delete_searchable_snapshot": true
}
}
},
"warm": {
"min_age": "30m",
"actions": {
"set_priority": {
"priority": 50
}
}
}
}
},
The settings on the index template is the following :
"settings": {
"index": {
"lifecycle": {
"name": "2h_30mh_90mw"
},
"codec": "best_compression",
"routing": {
"allocation": {
"include": {
"_tier_preference": "data_hot"
}
}
},
"refresh_interval": "60s",
"number_of_shards": "1",
"number_of_replicas": "0"
}
}
Anyone could explain to me why it produces index files with a storage size of 20GB ? instead of the 12 GB defined ?
DOn't hesitate to tell me if it's the wrong place to post according to the subject
Thanks by advance for your reply
Regards,
Christophe