Back pressure in Kafka

前端 未结 2 405
走了就别回头了
走了就别回头了 2021-01-12 11:45

I have a situation in Kafka where the producer publishes the messages at a very higher rate than the consumer consumption rate. I have to implement the back pressure impleme

相关标签:
2条回答
  • 2021-01-12 12:14

    Kafka acts as the regulator here. You produce at whatever rate you want to into Kafka, scaling the brokers out to accommodate the ingest rate. You then consume as you want to; Kafka persists the data and tracks the offset of the consumers as they work their way through the data they read.

    0 讨论(0)
  • 2021-01-12 12:15

    You can disable auto-commit by enable.auto.commit=false on consumer and commit only when consumer operation is finished. That way consumer would be slow, but Kafka knows how many messages consumer processed, also configuring poll interval with max.poll.interval.ms and messages to be consumed in each poll with max.poll.records you should be good.

    0 讨论(0)
提交回复
热议问题