|
|
|
|
|
by praptak
4873 days ago
|
|
MQ might be a solution but certainly not in the "just use" class. Unless you want to introduce a bottleneck and a single point of failure, this queue has to be distributed. Managing a distributed queue is hard, for reasons similar to ones making the original problem hard - DQs require global state in a distributed environment. There are tradeoffs involved - the synchronization cost might become a bottleneck in itself. Pushing the problem on the distributed brokers is making a big bet on the queuing solution. Nope, definitely not in the "just use" category. |
|
But they will end up building a pull rather than push system in the end.