GoatInTheMachine
GoatInTheMachine

Reputation: 3773

ElasticSearch: What does it mean if an index's health is 'red'?

I'm so sad to have to ask this here, but I can't find this information anywhere in the ElasticSearch docs for ES 2.2/3. If I _cat all the indices on our single node, a couple of them show up with a health of 'red' - what does this mean? I know what it means for a cluster, but not an index.

Upvotes: 1

Views: 1249

Answers (1)

Andrei Stefan
Andrei Stefan

Reputation: 52368

It means that at least one primary shard of that index is not available. For clusters that have more than one node, this means that the replica shards of that shard are also missing all.

But you have one node only, so the cluster (and the indices) are already yellow.

Upvotes: 2

Related Questions