克隆快照 API

编辑

将部分或全部快照克隆到新的快照中。

resp = client.snapshot.clone(
    repository="my_repository",
    snapshot="source_snapshot",
    target_snapshot="target_snapshot",
    indices="index_a,index_b",
)
print(resp)
response = client.snapshot.clone(
  repository: 'my_repository',
  snapshot: 'source_snapshot',
  target_snapshot: 'target_snapshot',
  body: {
    indices: 'index_a,index_b'
  }
)
puts response
const response = await client.snapshot.clone({
  repository: "my_repository",
  snapshot: "source_snapshot",
  target_snapshot: "target_snapshot",
  indices: "index_a,index_b",
});
console.log(response);
PUT /_snapshot/my_repository/source_snapshot/_clone/target_snapshot
{
  "indices": "index_a,index_b"
}

请求

编辑

PUT /_snapshot/<repository>/<source_snapshot>/_clone/<target_snapshot>

先决条件

编辑
  • 如果启用了 Elasticsearch 安全功能,你必须拥有 manage 集群权限 才能使用此 API。

描述

编辑

克隆快照 API 允许在同一个仓库内创建现有快照的全部或部分副本。

路径参数

编辑
<repository>
(必需,字符串) 源快照和目标快照所属的快照仓库的名称。

查询参数

编辑
master_timeout
(可选,时间单位) 等待主节点的时间。如果主节点在超时过期前不可用,则请求失败并返回错误。默认为 30s。也可以设置为 -1 表示请求永远不应超时。
timeout
(可选,时间单位) 指定等待响应的时间。如果在超时过期前未收到任何响应,则请求失败并返回错误。默认为 30s
indices
(必需,字符串) 要包含在快照中的索引的逗号分隔列表。支持多目标语法