Failed to apply started shards – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-8.2

Briefly, this error occurs when Elasticsearch is unable to allocate shards to nodes in the cluster due to issues like insufficient resources, network connectivity problems, or configuration errors. To resolve this, you can try increasing the system resources, checking the network connectivity between nodes, or reviewing the shard allocation settings. Also, ensure that the cluster health status is green and not red or yellow, which indicates problems. If the issue persists, you may need to reindex your data or even restart the Elasticsearch cluster.

This guide will help you check for common problems that cause the log ” failed to apply started shards {} ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: shards, cluster, shard.

Log Context

Log “failed to apply started shards {}” classname is ShardStateAction.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                for (final var taskContext : tasksToBeApplied) {
                    taskContext.success(taskContext.getTask().newPublicationListener());
                }
            } catch (Exception e) {
                logger.warn(() -> new ParameterizedMessage("failed to apply started shards {}"; shardRoutingsToBeApplied); e);
                for (final var taskContext : tasksToBeApplied) {
                    taskContext.onFailure(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?