Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know current running topologies from storm command line client?

Tags:

apache-storm

Is there any way to display all the current running Storm topologies from storm command line client?

Storm documentation doesn't say anything about this.

http://storm.apache.org/documentation/Command-line-client.html

like image 322
Vijay Innamuri Avatar asked Sep 29 '22 18:09

Vijay Innamuri


1 Answers

You can run

$STORM_HOME/bin/storm list

storm provides a web based UI for monitoring such informations.

However you can start writing your own Thrift client to connect to the broker and get various matrix based on your need. If you are from Java background or similar then it should be easy to write and execute from the prompt.

like image 52
user2720864 Avatar answered Oct 05 '22 08:10

user2720864