What is Cloud PubSub?
A fully managed messaging middleware service
Cloud PubSub key points (5)
What are some use cases for Cloud PubSub? (3)
How does Cloud PubSub work?
What delivery types are there for subscriptions in Cloud PubSub?
Push and Pull.
Pull -an application reads messages for a given subscription topic
Push - a subscription writes messages to an endpoint URL
How do you create subscriptions or topics via the shell for Cloud PubSub?
gcloud pubsub topics create [TOPIC NAME]
gcloud pubsub subscriptions create [SUBSCRIPTION NAME]
How do you send data to a topic via the shell in Cloud PubSub?
gcloud pubsub topics publish [TOPIC NAME] –message [MESSAGE]
How do you pull messages sent to a subscription in Cloud PubSub?
gcloud pubsub subscriptions pull –auto-ack [SUBSCRIPTION NAME]