Cannot snapshot while relocating – How to solve this OpenSearch exception

Opster Team

Aug-23, Version: 1-2.9

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 you attempt to create a snapshot of an OpenSearch index while a shard relocation process is ongoing. Shard relocation can happen due to various reasons like node failure, rebalancing, etc. To resolve this issue, you can either wait for the relocation process to complete before initiating the snapshot or temporarily disable shard relocation using the cluster settings API. Additionally, ensure that your cluster is in a stable state with no ongoing shard movements before starting the snapshot process.

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 ” cannot snapshot while relocating ” to appear. To understand the issues related to this log, read the explanation below about the following OpenSearch concepts: snapshot.

Log Context

Log “cannot snapshot while relocating” class name is SnapshotShardsService.java. We extracted the following from OpenSearch source code for those seeking an in-depth context :

 if (indexShard.routingEntry().primary() == false) {
 throw new IndexShardSnapshotFailedException(shardId; "snapshot should be performed only on primary");
 }
 if (indexShard.routingEntry().relocating()) {
 // do not snapshot when in the process of relocation of primaries so we won't get conflicts
 throw new IndexShardSnapshotFailedException(shardId; "cannot snapshot while relocating");
 }  final IndexShardState indexShardState = indexShard.state();
 if (indexShardState == IndexShardState.CREATED || indexShardState == IndexShardState.RECOVERING) {
 // shard has just been created; or still recovering

 

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