High disk watermark no longer exceeded on but low disk watermark is still exceeded – How to solve this OpenSearch error

Opster Team

Aug-23, Version: 1-1.1

Before you dig into reading this guide, have you tried asking OpsGPT what this log means? You’ll receive a customized analysis of your log.

Try OpsGPT now for step-by-step guidance and tailored insights into your OpenSearch operation.

Briefly, this error occurs when the disk usage on your OpenSearch node drops below the high disk watermark but is still above the low disk watermark. This means that your node is still at risk of running out of disk space. To resolve this issue, you can either increase the disk space available to your OpenSearch node, delete unnecessary data, or adjust the disk watermark thresholds to a level that is more suitable for your use case. It’s important to monitor disk usage to prevent data loss or disruption of service.

For a complete solution to your to your search operation, try for free AutoOps for Elasticsearch & OpenSearch . With AutoOps and Opster’s proactive support, you don’t have to worry about your search operation – we take charge of it. Get improved performance & stability with less hardware.

This guide will help you check for common problems that cause the log ” high disk watermark [{}] no longer exceeded on {}; but low disk watermark [{}] is still exceeded ” to appear. To understand the issues related to this log, read the explanation below about the following OpenSearch concepts: allocation, routing, cluster.

Log Context

Log “high disk watermark [{}] no longer exceeded on {}; but low disk watermark [{}] is still exceeded” classname is DiskThresholdMonitor.java.
We extracted the following from OpenSearch source code for those seeking an in-depth context :

                if (wasUnderLowThreshold) {
                    logger.info("low disk watermark [{}] exceeded on {}; replicas will not be assigned to this node";
                        diskThresholdSettings.describeLowThreshold(); usage);
                } else if (wasOverHighThreshold) {
                    logger.info("high disk watermark [{}] no longer exceeded on {}; but low disk watermark [{}] is still exceeded";
                        diskThresholdSettings.describeHighThreshold(); usage; diskThresholdSettings.describeLowThreshold());
                }

            } else {

 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Get expert answers on Elasticsearch/OpenSearch