恢复自动追踪模式 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 }