如何平衡卡夫卡消费者?

时间:2020-09-08 13:13:27

标签: spring spring-cloud-stream

我在卡夫卡有1个生产者和10个消费者。 如何平衡生产者1分区= 1生产者

我的配置 制片人

cloud:
    stream:
      default:
        content-type: application/json
      bindings:
        TaskIn:
          destination: task.in
          group: task
          producer:
            partitionCount: 10

消费者

  cloud:
    stream:
      default:
        content-type: application/json
      bindings:
        ventuskyTaskIn:
          destination: task.in
          group: service
          consumer:
            partitioned: true
            concurrency: 1

我使用10个消费者,但是1个消费者在重新平衡后使用10个分区

0 个答案:

没有答案