Why GET /<index>/_ccr/stats returns empty result while GET /<index>/_ccr/info returns follower indices

I set up CCR in Elasticsearch 6.8.

I want to list all follower indices with GET my_index/_ccr/stats but it returns
{
"indices" : [ ]
}
while GET my_index/_ccr/info returns
{
"follower_indices" : [
{
"follower_index" : "###",
"remote_cluster" : "###",
"leader_index" : "###",
"status" : "active",
"parameters" : {
"max_read_request_operation_count" : 5120,
"max_write_request_operation_count" : 5120,
"max_outstanding_read_requests" : 12,
"max_outstanding_write_requests" : 9,
"max_read_request_size" : "32mb",
"max_write_request_size" : "9223372036854775807b",
"max_write_buffer_count" : 2147483647,
"max_write_buffer_size" : "512mb",
"max_retry_delay" : "500ms",
"read_poll_timeout" : "1m"
}
}
]
}

Also, GET _ccr/stats returns some indices but this particular is missing.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.