What is the correct configuration in the latest Kafka for what "queue.buffering.max.ms" was originally suggested?

The most recent apache Kafka docs ( https://kafka.apache.org/documentation ) state: β€œWhen events enter a queue, they are buffered in the queue, while either queue.time

or batch.size

.

However, org.apache.kafka.clients.producer.ProducerConfig

there is no configuration item queue.time

. The closest possible configuration item in the latest version of Kafka does linger.ms

not seem to provide the same functionality. The original configuration for this behavior was previously queue.buffering.max.ms

, but is now deprecated.

What is the correct config element in the latest Kafka it was queue.buffering.max.ms

originally provided for?

+3


source to share





All Articles