是否可以在进程中启动 Zookeeper 服务器实例,例如用于单元测试?
调用 org.apache.zookeeper.server.quorum.QuorumPeerMain.main() 不起作用。
Calling org.apache.zookeeper.server.quorum.QuorumPeerMain.main() isn't working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
Netfix 开源 Curator 一个可以使用的框架Zookeeper就更方便了。它内置了测试服务器类。只需将此测试依赖项添加到您的项目描述符中,无论是 maven、gradle 还是其他:
以下是测试要点。
使用
cli
创建任何测试数据都非常容易(需要curator-framework
依赖项)。Netfix opensourced Curator a framework to make use of Zookeeper even more convenient. It has build in test server class. Just add this test dependency to your project descriptor be it maven, gradle or else:
And here are the test essentials.
With
cli
creating any test data is very easy (requires thecurator-framework
dependency).要启动
ZooKeeper
,您必须执行ZooKeeperServerMain
类。您可以使用以下代码以嵌入模式启动
ZooKeeper
。To start
ZooKeeper
you have to executeZooKeeperServerMain
class.You can use following code to start
ZooKeeper
in embedded mode.你可以使用这样的东西。
要关闭它,只需调用standaloneServerFactory.shutdown()
You can use something like this.
And to shut it down just call
standaloneServerFactory.shutdown()
通过添加临时端口的使用(由
zkPort
所示),以 1 的答案为基础并更新了最新的 ZK API:Building on 1's answer by adding the use of an ephemeral port (shown by
zkPort
) and updated for latest ZK API:GeoffBourne 答案的更新版本。
An updated version of GeoffBourne's answer.