惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
B
Blog
腾讯CDC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
罗磊的独立博客
月光博客
月光博客
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
Google Developers Blog
V
Visual Studio Blog
I
InfoQ
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
4- AWS Serverless: Event-Driven Design: SQS, SNS, and Eve...
Hamid Shoja · 2026-06-16 · via DEV Community
Cover image for 4- AWS Serverless: Event-Driven Design: SQS, SNS, and EventBridge

Hamid Shoja

When designing modern cloud architectures, Event-Driven Architecture (EDA) is the gold standard for creating decoupled, scalable, and resilient systems. However, choosing the right AWS service for passing messages around can be daunting.

Let’s break down exactly what this means, how each part works, and look at simple real-world examples for each.


Part 1: AWS SQS (Simple Queue Service)

"For resilient pull-based processing with FIFO for ordering guarantees"

What it means

  • Pull-Based Processing: Instead of pushing an event directly onto a consumer (which might overwhelm it), messages sit safely in a storage queue. The consumer "pulls" (polls) messages from the queue only when it has the capacity to process them.
  • Resilient: If your consumer service crashes or experiences a sudden traffic spike, the messages aren’t lost. They wait in the queue until the service recovers.
  • FIFO (First-In, First-Out): Standard queues process messages roughly in order, but sometimes duplicate or out-of-order messages happen. A FIFO queue guarantees strict ordering (Message A will always be processed before Message B if A arrived first) and exactly-once processing.

Simple Example: The Coffee Shop

Imagine a busy coffee shop. Customers place orders, and instead of shouting them directly at one overworked barista (push-based), the orders are printed on paper tickets and lined up on a rail (the queue).

The barista pulls the next ticket from the rail only when they finish the current drink (pull-based processing). If the barista steps away for a moment, the tickets don't vanish; they just wait on the rail (resilient).

  • Why FIFO matters here: If Customer A orders a Latte and Customer B orders an Espresso immediately after, the barista must make the Latte first to ensure fairness and prevent Customer A from waiting forever.

Part 2: AWS SNS (Simple Notification Service)

"For fan-out to multiple consumers simultaneously"

What it means

  • Fan-Out Pattern: This is a "push-based" publish/subscribe (Pub/Sub) pattern. A publisher sends a message once to an SNS "Topic," and SNS instantly clones and broadcast-pushes that message to multiple subscribers (consumers) simultaneously.
  • Decoupling: The service sending the message doesn't know (or care) who is listening. It just drops the message in the bucket, and SNS handles the distribution.

Simple Example: The New Author Announcement

Imagine an author finishes a new book. Instead of emailing every single fan individually, they post an update to a subscription newsletter service (the SNS Topic).

Instantly, that single update is broadcasted ("fanned out") to thousands of subscribers via different channels: some get an email, some get an SMS text, and another system automatically updates the bookstore website inventory.

  • In a software example: When a user buys a product on an e-commerce site, the OrderPlaced event is sent to SNS. SNS instantly "fans out" this event to three different systems at the exact same time:
  • The Shipping Service queue to pack the item.
  • The Invoicing Service queue to charge the card.
  • The Analytics Service to update marketing dashboards.

Part 3: AWS EventBridge

"For complex routing with pattern-based rules... my default for internal domain events"

What it means

  • Complex Routing & Pattern-Based Rules: EventBridge is a serverless event bus. Unlike SNS, which blasts messages to everyone subscribed, EventBridge inspects the contents of the event payload. You can write specific rules like: "Only forward this event if status is 'FAILED' and location is 'US'."
  • Internal Domain Events: A "domain event" is something meaningful that happened in your business logic (e.g., UserUpgradedToPremium). EventBridge is built to be the central nervous system connecting all your microservices.
  • Schema Registry & TypeScript Auto-Generation: As your team grows, keeping track of what an event looks like (its schema) becomes difficult. EventBridge’s Schema Registry automatically detects the structure of your events. It can then generate code bindings (like TypeScript types). This means developers get auto-complete in their code editors for events happening across the entire company!

Simple Example: The Airport Sorting System

Think of EventBridge like an automated airport baggage handling system. Every bag (event) has a tag indicating its destination, weight, and airline.

The main conveyor belt (the Event Bus) scans the tag of every bag and uses rules to route it:

  • If the destination is "London," send it to Gate 4.
  • If the bag is flagged as "Oversized," route it to the special handling team.
  • If it belongs to a third-party partner airline, route it to their terminal.

Furthermore, the airport maintains a central database of exactly what a valid baggage tag looks like (Schema Registry), so every airline's computer system knows precisely how to print a compatible tag without manual coordination.


When to use which?

  1. Use SQS when your primary goal is load-smoothing and safety. You want to make sure your database or microservice doesn't break under high traffic, and you need to process items sequentially.
  2. Use SNS when you want to broadcast a single event to multiple distinct systems instantly, and you want a simple "fire-and-forget" mechanism.
  3. Use EventBridge when you are building an enterprise microservice mesh. It is the ideal choice when you need to route events based on what is inside them, integrate with SaaS apps (like Zendesk or Stripe), or want strict code-level governance over your event data structures.

hope you find it helpful
Hash