Remote node is build of version but this node is build of version – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.11-7.15

Briefly, this error occurs when there is a version mismatch between the nodes in an Elasticsearch cluster. This can happen if you’ve upgraded some nodes but not others, or if you’re trying to connect nodes from different versions. To resolve this issue, you can either upgrade all nodes to the same version or downgrade the nodes to match the version of the rest of the cluster. It’s important to ensure compatibility across all nodes in the cluster for optimal performance and stability.

This guide will help you check for common problems that cause the log ” remote node [{}] is build [{}] of version [{}] but this node is build [{}] of version [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: node, version.

Log Context

Log “remote node [{}] is build [{}] of version [{}] but this node is build [{}] of version [{}] ” classname is TransportService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                    }
                }

                if (isIncompatibleBuild(version; buildHash; requireCompatibleBuild)) {
                    if (PERMIT_HANDSHAKES_FROM_INCOMPATIBLE_BUILDS) {
                        logger.warn("remote node [{}] is build [{}] of version [{}] but this node is build [{}] of version [{}] " +
                                        "which may not be compatible; remove system property [{}] to resolve this warning";
                                discoveryNode; buildHash; version; Build.CURRENT.hash(); Version.CURRENT;
                                PERMIT_HANDSHAKES_FROM_INCOMPATIBLE_BUILDS_KEY);
                    } else {
                        throw new IllegalArgumentException("remote node [" + discoveryNode + "] is build [" + buildHash +

 

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?