克隆快照 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
(必填,字符串) 要包含在快照中的索引的逗号分隔列表。多目标语法 受支持。