Elasticsearch Yml configuration

Hi ,

I am doing a 6 node elasticsearch cluster setup where 4 nodes i am taking as a master and 2 as a data node , but my cluster is not working as expected.

can somebody please help me with complete cluster setup (elasticsearch.yml) configuration.

Thanks,

Santosh

What does it mean?

I mean if i am taking one node offline , still my cluster status is showing "green" , which is not actual behavior of cluster to my understanding.

so it would be good if you can share the complete configuration file (elasticsearch.yml) file.

Regards,
Santosh

Why do you think it's not good?
If the cluster is green it means that all shards are allocated on the cluster.

Thanks for your response David !

Yes , but what I am trying to say is out of 6 nodes if I am taking one or multiple node offline still my cluster status is showing "green"

Also below is my current configuration hence could you please suggest if something needs to be modified in below configuration.

Elasticsearch.yml

======================== Elasticsearch Configuration =========================

NOTE: Elasticsearch comes with reasonable defaults for most settings.

Before you set out to tweak and tune the configuration, make sure you

understand what are you trying to accomplish and the consequences.

The primary way of configuring a node is via this file. This template lists

the most important settings you may want to configure for a production cluster.

Please consult the documentation for further information on configuration options:

https://www.elastic.co/guide/en/elasticsearch/reference/index.html

---------------------------------- Cluster -----------------------------------

Use a descriptive name for your cluster:

cluster.name: lobster

------------------------------------ Node ------------------------------------

Use a descriptive name for the node:

node.name: smsg1m-cbs-elk-es-vm1

Add custom attributes to the node:

#node.attr.rack: r1

----------------------------------- Paths ------------------------------------

Path to directory where to store the data (separate multiple locations by comma):

path.data: /u01/data/var/lib/elasticsearch

Path to log files:

path.logs: /u02/log/var/log/elasticsearch

----------------------------------- Memory -----------------------------------

Lock the memory on startup:

bootstrap.memory_lock: true

Make sure that the heap size is set to about half the memory available

on the system and that the owner of the process is allowed to use this

limit.

Elasticsearch performs poorly when the system is swapping the memory.

---------------------------------- Network -----------------------------------

Set the bind address to a specific IP (IPv4 or IPv6):

network.host: 172.17.3.205

Set a custom port for HTTP:

http.port: 9200

For more information, consult the network module documentation.

--------------------------------- Discovery ----------------------------------

Pass an initial list of hosts to perform discovery when new node is started:

The default list of hosts is ["127.0.0.1", "[::1]"]

discovery.zen.ping.unicast.hosts: [ "172.17.3.205", "172.17.3.200", "172.17.3.198", "172.17.3.204", "172.17.3.203", "172.17.3.201" ]

Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1):

discovery.zen.minimum_master_nodes: 4

For more information, consult the zen discovery module documentation.

---------------------------------- Gateway -----------------------------------

Block initial recovery after a full cluster restart until N nodes are started:

#gateway.recover_after_nodes: 3

For more information, consult the gateway module documentation.

---------------------------------- Various -----------------------------------

Require explicit names when deleting indices:

#action.destructive_requires_name: true
cluster.routing.allocation.disk.watermark.low: "20gb"
cluster.routing.allocation.disk.watermark.high: "10gb"
cluster.routing.allocation.disk.watermark.flood_stage: "5gb"
#thread_pool.search.queue_size: "2000"
path.repo: ["/elk_core_backup_data"]

Please format your code, logs or configuration files using </> icon as explained in this guide and not the citation button. It will make your post more readable.

Or use markdown style like:

```
CODE
```

This is the icon to use if you are not using markdown format:

There's a live preview panel for exactly this reasons.

Lots of people read these forums, and many of them will simply skip over a post that is difficult to read, because it's just too large an investment of their time to try and follow a wall of badly formatted text.
If your goal is to get an answer to your questions, it's in your interest to make it as easy to read and understand as possible.
Please update your post.

What is the output of:

GET /
GET /_cat/nodes?v
GET /_cat/health?v
GET /_cat/indices?v

If some outputs are too big, please share them on gist.github.com and link them here.

Hi David,

Good Morning !

My bad i understand the output which i have pasted is too large , henceforth i will paste the output in Github link.

please find the output of below GET requests :

GET /
GET /_cat/nodes?v
GET /_cat/health?v
GET /_cat/indices?v

Results

Hi David,

I request you please feedback on my current elasticsearch.yml configuration and suggest me if any modification is required.

Thanks,
Santosh

Everything looks good to me. What problem do you think you have?

I feel the problem is in elasticsearch.yml configuration , its because if I am stopping elasticsearch service in any of the node or bringing down any of the node still my cluster status is showing "green" for example please find the below link , I hope you got my point now what I am trying to explain :slight_smile: kindly share your opinion

Thanks,
Santosh

I think you misunderstand what it means for an Elasticsearch cluster to be in a "green" state.

For an Elasticsearch cluster to be green all its shards, that is all the data in all the indices you've created plus all the replica shards too, must be available for queries (and for indexing). It doesn't matter how many nodes you have, as long as you have a sufficient number to spread the primary and replica shards (you can't have a replica on the same node where the primary shard is, so you need at least 2 data nodes for a well formed, redundant cluster).

So, when you stop a node your cluster will still turn green because the shards on the stopped node will get replicated to the other nodes in the cluster. This replication may take time, during which the cluster will be in a yellow state, but once all shards are successfully replicated your cluster will be green by definition. The missing nodes have no effect because all the data is available.

The Elasticsearch master node have no memories of former nodes, only of the nodes currently in the cluster, so if you stop one or more nodes the master will simply remove them from its cluster state and won't come looking for them again. From the master's perspective the cluster is OK (green) as soon as all shards from the stopped nodes have been replicated. And that's the only sane definition of green / OK.

1 Like

Hi Rostad,

yes , I know the functionality of elasticsearch cluster.

so you mean to say my cluster status will still show "green" even 2 or 3 nodes goes down , as all the shards will be allocated across rest of the available nodes.

but I have referred the below link and as per the guideline and my knowledge if multiple node goes down for longer time in that case shards will not be allocated across the rest of the VMs.

https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-health.html

feel free to provide your feedback on my understanding on this and if so I believe we both are in same page on this discussion , looking forward your response for the same.

also I request you to go through my current elasticsearch.yml configuration and feedback if any changes is required.

Regards,
Santosh

That is correct. If all the shards , primary and replica, can be distributed on the remaining data nodes the cluster will be in a green state once they are all synched and available.

As far as i can see there is no mention of nodes with respect to cluster status in the document you refer to, what that document says about cluster level status is:

The cluster status is controlled by the worst index status.

So the cluster's health is determined by the worst index which again is determined by the worst shard. So if the worst index is missing a replica it is yellow, which means the cluster is in yellow. But if the worst index is missing a primary, which can happen if you stop two data nodes with one of the nodes holding the primary and the other node the replica shard, then that index is in a red state which means the cluster is also in a red state.

Notice that the number of nodes has nothing to do with how the state of the cluster is computed, only the shards. So as long as you keep the shards well distributed your cluster will stay green even if you have stopped one or more nodes :slight_smile:

Hi Rostad,

Thanks for your response !

could you please go through my current elasticsearch.yml configuration and feedback if any changes is required.

Regards,
Santosh

It's hard to give a good answer as I don't know your use cases, your hardware and CPU specs or even which Elasticsearch version you're using. But in general:

  • 3 master eligible nodes are sufficient, as that is the minimum to find quorum during master election. So i would change one of the master eligible nodes to be a data node (node.data; true) and set discovery.zen.minimum_master_nodes: 3 in the elasticsearch.yml files.
  • I haven't set bootstrap.memory_lock: true in any of my clusters so I have no experience with this setting, but be aware of this warning in the official docs that mlockall might cause the JVM or shell session to exit if it tries to allocate more memory than is available.
  • The high and low disk watermarks depends on how much disk space you have on your data nodes and on your use cases. For me it's more natural to think percentage than GB, but that's just a matter of preference as I always try to keep the disk usage below 75% on my data nodes, in case I need some extra space for re-indexing or if one of the data nodes falls out of the cluster and its shards get relocated to the other data nodes.

By the way, I think you've got the low, high and flood_stage watermarks backwards - the values should be low < high < flood_stage since the low watermark marks when the data node won't accept more shards, the high watermark marks when the data node will start to move away shards to free space and the flood_stage watermark marks a critically full disk (95% by default) when Elasticsearch will mark indices as read-only to stop more data from being indexed on that node.

For me the default watermark levels, 85% for low, 90% for high and 95% for flood_stage, are usually good enough so I rarely change these in my elasticsearch.yml files.

I hope this helps you configure your cluster. Good luck!

1 Like

Reading the documentation one more time I see that I was wrong here, if you give the watermark level in GB it's how much disk space you have left. So you're right :slight_smile:

But I am slightly puzzled why the watermark settings differ if you specify percentage and GB:

  • cluster.routing.allocation.disk.watermark.low: 85% kicks in when you have used more than 85% of the disk.
  • cluster.routing.allocation.disk.watermark.low: "20gb" kicks in when you have less than 20 GB free disk left.

In my head this is very puzzling and makes it hard to switch between percentage and GB.

Sorry about the confusion.

Hi Rostad,

Thanks for your response again !

However I was concerned about "Discovery' part which you have answered already.

storage part you can ignore at this moment :slight_smile:

Regards,
Santosh

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.