The Google Cloud Pub/Sub Protocol Binding for CloudEvents defines how events are mapped to Pub/Sub 1.1 request and response messages.
This document is a working draft.
- 1.1. Conformance
- 1.2. Relation to Pub/Sub
- 1.3. Content Modes
- 1.4. Event Formats
- 1.5. Security
- 2.1. datacontenttype Attribute
- 2.2. data Attribute
- 3.1. Binary Content Mode
- 3.2. Structured Content Mode
CloudEvents is a standardized and protocol-agnostic definition of the structure and metadata description of events. This specification defines how the elements defined in the CloudEvents specification are to be used in Pub/Sub requests and response messages.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC2119.
Events can be produced using a Topic or consumed using Push or Pull based Subscriptions.
The specification defines two content modes for transferring events: structured and binary.
In the structured content mode, event metadata attributes and event data are placed into the Pub/Sub message body section using an event format.
In the binary content mode, the value of the event data
attribute is placed
into the Pub/Sub payload data as-is, with the datacontenttype
attribute value
declaring its media type; all other event attributes are mapped to Pub/Sub
attributes.
Event formats define how an event is expressed in a particular data format. All implementations of this specification MUST support the JSON event format, but MAY support any additional, including proprietary, formats.
This specification does not introduce any new security features for Pub/Sub, or mandate specific existing features to be used.
This specification does not further define any of the CloudEvents event attributes.
This mapping is intentionally robust against changes, including the addition and removal of event attributes, and also accommodates vendor extensions to the event metadata.
The datacontenttype
attribute SHOULD contain a RFC2046 compliant
media-type expression.
The data
attribute SHOULD contain opaque application data that is encoded as
declared by the datacontenttype
attribute.
An application MAY hold the information in any in-memory representation of its
choosing, but as the value is transposed into a Pub/Sub message as defined in
this specification, the assumption is that the data
attribute value is made
available as a sequence of bytes.
For instance, if the declared datacontenttype
is
application/json;charset=utf-8
, the expectation is that the data
attribute
value is made available as UTF-8 encoded JSON text Pub/Sub message
data.
With Pub/Sub, the content mode is chosen by the sender of the event. Protocol usage patterns that might allow solicitation of events using a particular content mode might be defined by an application, but are not defined here.
The receiver of the event can distinguish between the two content modes by
inspecting the Pub/Sub Attribute content-type
of the Pub/Sub
message. If the attribute is present and its value is prefixed
with the CloudEvents media type application/cloudevents
, indicating the use of
a known event format, the receiver SHOULD use structured
mode, otherwise it MUST default to binary mode.
If a receiver finds a CloudEvents media type as per the above rule, but with an
event format that it cannot handle, for instance application/cloudevents+avro
,
it MAY still treat the event as binary and forward it to another party as-is.
The binary content mode accommodates any shape of event data, and allows for efficient transfer and without transcoding effort.
The binary content mode can only be used if the metadata attributes fit within the limits of Pub/Sub messages.
For the binary mode, the Pub/Sub Attribute content-type
, if
present, MUST be used as the CloudEvents datacontenttype
attribute.
The data
byte-sequence MUST be used as the value of the
Pub/Sub message data payload.
All CloudEvents attributes MUST be individually mapped to and from distinct Pub/Sub message attributes.
The naming convention for the Pub/Sub attribute mapping of well-known CloudEvents attributes is that each attribute name MUST be prefixed with "ce-".
Examples:
* `time` maps to `ce-time`
* `id` maps to `ce-id`
* `specversion` maps to `ce-specversion`
Attribute names are lower-case.
The value for each Pub/Sub attribute MUST be constructed from the respective CloudEvents attribute type's canonical string representation.
This example shows the binary mode mapping of an event to a Pub/Sub Message:
--- Attributes ---
{
"ce-specversion": "1.0",
"ce-type": "com.example.someevent",
"ce-time": "2020-03-10T03:56:24Z",
"ce-id": "1234-1234-1234",
"ce-source": "/mycontext/subcontext",
.... further attributes ...
"ce-datacontenttype": "application/json; charset=utf-8",
}
--- Data ---
{
... application data ...
}
This example show a publish request on the REST API of the above Pub/Sub Message:
POST https://pubsub.googleapis.com/v1/{topic}:publish HTTP/1.1
Content-Type: application/json; charset=utf-8
Authorization: Bearer ... token ...
{
"messages": [
{
"attributes": {
"ce-specversion": "1.0",
"ce-type": "com.example.someevent",
"ce-time": "2020-03-10T03:56:24Z",
"ce-id": "1234-1234-1234",
"ce-source": "/mycontext/subcontext",
.... further attributes ...
"ce-datacontenttype": "application/json; charset=utf-8",
},
"data": "... base64 encoded Data JSON (see above) ..."
}
]
}
The structured content mode keeps event metadata and data together in the payload, allowing simple forwarding of the same event across multiple routing hops, and across multiple transports.
The Pub/Sub Attribute content-type
MUST be set to the media
type of an event format.
Example for the JSON format:
"content-type": "application/cloudevents+json; charset=UTF-8"
The chosen event format defines how all attributes,
including the data
attribute, are represented.
The event metadata and data are then rendered in accordance with the event format specification and the resulting data becomes the Pub/Sub message data.
Implementations MAY include the same Pub/sub attributes as defined for the binary mode.
All CloudEvents metadata attributes MUST be mapped into the payload, even if they are also mapped into Pub/Sub attributes.
This example shows the structured mode mapping of an event to a Pub/Sub Message:
--- Attributes ---
{
"content-type": "application/cloudevents+json; charset=utf-8"
}
--- Data ---
{
"specversion": "1.0",
"type": "com.example.someevent",
"time": "2018-04-05T03:56:24Z",
"id": "1234-1234-1234",
"source": "/mycontext/subcontext",
"datacontenttype": "application/json; charset=utf-8",
.... further attributes ...
"data": {
... application data ...
}
}
This example show a publish request on the REST API of the above Pub/Sub Message:
POST https://pubsub.googleapis.com/v1/{topic}:publish HTTP/1.1
Content-Type: application/json; charset=utf-8
Authorization: Bearer ... token ...
{
"messages": [
{
"attributes": {
"content-type": "application/cloudevents+json; charset=utf-8"
},
"data": "... base64 encoded Data JSON (see above) ..."
}
]
}
- PUBSUB Google Cloud Pub/Sub
- PUBSUB-MESSAGE The Google Cloud Pub/Sub message
- PUBSUB-MESSAGE-QUOTAS The Google Cloud Pub/Sub message quotas
- RFC2046 Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types
- RFC2119 Key words for use in RFCs to Indicate Requirement Levels
- RFC3629 UTF-8, a transformation format of ISO 10646
- RFC3986 Uniform Resource Identifier (URI): Generic Syntax