Alex Stanovsky
Alex Stanovsky

Reputation: 1366

KafkaSpout (Storm) Doesn't apear in Kafka Manager

I am using KafkaSpout with ZkHosts configuration as described here.

This is how SpoutConfig is initialized :

 SpoutConfig kafkaConfig = new SpoutConfig(kafkaBrokerHosts, kafkaTopic,
            "/consumers" , topologyName);


The Spout works well, it is recieving the events being sent to Kafka.

How can i set it, so Storm will aprear as a consumer in Kafka Manager ?

enter image description here

Upvotes: 0

Views: 189

Answers (1)

Adrian Seungjin Lee
Adrian Seungjin Lee

Reputation: 1666

Storm-kafka writes its consumer information in different location and different format(JSON) in zookeeper rather than traiditional kafka way of doing it. You have to see such information manually in zookeeper. Any kafka monitoring tool would not work for your purpose.

Upvotes: 2

Related Questions