Reputation: 63
I am running storm topology in local mode.
While running storm zookeeper and nimbus starts automaticaly
Is zookeeper and nimbus essential to run storm in local mode or can i stop it ? if so tel me how to stop it.
What is the role of zookeper in local mode while running storm in a single machine?
Upvotes: 3
Views: 720
Reputation: 1646
You can't disable Nimbus/Zookeeper. Zookeeper is an overall state management/coordination application which Storm uses for maintaining states and other information. Nimbus is like a master which accepts Storm job & schedules to downstream Supervisors. Storm need to use it's components like "Zookeeper" coordination service, "Nimbus" master & "Supervisor" slave to work. This is necessary in Local mode which will simulate Nimbus,Supervisor & Zookeeper services.
Upvotes: 3