Failed to send rejoin request to – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-6.8

Briefly, this error occurs when a node in Elasticsearch cluster fails to rejoin after a network partition or a restart. This could be due to version incompatibility, network issues, or configuration problems. To resolve this, ensure all nodes are running compatible versions of Elasticsearch. Check your network connectivity and firewall settings to ensure nodes can communicate. Lastly, verify your cluster settings, particularly discovery and cluster initial master nodes settings.

This guide will help you check for common problems that cause the log ” Failed to send rejoin request to [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: discovery and request.

Log Context

Log “Failed to send rejoin request to [{}]” classname is ZenDiscovery.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                     new RejoinClusterRequest(localClusterState.nodes().getLocalNodeId());
                    new EmptyTransportResponseHandler(ThreadPool.Names.SAME) {

                    
Override
                    public void handleException(TransportException exp) {
                        logger.warn(() -> new ParameterizedMessage("failed to send rejoin request to [{}]"; otherMaster); exp);
                    }
                });
            } catch (Exception e) {
                logger.warn(() -> new ParameterizedMessage("failed to send rejoin request to [{}]"; otherMaster); 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?