dubbo
dubbo copied to clipboard
The java implementation of Apache Dubbo. An RPC and microservice framework.
如题:我的springboot 工程只想消费其他dubbo服务。但是不想启动自带的提供者。目前没找到是否可以禁用的方式。 这是我的工程配置: 下面日志启动了28080端口,实际我不想要它启用,我只需要消费服务就好 dubbo: enabled: true application: name: mst-dubbo-pay-consumer registry: id: yzlpay address: N/A register: false subscribe: true 2022-03-24 11:28:15.534 INFO 15420 --- [ main] o.a.dubbo.metadata.MappingCacheManager : [DUBBO] Successfully...
- [x] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. ## springboot use dubbo 3.0.6 and pinpoint-plugin can't start 
- [x] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: lastst * Operating System version: any *...
Related issue #10154 #9826 Status: Documents to be improved Background: When a user requests the Dubbo interface, due to problems such as registry configuration problems, server status, and routing processing...
- [x] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. ## Ask your question here when i use RpcContext.getContext().asyncCall() like below RpcContext.getContext().asyncCall(()...
### Environment * Dubbo version: 3.0.7 * Java version: 1.8 ### Steps to reproduce this issue 一个实例下,一个协议,对应多个端口的情况下,在进行应用级注册时,只会取其中一个端口,另外一个端口会失效  ### Expected Behavior 对于服务消费端者来说多个端口都要能使用,目前只能用其中一个 ### Actual Behavior 代码里有个todo,解释的就是这个问题  ### 初步解决方案 可以在endpoints中记录一下其他端口信息,比如新加一个multi-endpoints
- [x] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. ## Ask your question here dubbo 3.0.8 出现重复的class,注册中心使用nacos ```log 2022-06-28 20:03:57.718 ERROR...
Environment Dubbo version: 3.0.7 Operating System version: windows 10 Java version: 1.8 I use grpc,When I make a request, the consumer throws an exception   
## Ask your question here 异步调用Dubbo服务,调用方执行完成,分布式事务已经commit。但是Dubbo服务提供方耗时原因,还在执行中,导致出现错误Transaction doesn't exist,服务提供方数据回滚,从而出错。现在的问题就是:都使用了异步调用,为什么还会存在事务在服务提供方,当我使用异步调用的时候,如何才能阻止事务的传递?