You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The name of follower index. The template {{leader_index}} can be used to derive the name of the follower index from the name of the leader index. When following a data stream, use {{leader_index}}; CCR does not support changes to the names of a follower data stream’s backing indices.
47
+
*/
38
48
follow_index_pattern?: IndexPattern
49
+
/**
50
+
* An array of simple index patterns to match against indices in the remote cluster specified by the remote_cluster field.
51
+
*/
39
52
leader_index_patterns?: IndexPatterns
40
-
/** @server_default 12 */
53
+
/**
54
+
* An array of simple index patterns that can be used to exclude indices from being auto-followed. Indices in the remote cluster whose names are matching one or more leader_index_patterns and one or more leader_index_exclusion_patterns won’t be followed.
55
+
*/
56
+
leader_index_exclusion_patterns?: IndexPatterns
57
+
/**
58
+
* The maximum number of outstanding reads requests from the remote cluster.
59
+
* @server_default 12
60
+
*/
41
61
max_outstanding_read_requests?: integer
62
+
/**
63
+
* Settings to override from the leader index. Note that certain settings can not be overrode (e.g., index.number_of_shards).
64
+
*/
42
65
settings?: Dictionary<string,UserDefinedValue>
43
-
/** @server_default 9 */
66
+
/**
67
+
* The maximum number of outstanding reads requests from the remote cluster.
68
+
* @server_default 9
69
+
*/
44
70
max_outstanding_write_requests?: integer
45
-
/** @server_default 1m */
71
+
/**
72
+
* The maximum time to wait for new operations on the remote cluster when the follower index is synchronized with the leader index. When the timeout has elapsed, the poll for operations will return to the follower so that it can update some statistics. Then the follower will immediately attempt to read from the leader again.
73
+
* @server_default 1m
74
+
*/
46
75
read_poll_timeout?: Time
47
-
/** @server_default 5120 */
76
+
/**
77
+
* The maximum number of operations to pull per read from the remote cluster.
78
+
* @server_default 5120
79
+
*/
48
80
max_read_request_operation_count?: integer
49
-
/** @server_default 32mb */
81
+
/**
82
+
* The maximum size in bytes of per read of a batch of operations pulled from the remote cluster.
83
+
* @server_default 32mb
84
+
*/
50
85
max_read_request_size?: ByteSize
51
-
/** @server_default 500ms */
86
+
/**
87
+
* The maximum time to wait before retrying an operation that failed exceptionally. An exponential backoff strategy is employed when retrying.
88
+
* @server_default 500ms
89
+
*/
52
90
max_retry_delay?: Time
53
-
/** @server_default 2147483647 */
91
+
/**
92
+
* The maximum number of operations that can be queued for writing. When this limit is reached, reads from the remote cluster will be deferred until the number of queued operations goes below the limit.
93
+
* @server_default 2147483647
94
+
*/
54
95
max_write_buffer_count?: integer
55
-
/** @server_default 512mb */
96
+
/**
97
+
* The maximum total bytes of operations that can be queued for writing. When this limit is reached, reads from the remote cluster will be deferred until the total bytes of queued operations goes below the limit.
98
+
* @server_default 512mb
99
+
*/
56
100
max_write_buffer_size?: ByteSize
57
-
/** @server_default 5120 */
101
+
/**
102
+
* The maximum number of operations per bulk write request executed on the follower.
103
+
* @server_default 5120
104
+
*/
58
105
max_write_request_operation_count?: integer
59
-
/** @server_default 9223372036854775807b */
106
+
/**
107
+
* The maximum total bytes of operations per bulk write request executed on the follower.
0 commit comments