ETL Pipelines integration is available for the Scale plan.
Event Structure
Each event is published with these RabbitMQ message custom headers:Key | Value |
---|---|
Routing Key | Vital event type, e.g., daily.data.activity.created |
Content-Type | application/json : UTF8 JSON document |
Content-Encoding | gzip: The blob is compressed by gzip. null/absent: The blob is uncompressed. |
Data | Encoded JSON blob. This may or may not be compressed — see blob_codec. |
Payload smaller than 1KiB would not be compressed. You must check
Content-Encoding
to identify if
decompression of the message payload blob is necessary.At this time, Vital publishes exclusively JSON blobs (
blob_type == json
).Having said that, you are strongly encouraged to check for and drop any events with unrecognized Content-Type
and Content-Encoding
.Broker authentication
Vital only supports password authentication at this time. Vital publishes events with the following settings:- Publisher Confirm mode is required
- Events are published with the Mandatory flag but without the Immediate flag.
- Events are published with Event Type as the Routing Key.
Configuration
Org Management API is available for the Scale plan.