在使用Curator连接Zookeeper时报错,原因是因为版本问题。
本地环境:
zookeeper版本:zookeeper-3.4.x
cuartor版本:4.0.0
看Curator官网的声明:
地址:
http://curator.apache.org/zk-compatibility.html

Curator 2.x.x - compatible with both ZooKeeper 3.4.x and ZooKeeper 3.5.x
Curator 3.x.x - compatible only with ZooKeeper 3.5.x and includes support for new features such as dynamic reconfiguration, etc.
版本不匹配的问题,我使用的curator版本过高,使用2.xx就没有问题了。
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>2.10.0</version>
</dependency>
本文解决了一个在使用Curator连接Zookeeper时遇到的版本不匹配问题。作者发现Curator 4.0.0版本与Zookeeper 3.4.x版本存在兼容性问题,通过将Curator版本降至2.10.0,成功解决了连接异常。文章提供了正确的依赖配置。
1029

被折叠的 条评论
为什么被折叠?



