Hello,
My organization uses Elasticsearch to power one of our services and regularly receive write requests into our cluster. We use the routing parameter on all search and write requests, so they are directed to a single shard internally.
As part of our disaster recovery planning, I'm trying to understand what happens to incoming write requests if the cluster goes into the RED state. For example, if one shard (and all replicas) in the index becomes unallocated leading to a red state, but all other shards are still allocated, would all write requests to that index be blocked? Or would the cluster accept write requests routed to allocated shards?
This document mentions you cannot write or search for data when the index is in the RED state. However, in conducting previous experiments with a cluster in the RED state, this was not the case. In the past, we were able to successfully perform search requests to an index while it was in a RED state as long as the request was routed to a shard that was still allocated.
I appreciate any additional insight here.