This document gives an overview of how subscriptions work in Cloud Pub/Sub. For details on pull and push delivery subscriptions, see the Pull Subscriber Guide and the Push Subscriber Guide.
To receive messages published to a topic, you must create a subscription to that topic. Only messages published to the topic after the subscription is created are available to subscriber applications. The subscription connects the topic to a subscriber application that receives and processes messages published to the topic. A topic can have multiple subscriptions, but a given subscription belongs to a single topic.
To learn about creating and updating subscriptions, see
Managing Topics and Subscriptions.
Cloud Pub/Sub delivers each published message at least once for every subscription.
There are some exceptions to this at-least-once behavior:
Once a message is sent to a subscriber, the subscriber must either acknowledge
or drop the message. A message is considered outstanding once it has been sent
out for delivery and before a subscriber acknowledges it. Cloud Pub/Sub will
repeatedly attempt to deliver any message that has not been acknowledged or that
is not outstanding. A subscriber has a configurable, limited amount of time, or
Typically, Cloud Pub/Sub delivers each message once and in the order in which it was published.
However, messages may sometimes be delivered out of order or more than once.
In general, accommodating more-than-once delivery requires your subscriber to be
idempotent when
processing messages. You can achieve exactly once processing of Cloud Pub/Sub message streams using
Cloud Dataflow A subscription can use either the pull or push mechanism for message delivery. You can change or
configure the mechanism at any time. Note also that messages can be delivered in batches. In pull delivery, your subscriber application initiates requests to the Cloud Pub/Sub
server to retrieve messages. In push delivery, Cloud Pub/Sub initiates requests to your subscriber application to
deliver messages. Cloud Pub/Sub dynamically adjusts the rate of push requests based on the rate at which
it receives success responses. The following table offers some guidance in choosing the appropriate delivery
mechanism for your application:
The following table compares pull and push delivery: A subscription is created for a single topic. It has several properties that
can be set at creation time or updated later, including: Subscriptions with no activity (pull requests or push successes) for 31 days may
be deleted automatically. You can also delete a subscription manually. While you can create new
subscriptions with the same name as a deleted one, note that the
new subscription has no relation to the old one, even though they have the same name.
Therefore, the new subscription has no backlog at the time it is created (no
messages waiting for delivery), even if the deleted subscription had a large number
of unacknowledged messages.At-Least-Once Delivery
ackDeadline, to acknowledge the message. Once the deadline has passed,
an outstanding message becomes unacknowledged.PubsubIO.
PubsubIO de-duplicates messages on custom message identifiers or those assigned by
Cloud Pub/Sub. You can also achieve ordered processing with Cloud Dataflow by using the standard
sorting APIs of the service. Alternatively, to achieve ordering, the publisher of the topic to which
you subscribe can include a sequence token in the message. See
Message Ordering for more information.Pull or push delivery
Pull subscription
Push Subscription
Pull
Push
Pull
Push
Endpoints
Any device on the internet that has authorized credentials is able to call the Cloud Pub/Sub API.
An HTTPS server with non-self-signed certificate accessible on the public web.
The receiving endpoint may be decoupled from the Cloud Pub/Sub subscription, so that
messages from multiple subscriptions may be sent to a single endpoint.
Load balancing
Multiple subscribers can make pull calls to the same "shared"
subscription. Each subscriber will receive a subset of the messages.
The push endpoint can be a load balancer.
Configuration
No configuration is necessary.
No configuration is necessary for App Engine apps in the same project as
the subscriber.
Configuration (and verification) of push endpoints is
required in the Google Cloud Platform Console for all other endpoints. Endpoints must be
reachable via DNS names and have SSL certificates installed.
Flow control
The subscriber client controls the rate
of delivery. The subscriber can dynamically modify the ack deadline, allowing
message processing to be arbitrarily long.
The Cloud Pub/Sub server automatically implements flow control. There is no need
to handle message flow at the client side, although it is possible to indicate
that the client cannot handle the current message load by passing back an
HTTP error.
Efficiency and throughput
Achieves high throughput at low CPU and bandwidth by allowing batched
delivery and acknowledgments as well as massively parallel consumption. May be
inefficient if aggressive polling is used to minimize message delivery time.
Delivers one message per request and limits maximum number of outstanding
messages.
Configuring Subscriptions
Lifecycle of a Subscription