New used memory from field would be larger than configured breaker breaking – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 2.3-2.3

Briefly, this error occurs when the Elasticsearch’s JVM heap memory usage exceeds the limit set by the circuit breaker. The circuit breaker is a mechanism to prevent OutOfMemory errors by stopping operations that require large amounts of memory. To resolve this issue, you can either increase the JVM heap size, adjust the circuit breaker limit, optimize your queries to use less memory, or add more nodes to your Elasticsearch cluster to distribute the load. However, increasing JVM heap size should be done cautiously as it may lead to longer garbage collection times.

This guide will help you check for common problems that cause the log ” New used memory {} [{}] from field [{}] would be larger than configured breaker: {} [{}]; breaking ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: breaker, circuit and memory.

Log Context

Log “New used memory {} [{}] from field [{}] would be larger than configured breaker: {} [{}]; breaking” classname is MemoryCircuitBreaker.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

new ByteSizeValue(bytes); label; new ByteSizeValue(newUsed);
                        memoryBytesLimit; new ByteSizeValue(memoryBytesLimit);
                        newUsedWithOverhead; new ByteSizeValue(newUsedWithOverhead));
            }
            if (memoryBytesLimit > 0 && newUsedWithOverhead > memoryBytesLimit) {
                logger.warn("New used memory {} [{}] from field [{}] would be larger than configured breaker: {} [{}]; breaking";
                        newUsedWithOverhead; new ByteSizeValue(newUsedWithOverhead); label;
                        memoryBytesLimit; new ByteSizeValue(memoryBytesLimit));
                circuitBreak(label; newUsedWithOverhead);
            }
            // Attempt to set the new used value; but make sure it hasn't changed

 

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?