当前位置: 首页 > 工具软件 > registry-du > 使用案例 >

Failed to save registry cache file, will retry, cause: Can not lock the registry cache

陈晟睿
2023-12-01

问题描述:

启动的Dubbo 服务的时候报错,异常信息如下:

Failed to save registry cache file, will retry, cause: Can not lock the registry cache file /root/.dubbo/dubbo-registry-finance-service-xxx.xx.xxx.xxx-2181.cache, ignore and retry later, maybe multi java process use the file, please config: dubbo.registry.file=xxx.properties, dubbo version: 2.7.6, current host: xxx.xx.x.x
java.io.IOException: Can not lock the registry cache file /root/.dubbo/dubbo-registry-finance-service-xxx.xx.xxx.xxx-2181.cache, ignore and retry later, maybe multi java process use the file, please config: dubbo.registry.file=xxx.properties

从异常看,是多个线程都要写信息,导致不能获取锁,同时也不尝试再次获取


原因分析:

出现这个的原因是服务向ZK注册的同时,会缓存Consumer的列表,写入user.home/.dubbo/dubbo-registry-” + url.getHost() + “.cache 这个文件,当在同一个机器上启动多个Provider的时候,就会出现文件锁争用的问题,报上面这个错误。


解决方案:

服务模块各自缓存自己的cache文件,在<dubbo:registry />中加入 file=“dubboregistry/dubbo-registry.properties” ,这样就会在bin目录下生成dubboregistry这个目录,cache文件就缓存在这个里边了。

参考:

链接: https://github.com/alibaba/dubbo/issues/81

 类似资料:

相关阅读

相关文章

相关问答