I am using Postal.js to write an in-browser demonstration of a messaging system to represent our current dataflow. But one thing I fail to demonstrate is the distribution of load using whats commonly knows as competing consumers.
Say that we have a channel of messages representing cars to be washed. If cars appear more frequent than our subscriber can handle, we want to add a new subscriber. However, we don't want the same cars to end up in both carwashed (which is what happens in Postal when I simply add a new subscriber).
Is this possible using Postal, or maybe using one of the plugins?
Hi!
I am using Postal.js to write an in-browser demonstration of a messaging system to represent our current dataflow. But one thing I fail to demonstrate is the distribution of load using whats commonly knows as competing consumers.
Say that we have a channel of messages representing cars to be washed. If cars appear more frequent than our subscriber can handle, we want to add a new subscriber. However, we don't want the same cars to end up in both carwashed (which is what happens in Postal when I simply add a new subscriber).
Is this possible using Postal, or maybe using one of the plugins?
Thanks