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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
博客园_首页
博客园 - 【当耐特】
V
Visual Studio Blog
博客园 - 叶小钗
月光博客
月光博客
美团技术团队
J
Java Code Geeks
小众软件
小众软件
Y
Y Combinator Blog
博客园 - Franky
Martin Fowler
Martin Fowler
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG

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
ECS vs EKS: The Decision I Regret (And What I’d Do Differ...
Harsh Thakka · 2026-05-01 · via DEV Community

The first time things broke in production, I didn’t even know where to look.

Not “figuratively lost.” I mean literally.

Pods were restarting. Logs were half there. Metrics were… somewhere.
And I was SSH’ing into nodes like it was 2016, trying to understand why a simple Node.js service decided to disappear mid traffic.

That was the moment I quietly said to myself:

“Maybe choosing EKS wasn’t the flex I thought it was.”


A few months earlier, the decision felt obvious.

We were starting fresh. New service. Decent traffic expectations. Nothing massive, but not trivial either.

Someone asked:
“ECS or EKS?”

And I jumped in a bit too quickly:

“Let’s go with Kubernetes. Future proof. Industry standard.”

That word future proof has cost me time more than once.


What I thought I was choosing

At the time, I framed it like this:

  • ECS → simple, but limiting
  • EKS → powerful, flexible, scalable

So naturally… I chose “powerful.”

What I didn’t realize then is:

Power comes with a tax. And it’s not always visible upfront.


The first few weeks felt fine

Honestly, the initial setup wasn’t even that bad.

  • Cluster came up
  • Services deployed
  • ALB hooked in
  • Things were… running

I remember feeling slightly proud. Like I had unlocked some next level infrastructure badge 😅

But that feeling didn’t last long.


The slow creep of complexity

It didn’t hit all at once.

It showed up in small, annoying ways.

Logs weren’t where I expected

With ECS, logs just kind of… show up in CloudWatch.

With EKS, I had to think about:

  • Fluent Bit / Fluentd
  • Sidecars vs DaemonSets
  • Log routing

Nothing impossible. Just… extra decisions.

And every decision added surface area for mistakes.


Deployments became “events”

A simple deploy wasn’t simple anymore.

Something failed once because:

  • readiness probe was too aggressive
  • pod restarted before warming up
  • rollout got stuck

The fix was easy after I understood what happened.

But getting there? That took time.

What I didn’t realize at the time:

Kubernetes doesn’t fail loudly. It fails… descriptively. And you have to know where to look.


Node level issues became my problem

This one annoyed me the most.

I had to think about:

  • node scaling
  • resource fragmentation
  • pod scheduling

At one point, we had enough CPU overall… but pods still couldn’t schedule.

Because no single node had enough contiguous resources.

That’s the kind of problem I never had with ECS Fargate.

And honestly… I didn’t want to have it.


The incident that changed my mind

We had a traffic spike. Nothing crazy. Maybe 3x normal load.

Auto scaling kicked in… kind of.

New nodes were coming up. Pods were pending. Some were stuck.

Meanwhile:

  • existing pods were overloaded
  • latency increased
  • a few endpoints started timing out

And I was watching this cascade happen in slow motion.

The worst part?

Everything looked “configured correctly.”

In hindsight, the problem was:

  • cluster autoscaler lag
  • node provisioning delay
  • pod scheduling constraints

Individually, each makes sense.

Together… they create friction exactly when you don’t want it.

That day, I kept thinking:

ECS would’ve handled this more predictably.

Maybe not perfectly. But predictably.


What I misunderstood about ECS

I had dismissed ECS too quickly.

I assumed:

  • it wouldn’t scale as well
  • it was less flexible
  • it was somehow “less serious”

That was ego talking, not experience.

Because in reality:

ECS (especially Fargate) removes entire categories of problems:

  • no node management
  • no scheduler tuning
  • no cluster level debugging

You give up control, yes.

But you also give up responsibility.

And sometimes that’s exactly what you want.


The trade offs are real (and uncomfortable)

I’m not saying EKS is bad. It’s not.

In fact, there are cases where I’d absolutely choose it again:

  • multi cloud strategy
  • heavy Kubernetes ecosystem usage
  • custom controllers / operators
  • deep networking requirements

But here’s the uncomfortable truth:

Most projects don’t need that level of control.

Mine didn’t.

And I paid for that mismatch with time, complexity, and a few stressful evenings.


What I’d do differently now

If I were making that decision again, I’d ask a very different question.

Not:

“What’s more powerful?”

But:

“What problems do I actually want to own?”

Because that’s what this decision really is.

With EKS, you own:

  • cluster behavior
  • scheduling quirks
  • scaling edge cases

With ECS, you give that up.

And honestly… I’d start with ECS now.

Especially if:

  • the team is small
  • infra isn’t the product
  • speed matters more than flexibility

I’d move to EKS only when ECS starts getting in the way.

Not before.


The part I didn’t expect

The hardest part wasn’t learning Kubernetes.

It was unlearning the idea that “more control = better engineering.”

It doesn’t.

Sometimes better engineering is:

  • fewer moving parts
  • fewer decisions
  • fewer things that can break at 2 AM

Final thought

I don’t regret learning EKS.

But I do regret choosing it too early.

There’s a difference.

And if you’re at that crossroads right now, trying to decide…

Just remember:

You’re not choosing a tool.
You’re choosing a set of problems.

Pick carefully 🙂