首页 > 代码库 > Kafka server的的停止
Kafka server的的停止
这算是CountDownLatch的一个典型使用场景。
kafka.Kafka对象的main方法中与此有关的代码为
?
1 2 3 4 5 6 7 8 9 10 | // attach shutdown handler to catch control-c Runtime.getRuntime().addShutdownHook( new Thread() { override def run() = { kafkaServerStartble.shutdown } }) kafkaServerStartble.startup kafkaServerStartble.awaitShutdown System.exit( 0 ) |
首先,注册一个shutdownHook,在control-c等令虚拟机停止命令后,虚拟机会启动被注册的hook对应的线程,在这里,server的shutdown方法将被调用。
然后,启动server。在server的startup方法中,会初始化一个CountDownLatch为1。这时,server的各个子服务开始运行。
然后,调用server的awaitShutdown方法,使得main线程阻塞。
?
1 | def awaitShutdown(): Unit = shutdownLatch.await() |
这个方法就是简单地调用CountDownLatch的await方法。而之前提到的,server的shutdown方法就是在停止server的各个服务后,调用CountDownLatch的countDown方法,这时,阻塞在await的main线程就会醒来,从而调用System.exit。
综上,control-c 使shutDown在shutDownHook的线程中被调用,从而使CountDownLatch减1,使得之前阻塞在同一个CountDownLatch的main线程继续,从而调用 System.exit推出JVM。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。