
Zookeeper
人在旅途我渐行渐远
随便写写
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Dubbo异常: Can not lock the registry cache file解决方案
跑了很久的服务突然启动报错:[DUBBO] Failed to save registry store file, cause: Can not lock the registry cache file /root/.dubbo/dubbo-registry-xx.xx.xx.xx.cache, ignore and retry later, maybe multi java process use the file, please config: dubbo.registry.file=xxx.prop原创 2020-09-17 18:02:07 · 4358 阅读 · 0 评论 -
Zookeeper和Eureka比较(转)
著名的CAP理论指出,一个分布式系统不可能同时满足C(一致性)、A(可用性)和P(分区容错性)。由于分区容错性在是分布式系统中必须要保证的,因此我们只能在A和C之间进行权衡。在此Zookeeper保证的是CP,而Eureka则是AP。Zookeeper保证CP当向注册中心查询服务列表时,我们可以容忍注册中心返回的是几分钟以前的注册信息,但不能接受服务直接down掉不可用。也就是说,服务...转载 2019-06-17 13:43:34 · 199 阅读 · 0 评论