opensearch-project/OpenSearch

[Remote Translog] Download Translog files concurrently

Open

#10,826 创建于 2023年10月22日

在 GitHub 查看
 (7 评论) (0 反应) (1 负责人)Java (1,505 fork)batch import
Storage:Remoteenhancementgood first issue

仓库指标

Star
 (8,123 star)
PR 合并指标
 (平均合并 5天 9小时) (30 天内合并 266 个 PR)

描述

In failover/primary relocations, we download translog from remote. We need to make it concurrent (still bounded) on a separate threadpool, may be translog_transfer to make that faster . We can use concurrent segment download as a prior work to do the same.

Code pointer : https://github.com/opensearch-project/OpenSearch/blob/main/server/src/main/java/org/opensearch/index/translog/RemoteFsTranslog.java#L205

Concurrent Segment download : https://github.com/opensearch-project/OpenSearch/pull/10519

贡献者指南