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;
[ratemypost]