I have an index with 2 shards, I configured a policy that performs rollover on max_primary_shard_size=40gb.
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {
"rollover": {
"max_primary_shard_size": "40gb"
}
}
},
"delete": {
"min_age": "365d",
"actions": {
"delete": {
"delete_searchable_snapshot": true
}
}
}
}
}
Since moving to version8.12 I see that the rollover is performed earlier ~10-20gb shard size instead ~40gb.
It was working properly on version 7.13.
What could be the reason?
Thanks...