You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 18, 2018. It is now read-only.
I run the pyleus program in local mode, then setup KafkaOffsetMonitor to view kafka status, whereas from the UI I can not see the consumer name that set in yaml. Why?
The text was updated successfully, but these errors were encountered:
Does pyleus use simple consumer API, so it doesn't register in zookeeper? But I read some source code about pyleus, I can't find anything concerned with kafka consumer..BTW, How can I monitor the kafka status? Does anyone has any idea?
Pyleus simply uses the Kafka spout provided by Storm, the code for how it is configured is here. By default, Pyleus configures the Kafka spout so the offset is stored in Zookeeper at path starting at /pyleus-kafka-offsets. The consumer ID defaults to pyleus-[topology name].
The exact implementation of the Kafka spout you're using will depend on the Storm version, but from my experience with 0.9.2, Storm's Kafka spout uses the simple consumer API and manages its offset manually in Zookeeper. The code for the Kafka spout in Storm 0.9.2 is here.
I run the pyleus program in local mode, then setup KafkaOffsetMonitor to view kafka status, whereas from the UI I can not see the consumer name that set in yaml. Why?
The text was updated successfully, but these errors were encountered: