–> failed fetching frozen cache info from discoveryNode – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 8.3-8.9

Briefly, this error occurs when Elasticsearch is unable to retrieve frozen cache information from a discovery node. This could be due to network issues, node unavailability, or misconfiguration. To resolve this, you can check the network connectivity between nodes, ensure the discovery node is up and running, and verify the configuration settings. If the issue persists, consider restarting the Elasticsearch cluster or increasing the timeout settings.

This guide will help you check for common problems that cause the log ” –> failed fetching frozen cache info from [” + discoveryNode + “] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, discovery, cache, node.

Log Context

Log “–> failed fetching frozen cache info from [” + discoveryNode + “]” classname is FrozenCacheInfoService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

            );
        }

        @Override
        public void onFailure(Exception e) {
            logger.debug(() -> "--> failed fetching frozen cache info from [" + discoveryNode + "]"; e);
            // Failed even to execute the nodes info action; just give up
            updateEntry(NodeState.FAILED);
        }

        private void retryOrRecordFailure(Exception e) {

 

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?