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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

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
AWS Cloud Practitioner Exam - The Difficult Parts - Part ...
Cliff Claven · 2026-05-18 · via DEV Community

💾 EBS vs EFS vs S3 — How Does Your App See the Storage?

EBS — Elastic Block Store

Acts like a hard drive plugged into your EC2 instance. One instance, one AZ. Your OS formats and mounts it. Data persists after stop.

🧠 Think: "My server's hard drive"

EFS — Elastic File System

Acts like a shared network drive. Multiple EC2 instances across multiple AZs can mount it simultaneously. Auto-scales, no capacity to manage.

🧠 Think: "Shared folder that all my servers can access"

S3 — Simple Storage Service

Not a file system — an object store. You don't mount it, you call an API (PUT, GET). Flat blobs with URL keys. Massive scale, globally accessible, cheap.

🧠 Think: "A giant bucket of files accessible over the internet"

📋 Quick pick
Temp files on one server → EBS · Shared config files across servers → EFS · User photos accessible anywhere → S3

⚡ Instance Store — The One Everyone Forgets (And It's the Fastest)

Every EC2 host machine has real physical disks attached to it. Instance Store lets your instance use those disks directly — no network hop, just raw disk. EBS feels local but still goes over the network. That's why Instance Store wins on speed.

The catch: data only exists while the instance runs. Stop it, terminate it, or if the hardware fails — gone. Not a debate, just gone.

It's included in the EC2 instance price — no extra charge.

📋 Exam trigger words
"fault-tolerant" · "can handle failures" · "distributed architecture" · "highest I/O performance" · "lowest latency storage" → Instance Store

Data Protection, Migration & Storage Services

Service Does what Analogy Trigger words
AWS Backup Centralized automated backups across ALL AWS services and on-premises The automated backup janitor who never forgets "centralize backups" "automate backup policy" "across services"
Elastic Disaster Recovery Continuously replicates live servers for rapid failover The understudy ready to go on stage instantly "disaster recovery" "minimal data loss" "failover" "RPO/RTO"
DataSync Transfers and migrates data between storage systems The moving truck for your data "migrate data" "transfer to AWS" "sync on-premises to S3"
Storage Gateway Lets on-premises systems use AWS storage as if it were local The magic portal that makes cloud look local "hybrid storage" "on-premises access to cloud" "replace tape backups"
Snowball Edge Physical device for massive data transfer when network is impractical The armored truck when the internet highway is too slow "terabytes to petabytes" "physical transfer" "no internet" "rugged"

Storage Gateway — Three Flavors

Flavor Presents as Stores to Use when
File Gateway NFS/SMB network file share S3 Replace on-premises file servers
Volume Gateway iSCSI block storage S3 + EBS snapshots Back up on-premises block storage
Tape Gateway Virtual tape library S3 / Glacier Replace physical tape backup infrastructure

The Storage Gateway mental model:
Your on-premises servers think they're writing to local storage.
They're actually writing to AWS.
The gateway handles the translation invisibly.

Key Distinctions

Question Answer
Need to back up AWS resources centrally? AWS Backup
Need servers to keep running if disaster hits? Elastic Disaster Recovery
Need to move data to AWS once or regularly? DataSync
Need on-premises servers to use AWS storage daily? Storage Gateway
No internet, massive data, physical shipment? Snowball Edge

The trap: Elastic Disaster Recovery sounds like backup — it's not.
It replicates LIVE systems for failover, not periodic backup copies.


Reserved vs Dedicated — Completely Different Concepts

Reserved = a PRICING decision
You commit to 1 or 3 years → AWS gives you up to 72% discount.
Hardware is still shared with other AWS customers.

Dedicated = a HARDWARE decision
You get physically isolated servers.
Other AWS customers cannot run workloads on your hardware.
Exists for compliance requirements and software licensing.

They are independent — you can mix and match:

Combination Means
Reserved + Shared hardware Normal Reserved Instance — discount only
Reserved + Dedicated hardware Commit AND get physical isolation
On-Demand + Dedicated hardware Dedicated Instance/Host, no commitment

Dedicated Instance vs Dedicated Host

Dedicated Instance Dedicated Host
Hardware dedicated to you
You know WHICH server you're on ❌ AWS picks ✅ You choose
Visibility into sockets/cores
Bring your own license (BYOL)
Cost Lower Higher
Use when Need dedicated hardware for compliance Need specific server for BYOL licensing

The one sentence: Reserved = discount for commitment.
Dedicated = physical isolation for compliance or licensing.
You can mix and match them.

Exam trigger: "existing server-bound software licenses" + "compliance" → Dedicated Host
Exam trigger: "dedicated hardware" without licensing mention → Dedicated Instance

Trigger: "existing server-bound software licenses" + "compliance" → Dedicated Host


EC2 Instance Purchasing Decision Tree

Scenario Choose
Short term, uninterruptible On-Demand
Long term 1-3 years, predictable Reserved
Fault-tolerant, can be interrupted Spot
Dedicated hardware, BYOL licensing Dedicated Host
Dedicated hardware, compliance only Dedicated Instance

EC2 Launch Requirements

Required Optional
Security Group Elastic IP
VPC and Subnet Key pair (if no other access method)
EBS Root Volume Additional EBS volumes
AMI Instance store volumes