Not updating settings for the index because upgraded of some primary shards failed – expected received – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 2.3-2.3

Briefly, this error occurs when Elasticsearch attempts to update settings for an index but fails due to some primary shards not being upgraded successfully. This could be due to network issues, disk space problems, or a faulty node. To resolve this, you can try reindexing your data, checking your network connectivity, ensuring you have sufficient disk space, or identifying and fixing any issues with your nodes. Additionally, ensure that your Elasticsearch version supports the settings you’re trying to update.

This guide will help you check for common problems that cause the log ” Not updating settings for the index [{}] because upgraded of some primary shards failed – expected[{}]; received[{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: admin, index, indices, settings and shards.

Log Context

Log “Not updating settings for the index [{}] because upgraded of some primary shards failed – expected[{}]; received[{}]” classname is TransportUpgradeAction.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

Integer primaryCount = successfulPrimaryShards.get(index);
            int expectedPrimaryCount = metaData.index(index).getNumberOfShards();
            if (primaryCount == metaData.index(index).getNumberOfShards()) {
                updatedVersions.put(index; new Tuple(versionEntry.getValue().v1(); versionEntry.getValue().v2().toString()));
            } else {
                logger.warn("Not updating settings for the index [{}] because upgraded of some primary shards failed - expected[{}]; received[{}]"; index;
                        expectedPrimaryCount; primaryCount == null ? 0 : primaryCount);
            }
        }

        return new UpgradeResponse(updatedVersions; totalShards; successfulShards; failedShards; shardFailures);

 

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?