|
|
|
|
|
by thezorg
868 days ago
|
|
Poor [Cloud Tasks](https://cloud.google.com/tasks), they're the actual GCP message queue, but everyone forgets they exist and use Pub/Sub instead. What's funny is Pub/Sub is a fundamentally different model from message queues: queues are normally tightly coupled, meaning you enqueue a message to be processed by a specific system. Pub/Sub on the other hand is fundamentally loosely coupled: the publisher doesn't care who (if anyone) gets the message. (I've heard "orchestration" vs "choreography" to describe this dichotomy, but I can't say I'm a fan of the jargon.) |
|