1

我使用 Apache Pulsar Python 客户端连接我的微服务。我想创建 Key_Shared Consumer 这样做:

import pulsar,_pulsar                

client = pulsar.Client('pulsar://localhost:6650')
consumer = client.subscribe('my-topic', 'consume-id',
             consumer_type=_pulsar.ConsumerType.KeyShared)

但我收到以下错误:

AttributeError: type object 'ConsumerType' has no attribute 'KeyShared'

KeyShared 是否已在 Python 客户端中实现?如果是,我该如何使用它?

4

1 回答 1

0

它在 Python 客户端的 2.4.2 中发布。

于 2020-06-04T18:10:45.580 回答