Albumen Kevin

Results 745 comments of Albumen Kevin

嗯,可以把方案和修改的地方通过 PR 提交上来哦

> dubbo version: 3.0.10 > > 由于业务场景在部分二方包内手动初始化了Registry, Application以及Protocol等, 并且编程式的暴露服务 serviceConfig.export(); > > 当业务引用了二方包, 并且自己配置了一份 Protocol。在调用我们提供的二方包时就会报Not found exported service ... may be version or group mismatch > > 看着是应用级注册时进行了覆盖, org.apache.dubbo.registry.client.metadata.ServiceInstanceHostPortCustomizer#customize 该方法在选取host与port的时候只过滤了第一个protocol相同的地址,...

可以提供一个可以复现的 demo 我们验证下吗

> > 可以提供一个可以复现的 demo 我们验证下吗 > > 看这个例子 https://github.com/lphu/dubbo-demo > > HelloService可以正常调用, HelloService2调用时会Not found exported service @lphu demo 使用 3.1.1 版本的 dubbo 是可以正常请求的 ![image](https://user-images.githubusercontent.com/9292748/196850978-ddac3e62-b56f-46dc-a7f0-676990909fca.png) ![image](https://user-images.githubusercontent.com/9292748/196850944-8b746970-d8fc-4083-9cb9-32198ef2493e.png) ![image](https://user-images.githubusercontent.com/9292748/196850924-84326d81-1690-4f42-802b-5ad37dfc1bad.png)

由于需要对数据更新数据进行压制,防止应用级实例信息频繁更改对元数据中心、注册中心带来特别大的压力,应用级数据需要使用定期刷新的机制。 这一块可以在 Dubbo QoS 加个命令执行强制刷新数据到注册中心的行为(目前未支持,可以帮忙提交下),然后部署的时候通过 post 脚本去触发。

Sounds great! Please go ahead.

This is a bug of fastjson. See https://github.com/alibaba/fastjson/issues/2366 Try configure `-Ddubbo.json-framework.prefer=gson` to bypass this. In Dubbo 3.2, Dubbo will use fastjson2 as default and no longer depend on fastjson. Fastjson2...