IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Resume auto-follow pattern API
editResume auto-follow pattern API
editResumes an auto-follow pattern.
Request
editPOST /_ccr/auto_follow/<auto_follow_pattern_name>/resume
Prerequisites
edit-
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.
Description
editThis API resumes an auto-follow pattern that has been paused with the pause auto-follow pattern API. When this API returns, the auto-follow pattern will resume configuring following indices for newly created indices on the remote cluster that match its patterns. Remote indices created while the pattern was paused will also be followed, unless they have been deleted or closed in the meantime.
Path parameters
edit-
<auto_follow_pattern_name>
- (Required, string) Specifies the name of the auto-follow pattern to resume.
Examples
editThis example resumes the activity of a paused auto-follow pattern
named my_auto_follow_pattern
:
response = client.ccr.resume_auto_follow_pattern( name: 'my_auto_follow_pattern' ) puts response
POST /_ccr/auto_follow/my_auto_follow_pattern/resume
The API returns the following result:
{ "acknowledged" : true }