Thanks Sebastian for helping me.
So, in Dev Tools, i gave the command to check the reason for the problem on shards (GET /_cluster/allocation/explain) and got this output:
{
"index": ".opendistro-alerting-config",
"shard": 0,
"primary": false,
"current_state": "unassigned",
"unassigned_info": {
"reason": "CLUSTER_RECOVERED",
"at": "2024-11-26T15:17:29.047Z",
"last_allocation_status": "no_attempt"
},
"can_allocate": "no",
"allocate_explanation": "cannot allocate because allocation is not permitted to any of the nodes",
"node_allocation_decisions": [
{
"node_id": "-tcNKoecTxiBEvIpcCcJBQ",
"node_name": "node-1",
"transport_address": "
127.0.0.1:9300",
"node_attributes": {
"shard_indexing_pressure_enabled": "true"
},
"node_decision": "no",
"deciders": [
{
"decider": "enable",
"decision": "NO",
"explanation": "replica allocations are forbidden due to cluster setting [cluster.routing.allocation.enable=primaries]"
},
{
"decider": "same_shard",
"decision": "NO",
"explanation": "a copy of this shard is already allocated to this node [[.opendistro-alerting-config][0], node[-tcNKoecTxiBEvIpcCcJBQ], [P], s[STARTED], a[id=DETCwYoTRWO8iF8GNHhqIg]]"
}
]
}
]
}
the shard in question seems to be from yesterday, so I assume that it is gradually going to be updated from day to day.
What could i do?