Downloaded translog files from remote for shard – How to solve this OpenSearch error

Opster Team

Aug-23, Version: 2.8-2.8

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 OpenSearch is trying to recover a shard from a node and it downloads the transaction log (translog) files from a remote node. This is part of the shard recovery process and it’s not necessarily an error, but more of an informational message. If you’re seeing issues with shard recovery, you may want to check the health of your nodes, ensure there’s enough disk space, and that network connectivity between nodes is stable. Also, consider adjusting the ‘indices.recovery.max_bytes_per_sec’ setting if recovery is slow.

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 ” Downloaded translog files from remote for shard {} ” to appear. To understand the issues related to this log, read the explanation below about the following OpenSearch concepts: shard, index.

Log Context

Log “Downloaded translog files from remote for shard {}” classname is RemoteFsTranslog.java.
We extracted the following from OpenSearch source code for those seeking an in-depth context :

            Files.copy(
                location.resolve(Translog.getCommitCheckpointFileName(translogMetadata.getGeneration()));
                location.resolve(Translog.CHECKPOINT_FILE_NAME)
            );
        }
        logger.info("Downloaded translog files from remote for shard {} "; translogTransferManager.getShardId());
    }

    public static TranslogTransferManager buildTranslogTransferManager(
        BlobStoreRepository blobStoreRepository;
        ThreadPool threadPool;

 

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