Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Java 代码在同一个 JVM 中启动了多个 Hazelcast 实例(但它们在同一个组中)。
现在我想关闭一些实例,但不是全部。
我知道这个方法Hazelcast.shutdownAll()——这个方法关闭了所有的实例。是否有允许关闭特定实例的方法?
Hazelcast.shutdownAll()
这很容易 - 这是代码:
HazelcastInstance instance = Hazelcast.newHazelcastInstance(config); instance.getLifecycleService().shutdown();
那是对的。
根据 Hazelcast 版本,您还可以调用hazelcastInstance.shutdown().
hazelcastInstance.shutdown()