|
| 1 | +[role="xpack"] |
| 2 | +[testenv="platinum"] |
1 | 3 | `max_read_request_operation_count`:: |
2 | 4 | (integer) the maximum number of operations to pull per read from the remote |
3 | 5 | cluster |
|
41 | 43 | remote cluster when the follower index is synchronized with the leader index; |
42 | 44 | when the timeout has elapsed, the poll for operations will return to the |
43 | 45 | follower so that it can update some statistics, and then the follower will |
44 | | - immediately attempt to read from the leader again |
| 46 | + immediately attempt to read from the leader again |
| 47 | + |
| 48 | +===== Default values |
| 49 | + |
| 50 | +////////////////////////// |
| 51 | +
|
| 52 | +[source,js] |
| 53 | +-------------------------------------------------- |
| 54 | +PUT /follower_index/_ccr/follow |
| 55 | +{ |
| 56 | + "remote_cluster" : "remote_cluster", |
| 57 | + "leader_index" : "leader_index" |
| 58 | +} |
| 59 | +-------------------------------------------------- |
| 60 | +// CONSOLE |
| 61 | +// TESTSETUP |
| 62 | +// TEST[setup:remote_cluster_and_leader_index] |
| 63 | +
|
| 64 | +[source,js] |
| 65 | +-------------------------------------------------- |
| 66 | +POST /follower_index/_ccr/pause_follow |
| 67 | +-------------------------------------------------- |
| 68 | +// CONSOLE |
| 69 | +// TEARDOWN |
| 70 | +
|
| 71 | +[source,js] |
| 72 | +-------------------------------------------------- |
| 73 | +GET /follower_index/_ccr/info?filter_path=follower_indices.parameters |
| 74 | +-------------------------------------------------- |
| 75 | +// CONSOLE |
| 76 | +
|
| 77 | +////////////////////////// |
| 78 | + |
| 79 | +The following output from the follow info api describes all the default |
| 80 | +values for the above described index follow request parameters: |
| 81 | + |
| 82 | +[source,js] |
| 83 | +-------------------------------------------------- |
| 84 | +{ |
| 85 | + "follower_indices" : [ |
| 86 | + { |
| 87 | + "parameters" : { |
| 88 | + "max_read_request_operation_count" : 5120, |
| 89 | + "max_read_request_size" : "32mb", |
| 90 | + "max_outstanding_read_requests" : 12, |
| 91 | + "max_write_request_operation_count" : 5120, |
| 92 | + "max_write_request_size" : "9223372036854775807b", |
| 93 | + "max_outstanding_write_requests" : 9, |
| 94 | + "max_write_buffer_count" : 2147483647, |
| 95 | + "max_write_buffer_size" : "512mb", |
| 96 | + "max_retry_delay" : "500ms", |
| 97 | + "read_poll_timeout" : "1m" |
| 98 | + } |
| 99 | + } |
| 100 | + ] |
| 101 | +} |
| 102 | +
|
| 103 | +-------------------------------------------------- |
| 104 | +// TESTRESPONSE |
0 commit comments