You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "CodePlayer (via GitHub)" <gi...@apache.org> on 2023/05/10 14:28:33 UTC

[GitHub] [dubbo] CodePlayer opened a new issue, #12289: group="*" + broadcast not work

CodePlayer opened a new issue, #12289:
URL: https://github.com/apache/dubbo/issues/12289

   <!-- If you need to report a security issue please visit https://github.com/apache/dubbo/security/policy -->
   
   - [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: 3.2.0 ( with Nacos 2.2.2 )
   * Operating System version: Windows 10
   * Java version: OpenJDK 17.0.6
   
   ### Steps to reproduce this issue
   
   ```java
   @DubboService(group = "p1")
   public class ProviderServiceImpl implements RemoteSyncService {
   }
   
   @DubboService(group = "p2")
   public class ProviderServiceImpl2 implements RemoteSyncService {
   }
   
   public class ConsumerServiceImpl {
   
     @DubboReference(group = "*", cluster = "broadcast")
     RemoteSyncService remoteSyncService;
   
   }
   ```
   
   If `group="p1"`, it invoked provider `p1` only successfully.
   If `group="p2"`, it invoked provider `p2` only  successfully.
   However, if `group="*"`, it just invoked **one of** them, **not all**.
   
   
   
   ### Expected Behavior
   
   When `group="*"`, it should invoke **all providers** successfully.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] CodePlayer commented on issue #12289: group="*" + broadcast not work

Posted by "CodePlayer (via GitHub)" <gi...@apache.org>.
CodePlayer commented on issue #12289:
URL: https://github.com/apache/dubbo/issues/12289#issuecomment-1543225511

   I found same issue with [#2544](https://github.com/apache/dubbo/issues/2544)
   
   See also: https://dubbo.apache.org/zh-cn/overview/mannual/java-sdk/advanced-features-and-usage/service/group-merger/


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] CodePlayer closed issue #12289: group="*" + broadcast not work

Posted by "CodePlayer (via GitHub)" <gi...@apache.org>.
CodePlayer closed issue #12289: group="*" + broadcast not work
URL: https://github.com/apache/dubbo/issues/12289


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org