Can not get list of azure nodes Returning empty list of nodes – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-8.9

Briefly, this error occurs when Elasticsearch is unable to retrieve the list of nodes from Azure. This could be due to network connectivity issues, incorrect configuration settings, or Azure service disruptions. To resolve this issue, you can check your network connection, verify your Azure configuration settings, or check Azure service status. Additionally, ensure that your Elasticsearch cluster has the necessary permissions to access Azure resources.

This guide will help you check for common problems that cause the log ” can not get list of azure nodes: [{}]. Returning empty list of nodes. ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: azure, plugins, discovery-azure-classic, discovery.

Log Context

Log “can not get list of azure nodes: [{}]. Returning empty list of nodes.” classname is AzureSeedHostsProvider.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

        } catch (AzureServiceDisableException e) {
            logger.debug("Azure discovery service has been disabled. Returning empty list of nodes.");
            return dynamicHosts;
        } catch (AzureServiceRemoteException e) {
            // We got a remote exception
            logger.warn("can not get list of azure nodes: [{}]. Returning empty list of nodes."; e.getMessage());
            logger.trace("AzureServiceRemoteException caught"; e);
            return dynamicHosts;
        }

        InetAddress ipAddress = null;

 

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?