Grid shows: Elasticsearch Status: Pending #14110
-
Hi all, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
What is the output of the following command? |
Beta Was this translation helpful? Give feedback.
-
So, the "r" in the index information is for Replica -- the Elasticsearch subsystem is looking for another node to put a duplicate copy of those shards on for redundancy. If this is a Standalone deployment, and there's only one node, that's why it's unassigned; there's not another node to put that replica on. You need to tell Elasticsearch that those indices don't require replicas. Try this one-liner to set all of those to 0 replicas: #13773 |
Beta Was this translation helpful? Give feedback.
-
Cool. My node is now without an issue. I am impressed. Thank you InfosecGoon. Much appreciated |
Beta Was this translation helpful? Give feedback.
So, the "r" in the index information is for Replica -- the Elasticsearch subsystem is looking for another node to put a duplicate copy of those shards on for redundancy. If this is a Standalone deployment, and there's only one node, that's why it's unassigned; there's not another node to put that replica on.
You need to tell Elasticsearch that those indices don't require replicas.
Try this one-liner to set all of those to 0 replicas: #13773