Google Cloud's messaging service that allows applications to communicate asynchronously. Like a mail system where applications can send messages without waiting for replies.
An e-commerce site uses Pub/Sub to notify inventory systems when orders are placed, without making customers wait.
All provide asynchronous messaging. GCP Pub/Sub is a managed pub/sub broker. AWS commonly combines SNS (fan-out) with SQS (durable queues). Azure Service Bus Topics are closest for brokered pub/sub; Event Grid is event routing (push) for reactive events. OCI Streaming is a Kafka-like streaming log; it can be used for pub/sub-style consumption but is optimized for high-throughput streams rather than brokered message delivery semantics.
Explore real-world architectures from our community that use Pub/Sub: