NServiceBus 如何从 1 个逻辑服务的 2 个物理位置发布消息

发布于 2024-10-19 13:51:09 字数 94 浏览 4 评论 0原文

是否可以从部署到 2 个物理位置的 1 个逻辑服务发布消息?

配置文件会是什么样子? 您不能在订阅者中添加消息两次。但如果您想订阅 2 个队列,则必须这样做。

is it possible to publish a message from 1 logical service that is deployed to 2 physical locations?

how would the config file look like?
you cannot add a message in your subscriber 2 times. but you must if you want to subscribe to 2 queues.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

那支青花 2024-10-26 13:51:09

是的,这很有可能。我们现在正在做。诀窍是拥有共享或复制的订阅存储。其工作原理如下:

  1. 订阅请求(如订阅者的应用程序配置文件中所定义)被发送到发布者的端点。
  2. 发布者将请求添加到其订阅存储中,该存储通常是关系数据库。
  3. 如果数据库被共享/复制,所有发布者端点都会知道新订阅者。
  4. 所有发布者端点将能够发布,订阅者将能够接收所需的消息。

Yes, it's very possible. We're doing it right now. The trick is to have either a shared or replicated subscription store. Here's how it works:

  1. The subscription request (as defined in your subscriber's application configuration file) is sent to an endpoint of the publisher.
  2. The publisher adds the request to its subscription store which is often a relational database.
  3. If the database is shared/replicated all publisher endpoints will know about the new subscriber.
  4. All publisher endpoints will be able to publish and the subscriber will be able to receive the desired message.
忘你却要生生世世 2024-10-26 13:51:09

这正是数据库订阅存储要解决的问题。只需将两个物理发布者配置为共享相同的 sub.db 就可以了。然后让您的订阅者订阅其中之一。

That is excactly what the db subrcription storage is meant to solve. Just configure both physical publishers to share the same sub.db and you should be fine. Then have your subscribers subscribe to one of them.

暖风昔人 2024-10-26 13:51:09

我相信这是不可能的。不管怎样,你在中间安排了某种调度员。

发布者使用 IBus.Send() 将消息直接发送到调度程序,调度程序又使用 IBus.Publish() 进行发布。

I believe this is not possible. Anyway you cvan you some kind of dispatcher in the middle.

The Publisher send the Message directly to the dispatcher using IBus.Send() which in turn publishs using IBus.Publish().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文