@@ -77,39 +77,39 @@ https://kafka.apache.org/documentation for more details.
77
77
[cols="<,<,<",options="header",]
78
78
|=======================================================================
79
79
|Setting |Input type|Required
80
- | <<plugins-{type}s-{plugin}-auto_commit_interval_ms>> |<<string,string >>|No
80
+ | <<plugins-{type}s-{plugin}-auto_commit_interval_ms>> |<<number,number >>|No
81
81
| <<plugins-{type}s-{plugin}-auto_offset_reset>> |<<string,string>>|No
82
82
| <<plugins-{type}s-{plugin}-bootstrap_servers>> |<<string,string>>|No
83
83
| <<plugins-{type}s-{plugin}-check_crcs>> |<<string,string>>|No
84
84
| <<plugins-{type}s-{plugin}-client_id>> |<<string,string>>|No
85
- | <<plugins-{type}s-{plugin}-connections_max_idle_ms>> |<<string,string >>|No
85
+ | <<plugins-{type}s-{plugin}-connections_max_idle_ms>> |<<number,number >>|No
86
86
| <<plugins-{type}s-{plugin}-consumer_threads>> |<<number,number>>|No
87
87
| <<plugins-{type}s-{plugin}-decorate_events>> |<<boolean,boolean>>|No
88
88
| <<plugins-{type}s-{plugin}-enable_auto_commit>> |<<string,string>>|No
89
89
| <<plugins-{type}s-{plugin}-exclude_internal_topics>> |<<string,string>>|No
90
- | <<plugins-{type}s-{plugin}-fetch_max_bytes>> |<<string,string >>|No
91
- | <<plugins-{type}s-{plugin}-fetch_max_wait_ms>> |<<string,string >>|No
92
- | <<plugins-{type}s-{plugin}-fetch_min_bytes>> |<<string,string >>|No
90
+ | <<plugins-{type}s-{plugin}-fetch_max_bytes>> |<<number,number >>|No
91
+ | <<plugins-{type}s-{plugin}-fetch_max_wait_ms>> |<<number,number >>|No
92
+ | <<plugins-{type}s-{plugin}-fetch_min_bytes>> |<<number,number >>|No
93
93
| <<plugins-{type}s-{plugin}-group_id>> |<<string,string>>|No
94
- | <<plugins-{type}s-{plugin}-heartbeat_interval_ms>> |<<string,string >>|No
94
+ | <<plugins-{type}s-{plugin}-heartbeat_interval_ms>> |<<number,number >>|No
95
95
| <<plugins-{type}s-{plugin}-jaas_path>> |a valid filesystem path|No
96
96
| <<plugins-{type}s-{plugin}-kerberos_config>> |a valid filesystem path|No
97
97
| <<plugins-{type}s-{plugin}-key_deserializer_class>> |<<string,string>>|No
98
- | <<plugins-{type}s-{plugin}-max_partition_fetch_bytes>> |<<string,string >>|No
99
- | <<plugins-{type}s-{plugin}-max_poll_interval_ms>> |<<string,string >>|No
100
- | <<plugins-{type}s-{plugin}-max_poll_records>> |<<string,string >>|No
101
- | <<plugins-{type}s-{plugin}-metadata_max_age_ms>> |<<string,string >>|No
98
+ | <<plugins-{type}s-{plugin}-max_partition_fetch_bytes>> |<<number,number >>|No
99
+ | <<plugins-{type}s-{plugin}-max_poll_interval_ms>> |<<number,number >>|No
100
+ | <<plugins-{type}s-{plugin}-max_poll_records>> |<<number,number >>|No
101
+ | <<plugins-{type}s-{plugin}-metadata_max_age_ms>> |<<number,number >>|No
102
102
| <<plugins-{type}s-{plugin}-partition_assignment_strategy>> |<<string,string>>|No
103
103
| <<plugins-{type}s-{plugin}-poll_timeout_ms>> |<<number,number>>|No
104
- | <<plugins-{type}s-{plugin}-receive_buffer_bytes>> |<<string,string >>|No
105
- | <<plugins-{type}s-{plugin}-reconnect_backoff_ms>> |<<string,string >>|No
106
- | <<plugins-{type}s-{plugin}-request_timeout_ms>> |<<string,string >>|No
107
- | <<plugins-{type}s-{plugin}-retry_backoff_ms>> |<<string,string >>|No
104
+ | <<plugins-{type}s-{plugin}-receive_buffer_bytes>> |<<number,number >>|No
105
+ | <<plugins-{type}s-{plugin}-reconnect_backoff_ms>> |<<number,number >>|No
106
+ | <<plugins-{type}s-{plugin}-request_timeout_ms>> |<<number,number >>|No
107
+ | <<plugins-{type}s-{plugin}-retry_backoff_ms>> |<<number,number >>|No
108
108
| <<plugins-{type}s-{plugin}-sasl_kerberos_service_name>> |<<string,string>>|No
109
109
| <<plugins-{type}s-{plugin}-sasl_mechanism>> |<<string,string>>|No
110
110
| <<plugins-{type}s-{plugin}-security_protocol>> |<<string,string>>, one of `["PLAINTEXT", "SSL", "SASL_PLAINTEXT", "SASL_SSL"]`|No
111
- | <<plugins-{type}s-{plugin}-send_buffer_bytes>> |<<string,string >>|No
112
- | <<plugins-{type}s-{plugin}-session_timeout_ms>> |<<string,string >>|No
111
+ | <<plugins-{type}s-{plugin}-send_buffer_bytes>> |<<number,number >>|No
112
+ | <<plugins-{type}s-{plugin}-session_timeout_ms>> |<<number,number >>|No
113
113
| <<plugins-{type}s-{plugin}-ssl_endpoint_identification_algorithm>> |<<string,string>>|No
114
114
| <<plugins-{type}s-{plugin}-ssl_key_password>> |<<password,password>>|No
115
115
| <<plugins-{type}s-{plugin}-ssl_keystore_location>> |a valid filesystem path|No
@@ -131,8 +131,8 @@ input plugins.
131
131
[id="plugins-{type}s-{plugin}-auto_commit_interval_ms"]
132
132
===== `auto_commit_interval_ms`
133
133
134
- * Value type is <<string,string >>
135
- * Default value is `" 5000" `
134
+ * Value type is <<number,number >>
135
+ * Default value is `5000`
136
136
137
137
The frequency in milliseconds that the consumer offsets are committed to Kafka.
138
138
@@ -184,7 +184,7 @@ a logical application name to be included.
184
184
[id="plugins-{type}s-{plugin}-connections_max_idle_ms"]
185
185
===== `connections_max_idle_ms`
186
186
187
- * Value type is <<string,string >>
187
+ * Value type is <<number,number >>
188
188
* There is no default value for this setting.
189
189
190
190
Close idle connections after the number of milliseconds specified by this config.
@@ -235,7 +235,7 @@ If set to true the only way to receive records from an internal topic is subscri
235
235
[id="plugins-{type}s-{plugin}-fetch_max_bytes"]
236
236
===== `fetch_max_bytes`
237
237
238
- * Value type is <<string,string >>
238
+ * Value type is <<number,number >>
239
239
* There is no default value for this setting.
240
240
241
241
The maximum amount of data the server should return for a fetch request. This is not an
@@ -245,7 +245,7 @@ than this value, the message will still be returned to ensure that the consumer
245
245
[id="plugins-{type}s-{plugin}-fetch_max_wait_ms"]
246
246
===== `fetch_max_wait_ms`
247
247
248
- * Value type is <<string,string >>
248
+ * Value type is <<number,number >>
249
249
* There is no default value for this setting.
250
250
251
251
The maximum amount of time the server will block before answering the fetch request if
@@ -255,7 +255,7 @@ should be less than or equal to the timeout used in `poll_timeout_ms`
255
255
[id="plugins-{type}s-{plugin}-fetch_min_bytes"]
256
256
===== `fetch_min_bytes`
257
257
258
- * Value type is <<string,string >>
258
+ * Value type is <<number,number >>
259
259
* There is no default value for this setting.
260
260
261
261
The minimum amount of data the server should return for a fetch request. If insufficient
@@ -275,7 +275,7 @@ Logstash instances with the same `group_id`
275
275
[id="plugins-{type}s-{plugin}-heartbeat_interval_ms"]
276
276
===== `heartbeat_interval_ms`
277
277
278
- * Value type is <<string,string >>
278
+ * Value type is <<number,number >>
279
279
* There is no default value for this setting.
280
280
281
281
The expected time between heartbeats to the consumer coordinator. Heartbeats are used to ensure
@@ -326,7 +326,7 @@ Java Class used to deserialize the record's key
326
326
[id="plugins-{type}s-{plugin}-max_partition_fetch_bytes"]
327
327
===== `max_partition_fetch_bytes`
328
328
329
- * Value type is <<string,string >>
329
+ * Value type is <<number,number >>
330
330
* There is no default value for this setting.
331
331
332
332
The maximum amount of data per-partition the server will return. The maximum total memory used for a
@@ -338,7 +338,7 @@ to fetch a large message on a certain partition.
338
338
[id="plugins-{type}s-{plugin}-max_poll_interval_ms"]
339
339
===== `max_poll_interval_ms`
340
340
341
- * Value type is <<string,string >>
341
+ * Value type is <<number,number >>
342
342
* There is no default value for this setting.
343
343
344
344
The maximum delay between invocations of poll() when using consumer group management. This places
@@ -350,15 +350,15 @@ The value of the configuration `request_timeout_ms` must always be larger than m
350
350
[id="plugins-{type}s-{plugin}-max_poll_records"]
351
351
===== `max_poll_records`
352
352
353
- * Value type is <<string,string >>
353
+ * Value type is <<number,number >>
354
354
* There is no default value for this setting.
355
355
356
356
The maximum number of records returned in a single call to poll().
357
357
358
358
[id="plugins-{type}s-{plugin}-metadata_max_age_ms"]
359
359
===== `metadata_max_age_ms`
360
360
361
- * Value type is <<string,string >>
361
+ * Value type is <<number,number >>
362
362
* There is no default value for this setting.
363
363
364
364
The period of time in milliseconds after which we force a refresh of metadata even if
@@ -386,15 +386,15 @@ Time kafka consumer will wait to receive new messages from topics
386
386
[id="plugins-{type}s-{plugin}-receive_buffer_bytes"]
387
387
===== `receive_buffer_bytes`
388
388
389
- * Value type is <<string,string >>
389
+ * Value type is <<number,number >>
390
390
* There is no default value for this setting.
391
391
392
392
The size of the TCP receive buffer (SO_RCVBUF) to use when reading data.
393
393
394
394
[id="plugins-{type}s-{plugin}-reconnect_backoff_ms"]
395
395
===== `reconnect_backoff_ms`
396
396
397
- * Value type is <<string,string >>
397
+ * Value type is <<number,number >>
398
398
* There is no default value for this setting.
399
399
400
400
The amount of time to wait before attempting to reconnect to a given host.
@@ -404,7 +404,7 @@ This backoff applies to all requests sent by the consumer to the broker.
404
404
[id="plugins-{type}s-{plugin}-request_timeout_ms"]
405
405
===== `request_timeout_ms`
406
406
407
- * Value type is <<string,string >>
407
+ * Value type is <<number,number >>
408
408
* There is no default value for this setting.
409
409
410
410
The configuration controls the maximum amount of time the client will wait
@@ -415,7 +415,7 @@ retries are exhausted.
415
415
[id="plugins-{type}s-{plugin}-retry_backoff_ms"]
416
416
===== `retry_backoff_ms`
417
417
418
- * Value type is <<string,string >>
418
+ * Value type is <<number,number >>
419
419
* There is no default value for this setting.
420
420
421
421
The amount of time to wait before attempting to retry a failed fetch request
@@ -451,15 +451,15 @@ Security protocol to use, which can be either of PLAINTEXT,SSL,SASL_PLAINTEXT,SA
451
451
[id="plugins-{type}s-{plugin}-send_buffer_bytes"]
452
452
===== `send_buffer_bytes`
453
453
454
- * Value type is <<string,string >>
454
+ * Value type is <<number,number >>
455
455
* There is no default value for this setting.
456
456
457
457
The size of the TCP send buffer (SO_SNDBUF) to use when sending data
458
458
459
459
[id="plugins-{type}s-{plugin}-session_timeout_ms"]
460
460
===== `session_timeout_ms`
461
461
462
- * Value type is <<string,string >>
462
+ * Value type is <<number,number >>
463
463
* There is no default value for this setting.
464
464
465
465
The timeout after which, if the `poll_timeout_ms` is not invoked, the consumer is marked dead
0 commit comments