如何对 Elasticsearch 单个索引进行备份

如何对 Elasticsearch 单个索引进行备份

有人能指导我如何在 elasticsearch 中进行单索引备份吗?当我搜索这个时,我得到了所有用于拍摄完整快照的命令。

答案1

默认情况下,会创建集群中所有打开和已启动索引的快照。可以通过在快照请求正文中指定索引列表来更改此行为。

PUT /_snapshot/my_backup/snapshot_2?wait_for_completion=true
{
  "indices": "index_1,index_2",
  "ignore_unavailable": true,
  "include_global_state": false
}

相关内容