Resumes a follower index that has been paused Added in 6.5.0
Path parameters
-
The name of the follow index to resume following.
Body
-
max_read_request_size string
-
max_retry_delay string
A duration. Units can be
nanos
,micros
,ms
(milliseconds),s
(seconds),m
(minutes),h
(hours) andd
(days). Also accepts "0" without a unit and "-1" to indicate an unspecified value. -
max_write_buffer_count number
-
max_write_buffer_size string
-
max_write_request_size string
-
read_poll_timeout string
A duration. Units can be
nanos
,micros
,ms
(milliseconds),s
(seconds),m
(minutes),h
(hours) andd
(days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
POST /{index}/_ccr/resume_follow
curl \
-X POST http://api.example.com/{index}/_ccr/resume_follow \
-H "Content-Type: application/json" \
-d '{"max_outstanding_read_requests":42.0,"max_outstanding_write_requests":42.0,"max_read_request_operation_count":42.0,"max_read_request_size":"string","max_retry_delay":"string","max_write_buffer_count":42.0,"max_write_buffer_size":"string","max_write_request_operation_count":42.0,"max_write_request_size":"string","read_poll_timeout":"string"}'
Request examples
{
"max_outstanding_read_requests": 42.0,
"max_outstanding_write_requests": 42.0,
"max_read_request_operation_count": 42.0,
"max_read_request_size": "string",
"max_retry_delay": "string",
"max_write_buffer_count": 42.0,
"max_write_buffer_size": "string",
"max_write_request_operation_count": 42.0,
"max_write_request_size": "string",
"read_poll_timeout": "string"
}
Response examples (200)
{
"acknowledged": true
}