- Mastering Apache Storm
- Ankit Jain
- 94字
- 2021-07-02 20:32:29
Kill
Storm topologies are never-ending processes. To stop a topology, we need to kill it. When killed, the topology first enters into the deactivation state, processes all the tuples already emitted into it, and then stops. Run the following command to kill SampleStormClusterTopology:
$> bin/storm kill SampleStormClusterTopology
The following information is displayed:
0 [main] INFO backtype.storm.thrift - Connecting to Nimbus at localhost:6627 80 [main] INFO backtype.storm.command.kill-topology - Killed topology: SampleStormClusterTopology
Now, run the jps command again to see the remaining JVM processes as follows:
jps
The preceding command's output is:
26530 supervisor 27193 Jps 26468 nimbus
推薦閱讀
- CMDB分步構建指南
- 編程的修煉
- Learning Apex Programming
- Scientific Computing with Scala
- 數據結構與算法分析(C++語言版)
- SQL基礎教程(第2版)
- Python深度學習:模型、方法與實現
- ElasticSearch Cookbook(Second Edition)
- Julia 1.0 Programming Complete Reference Guide
- 零基礎學HTML+CSS
- Learning Python Data Visualization
- Hacking Android
- Mastering JavaScript
- Learning ECMAScript 6
- Java 7 Concurrency Cookbook