No discovery configuration found will perform best-effort cluster bootstrapping after – How to solve this OpenSearch error

Opster Team

Aug-23, Version: 1-1.1

Before you dig into reading this guide, have you tried asking OpsGPT what this log means? You’ll receive a customized analysis of your log.

Try OpsGPT now for step-by-step guidance and tailored insights into your OpenSearch operation.

Briefly, this error occurs when OpenSearch cannot find a discovery configuration, which is essential for nodes to discover each other and form a cluster. This could be due to misconfiguration or missing settings in the opensearch.yml file. To resolve this, ensure that the discovery.seed_hosts or discovery.seed_providers settings are correctly configured in the opensearch.yml file. Alternatively, you can use the cluster.initial_master_nodes setting to manually list the master-eligible nodes that should be contacted to form a new cluster.

For a complete solution to your to your search operation, try for free AutoOps for Elasticsearch & OpenSearch . With AutoOps and Opster’s proactive support, you don’t have to worry about your search operation – we take charge of it. Get improved performance & stability with less hardware.

This guide will help you check for common problems that cause the log ” no discovery configuration found; will perform best-effort cluster bootstrapping after [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following OpenSearch concepts: cluster, discovery.

Log Context

Log “no discovery configuration found; will perform best-effort cluster bootstrapping after [{}]” classname is ClusterBootstrapService.java.
We extracted the following from OpenSearch source code for those seeking an in-depth context :

        if (transportService.getLocalNode().isMasterNode() == false) {
            return;
        }

        logger.info("no discovery configuration found; will perform best-effort cluster bootstrapping after [{}] " +
            "unless existing master is discovered"; unconfiguredBootstrapTimeout);

        transportService.getThreadPool().scheduleUnlessShuttingDown(unconfiguredBootstrapTimeout; Names.GENERIC; new Runnable() {
            @Override
            public void run() {

 

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?

Get expert answers on Elasticsearch/OpenSearch