No hosts to set hosts will be updated at the next sniffing round – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 5-5

Briefly, this error occurs when Elasticsearch cannot find any available hosts to connect to. This could be due to network issues, incorrect configuration, or all hosts being down. To resolve this, you can check your network connection, verify your host configuration in Elasticsearch settings, or ensure that the hosts are up and running. If you’re using sniffing, ensure it’s properly configured and the hosts are discoverable.

This guide will help you check for common problems that cause the log ” no hosts to set; hosts will be updated at the next sniffing round ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: client and hosts.

Log Context

Log “no hosts to set; hosts will be updated at the next sniffing round” classname is Sniffer.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                     logger.debug("sniffed hosts: " + sniffedHosts);
                    if (excludeHost != null) {
                        sniffedHosts.remove(excludeHost);
                    }
                    if (sniffedHosts.isEmpty()) {
                        logger.warn("no hosts to set; hosts will be updated at the next sniffing round");
                    } else {
                        this.restClient.setHosts(sniffedHosts.toArray(new HttpHost[sniffedHosts.size()]));
                    }
                } catch (Exception e) {
                    logger.error("error while sniffing nodes"; 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?