恢复自动跟踪模式 API
编辑恢复自动跟踪模式 API
编辑恢复跨集群复制的自动跟踪模式。
请求
编辑POST /_ccr/auto_follow/<auto_follow_pattern_name>/resume
描述
编辑此 API 恢复使用暂停自动跟踪模式 API暂停的自动跟踪模式。当此 API 返回时,自动跟踪模式将恢复为远程集群上匹配其模式的新创建索引配置跟踪索引。在模式暂停期间创建的远程索引也将被跟踪,除非在此期间它们已被删除或关闭。
路径参数
编辑-
<auto_follow_pattern_name>
- (必填,字符串) 指定要恢复的自动跟踪模式的名称。
示例
编辑此示例恢复名为my_auto_follow_pattern
的已暂停自动跟踪模式的活动。
resp = client.ccr.resume_auto_follow_pattern( name="my_auto_follow_pattern", ) print(resp)
response = client.ccr.resume_auto_follow_pattern( name: 'my_auto_follow_pattern' ) puts response
const response = await client.ccr.resumeAutoFollowPattern({ name: "my_auto_follow_pattern", }); console.log(response);
POST /_ccr/auto_follow/my_auto_follow_pattern/resume
API 返回以下结果
{ "acknowledged" : true }