Hi Isaac,
node does not match cluster setting [cluster.routing.allocation.include] filters [_name:"node-11"]
That usually means the cluster is currently configured to allocate shards only to node-11. If that filter was added during troubleshooting or while the node was unavailable, OpenSearch can keep many shards unassigned until that setting is removed or corrected. A RED cluster means at least one primary shard is still unassigned.
I would suggest checking the cluster routing settings first:
Navigate to Indexer management -> Dev tools
GET _cluster/settings?include_defaults=true&pretty
Please look for settings such as:
cluster.routing.allocation.include._name
cluster.routing.allocation.exclude._name
cluster.routing.allocation.require._name
cluster.routing.allocation.enable
If cluster.routing.allocation.include._name is set to node-11, and that is no longer intended, you can clear it with:
After that, check the allocation explanation again and retry failed allocations if needed:
GET _cluster/allocation/explain?pretty
POST _cluster/reroute?retry_failed=true&pretty
Then share with me so I can review further.
Please share the output of:
and we can help review it further.