Replies: 1 comment 7 replies
-
How about one connection for every N origins? N could be 100, 250, etc etc |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
-Hi, I'm developing a software than will receive messages from different sources and send message to other different sources:
For example it can receive messages from 4000 origins and send messages to other different 4000 destinations.
I need messages from different sources to be processed independently so they don't slowdown processing of other sources in any way. Same for sending messages.
As opening a different Connection for each source/destination is a bad choice, i'm creating the following design:
With this approach I need to change the rabbitmq config to increase the max channel number.
Is there a better approach??
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions