我有一个名为myconsumergroup的消费者群体,在运行时出现:
bin/kafka-consumer-groups.sh --zookeeper zookeeper:2181 --list
> myconsumergroup
我很确定我提交了一个补偿。我希望通过运行此命令可以检索此偏移量:
bin/kafka-consumer-groups.sh --zookeeper zookeeper:2181 --describe --group myconsumergroup
但相反,我得到了令人困惑的输出:
No topic available for consumer group provided
GROUP TOPIC PARTITION CURRENT-OFFSET LOG-END-OFFSET LAG OWNER
有人可以解释为什么我没有检索myconsumergroup的当前偏移量吗?
注意:有关详细信息,我在我的NodeJS应用程序中创建了我的消费者,如下所示:
new Consumer(
client,
[
{topic}
],
{
groupId:'myconsumergroup'
}
)
Kafka客户端的创建方式如下:
const client = new kafkanode.Client('localhost:2181', 'myservice');