报错信息:

 Failed to receive INITIALIZED event from zookeeper, pls. check if url zookeeper://xxx/org.apache.dubbo.metadata.report.MetadataReport?client=&dubbo.config-center.root-path=/ is correct 

 

可以参考这个文章:

https://blog.csdn.net/weixin_38308374/article/details/105984022

最后结果是配置

dubbo.config-center.parameters[init.timeout]=60000 增加超时时间就可以了

 

这个文章是给我配置类方式配置的,我这边是老项目, 还是用的xml配置的,看了一下源码,可以这么配置也是生效的的:

可以直接在url后面拼接即可:

<dubbo:registry address="zookeeper://${zkserver.host}?init.timeout=60000" timeout="60000" />
如果有配置中心的,这样修改比较简单,不用修改代码了 ,为什么这样修改,可以看看源码,源码获取init.timeout是通过这个地址获取的,

 

更优雅的是这样的修改:

<dubbo:registry address="zookeeper://${zkserver.host}" timeout="60000" >
    //这样修改,其实最后还是拼接到url后面的
    <dubbo:parameter key="init.timeout" value="60000"></dubbo:parameter>
</dubbo:registry>

 

 

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐