You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2021/06/30 12:44:16 UTC

[GitHub] [rocketmq-client-cpp] WanZixin opened a new issue #359: support connecting clusters through domain?

WanZixin opened a new issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359


   If so, how to use it? There is a risk of connecting the cluster through IP address, because the machine corresponding to IP address may be offline.


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] WanZixin commented on issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
WanZixin commented on issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359#issuecomment-871973696


   @ifplusor It's working. Thank you!
   


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] ifplusor commented on issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359#issuecomment-871384739


   @WanZixin replace IP with domain, and remain port.


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] ifplusor closed issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
ifplusor closed issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359


   


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] WanZixin commented on issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
WanZixin commented on issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359#issuecomment-871948518


   @ifplusor What scenarios are these two functions applied to please?
   ```c++
   SetPushConsumerNameServerAddress(consumer, "mydomain:9876");
   SetPushConsumerNameServerDomain(consumer, "mydomain:9876");
   ```
   


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] ifplusor commented on issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359#issuecomment-871955347


   `SetPushConsumerNameServerDomain` is deprecated, it will do HTTP Get to fetch namesrv list. Use `SetPushConsumerNameServerAddress` only.


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] ifplusor commented on issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359#issuecomment-871945070


   @WanZixin 
   
   ```c
   SetPushConsumerNameServerAddress(consumer, "mydomain:9876");
   ```


-- 
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: dev-unsubscribe@rocketmq.apache.org

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



[GitHub] [rocketmq-client-cpp] WanZixin commented on issue #359: support connecting clusters through domain?

Posted by GitBox <gi...@apache.org>.
WanZixin commented on issue #359:
URL: https://github.com/apache/rocketmq-client-cpp/issues/359#issuecomment-871943945


   @ifplusor Do you mean to write like this?
   ```c++
   SetPushConsumerNameServerDomain(consumer, "mydomain:9876");
   ```


-- 
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: dev-unsubscribe@rocketmq.apache.org

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