Checking…
View health JSON

Cloud Pub/Sub Demo

← Back to Home

This page demos a real multi-cloud pipeline: your browser → AWS EC2 backend → Google Pub/Sub → AWS RDS MySQL → back to this UI. Messages are de-duplicated and stored with a canonical record + occurrences.

Publish a Message

Behind the scenes this calls POST /api/publish on my AWS EC2 backend, which forwards to Google Pub/Sub.

Stored Messages (DB View)

Occurrence ID Body Type Duplicates (canonical) Received

This view shows every occurrence stored in AWS RDS via GET /api/messages. Duplicate arrivals are flagged and tied back to a canonical message and its duplicate count.

Subscriber View (Unique Messages)

Canonical ID Body Duplicate Count First Seen

This subscriber-side view shows the unique canonical messages that survived deduplication. Duplicates do not appear here — they only increment the duplicate count.