原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/ccr-post-pause-follow.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/ccr-post-pause-follow.html
本地英文版地址: ../en/ccr-post-pause-follow.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
Pause follower APIedit
Pauses a follower index.
Requestedit
POST /<follower_index>/_ccr/pause_follow
Prerequisitesedit
-
If the Elasticsearch security features are enabled, you must have
manage_ccr
cluster privileges on the cluster that contains the follower index. For more information, see Security privileges.
Descriptionedit
This API pauses a follower index. When this API returns, the follower index will not fetch any additional operations from the leader index. You can resume following with the resume follower API. Pausing and resuming a follower index can be used to change the configuration of the following task.
Path parametersedit
-
<follower_index>
- (Required, string) The name of the follower index.
Examplesedit
This example pauses a follower index named follower_index
:
POST /follower_index/_ccr/pause_follow
The API returns the following result:
{ "acknowledged" : true }