Different disk sizes

Hello ES community,

I have a question regarding different disk sizes on data-nodes in a elasticsearch-cluster.
Let's say I have 8 data nodes and all of then have different disk sizes:
1: 300GB
2: 300GB
3: 300GB
4: 500GB
5: 500GB
6: 500GB
7: 500GB
8: 500GB

How Elasticsearch will handle this situation when the nodes with 300GB get the watermark reached?
Will the cluster be able to use the 500GB disks until the watermark or will they be filled like a 300GB disk?

watermark.low and watermark.high have the default values.

Thanks and BR

The disk watermarks are either percentages of the total size of the disk, or else they are an amount of free space. In either case, a larger disk will have more space below each watermark.

However the shard allocator assumes that all nodes are equivalent, so it might make poor allocation decisions if this isn't the case.

1 Like

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