Skip to main content

Application overview

Architecture​

Snowbridge’s architecture is fairly simple: it receives data from one streaming technology (via Sources), optionally runs filtering and transformation logic on them (message-by-message, via Transformations), and sends the data to another streaming technology or destination (via Targets). If it is not possible to process or retry the data as per the failure model, it outputs a message to another destination (via Failure Targets).

Where the source supports acking, Snowbridge only acks messages once the data is successfully sent to either the target or the failure target (in the case of unrecoverable failure). In the case of a recoverable failure — for example when the target is temporarily unavailable — Snowbridge will not ack the messages and will retry them once the source technology’s ack deadline has passed.

architecture

Operational details​

Data is processed on an at-least-once basis, and there is no guarantee of order of messages. The application is designed to minimise duplicates as much as possible, but there isn’t a guarantee of avoiding them — for example if there’s a failure, it is possible for messages to be delivered without a successful response, and duplicates can occur.

Was this page helpful?