+2 votes
in Apache Storm by
What happens when Storm kill a topology?

1 Answer

0 votes
by

Storm won’t kill the topology immediately. Instead, it deactivates all the spouts so that they don’t emit any more tuples, and then Storm waits Config.TOPOLOGY_MESSAGE_TIMEOUT_SECS seconds before destroying all the workers. This gives the topology enough time to complete any tuples it was processing when it got killed.

Related questions

+2 votes
asked Jul 3, 2021 in Apache Storm by rajeshsharma
+2 votes
asked Jun 30, 2021 in Apache Storm by rajeshsharma
...