取消关注 API
编辑取消关注 API
编辑将跨集群复制的跟随者索引转换为常规索引。
请求
编辑resp = client.ccr.unfollow( index="<follower_index>", ) print(resp)
const response = await client.ccr.unfollow({ index: "<follower_index>", }); console.log(response);
POST /<follower_index>/_ccr/unfollow
描述
编辑此 API 会停止与跟随者索引关联的跟随任务,并删除与跨集群复制相关的索引元数据和设置。这使得该索引可以被视为常规索引。在调用取消关注 API 之前,必须暂停并关闭跟随者索引。
目前,跨集群复制不支持将现有的常规索引转换为跟随者索引。将跟随者索引转换为常规索引是一个不可逆的操作。
路径参数
编辑-
<follower_index>
- (必需,字符串)跟随者索引的名称。
示例
编辑此示例将 follower_index
从跟随者索引转换为常规索引
resp = client.ccr.unfollow( index="follower_index", ) print(resp)
response = client.ccr.unfollow( index: 'follower_index' ) puts response
const response = await client.ccr.unfollow({ index: "follower_index", }); console.log(response);
POST /follower_index/_ccr/unfollow
该 API 返回以下结果
{ "acknowledged" : true }