Stats all received computing cluster info and notifying listeners – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.12-8.9

Briefly, this error occurs when Elasticsearch is gathering statistics about the cluster and notifying listeners about the changes. It’s not an error but an informational message indicating that the cluster state has been updated. If you’re seeing this message frequently, it might be due to frequent changes in your cluster. To resolve this, you can reduce the frequency of changes in your cluster, optimize your cluster configuration, or adjust the logging level to filter out these informational messages.

This guide will help you check for common problems that cause the log ” stats all received; computing cluster info and notifying listeners ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: listeners, cluster.

Log Context

Log “stats all received; computing cluster info and notifying listeners” classname is InternalClusterInfoService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

            }; fetchRefs.acquire()));
        }

        private void callListeners() {
            try {
                logger.trace("stats all received; computing cluster info and notifying listeners");
                final ClusterInfo clusterInfo = getClusterInfo();
                boolean anyListeners = false;
                for (final Consumer listener : listeners) {
                    anyListeners = true;
                    try {

 

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?