View Revisions: Issue #7019
Summary | 0007019: Add support for AWS SNS (load-only endpoint) | ||
---|---|---|---|
Revision | 2025-08-13 18:25 by pbelov | ||
Description | Add support for Amazon Simple Notification Service (AWS SNS) queue as a load-only implementation. (Similar to RabbitMQ) Key points: 1. Publish: convert entire row of data into a format specified by the new parameter (also see Additional Information below) employing a utility class (TODO: research). 2. Target table name becomes a topic 3. Updates to SymmetricDS internal tables go into the local runtime database (H2 for example) 4. If topic does not exist, batch should fail with the Table not Found error. 5. The Create Table batch should create new topic. 6. Checking endpoint permissions (on SNS) should include: * Authentication * Create topic. * Publish one message to topic. * No bulk publishing supported at this time. * Delete events are not supported? |
||
Revision | 2025-08-13 18:16 by pbelov | ||
Description | Add support for Amazon Simple Notification Service (AWS SNS) queue as a load-only implementation. (Similar to RabbitMQ) Key points: 1. Publish: convert entire row of data into a format specified by the new parameter (also see Additional Information below) employing a utility class (TODO: research). 2. Target table name becomes a topic 3. Updates to SymmetricDS internal tables go into the local runtime database (H2 for example) 4. If topic does not exist, batch should fail with the Table not Found error. 5. The Create Table batch should create new topic. 6. Checking endpoint permissions (on SNS) should include: * Authentication * Create topic. * Publish one message to topic. * No bulk publishing supported at this time. * SNS message body format |
||
Revision | 2025-08-13 13:59 by cquamme | ||
Description | Adding support for AWS SNS as a load-only implementation. |