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
Copy file name to clipboardExpand all lines: doc/KafkaClientConfiguration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,11 @@ CLIENT_ID | Kafka Producer's ID string
28
28
ACKS | How many partition replicas must receive the record before the producer can consider the write successful | 0, 1, all(-1) | all
29
29
QUEUE_BUFFERING_MAX_MESSAGES | Maximum number of messages allowed on the producer queue | Integer[1, 10000000] | 100000
30
30
QUEUE_BUFFERING_MAX_KBYTES | Maximum total message size sum allowed on the producer queue | Integer[1, INT_MAX] | 0x100000 (1GB)
31
-
LINGER_MS | Delay in milliseconds to wait before constructing messages batches to transmit to brokers | Double[0, 900000.0] | 0 (KafkaSyncProducer);<br />0.5 (KafkaAsyncProducer)
31
+
LINGER_MS | Delay in milliseconds to wait before constructing messages batches to transmit to brokers | Double[0, 900000.0] | 0 (KafkaSyncProducer);<br />5 (KafkaAsyncProducer)
32
32
BATCH_NUM_MESSAGES | Maximum number of messages batched in one messageSet | Integer[1, 1000000] | 10000
MESSAGE_TIMEOUT_MS | This value is enforced locally and limits the time a produced message waits for successful delivery | Integer[0, INT32_MAX] | 300000
35
-
REQUEST_TIMEOUT_MS | This value is only enforced by the brokers and relies on `ACKS` being non-zero;<br /> It indicates how long the leading broker should wait for in-sync replicas to acknowledge the message. | Integer[1, 900000] | 5000
35
+
REQUEST_TIMEOUT_MS | This value is only enforced by the brokers and relies on `ACKS` being non-zero;<br /> It indicates how long the leading broker should wait for in-sync replicas to acknowledge the message. | Integer[1, 900000] | 30000
36
36
PARTITIONER | The default partitioner for a ProducerRecord (with no partition assigned).<br />Note: partitioners with postfix `_random` mean `ProducerRecord`s with empty key are randomly partitioned. | random,<br />consistent, consistent_random,<br />murmur2, murmur2_random,<br />fnv1a, fnv1a_random | murmur2_random
37
37
MAX_IN_FLIGHT | Maximum number of in-flight requests per broker connection | Integer[1, 1000000] | 1000000 (while `enable.idempotence`=false);<br />5 (while `enable.idempotence`=true)
38
38
ENABLE_IDEMPOTENCE | This feature ensures that messages are successfully sent exactly once and in the original order | true, false | false
0 commit comments