Hey All ,
I have hot-warm policy which is so basic ;
{
“policy_id”: “test”,
“schema_version”: 12,
“error_notification”: null,
“default_state”: “hot”,
“states”: [
{
“name”: “hot”,
“actions”: ,
“transitions”: [
{
“state_name”: “warm”,
“conditions”: {
“min_size”: “100mb”
}
}
]
},
{
“name”: “warm”,
“actions”: [
{
“allocation”: {
“require”: {
“temp”: “warm”
},
“wait_for”: false
}
}
],
“transitions”:
}
],
“ism_template”: [
{
“index_patterns”: [
“application-test*”
],
“priority”: 1
}
]
}
when I create first index its correctly assigning to hot ;
application-test-2022.10.01 0 p STARTED 295314 210.9mb 10.244.0.80 opensearch-cluster-data-hot-0
application-test-2022.10.01 0 r UNASSIGNED
after moving to the warm node I can see my index assigned both nodes;
application-test-2022.10.01 0 p STARTED 295314 210.9mb 10.244.0.80 opensearch-cluster-data-hot-0
application-test-2022.10.01 0 r STARTED 295314 210.9mb 10.244.0.81 opensearch-cluster-data-warm-0
can you please help me?I am struggling with this long time