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

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | 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
Why Abstractions Leak
Amrishkhan Sheik Abdullah · 2026-06-12 · via DEV Community

One of the most dangerous moments in a developer's career is when an abstraction works perfectly.

Not because success is bad.

But because perfect abstractions create an illusion.

The illusion is:

I don't need to know what's underneath.

For a while, that's true.

Then production happens.

Then scale happens.

Then edge cases happen.

Then reality happens.

And suddenly:

The abstraction leaks.

This idea is so common in software engineering that it has a name:

The Law of Leaky Abstractions

And once you see it, you'll notice it everywhere.


What Is An Abstraction?

An abstraction hides complexity.

Example:

fetch("/users")

Looks simple.

Behind that line:

DNS Lookup

TCP Connection

TLS Handshake

HTTP Request

Network Routing

Server Processing

Serialization

Response Parsing

Thousands of things happen.

The abstraction hides them.

That's the point.


Why We Need Abstractions

Imagine writing:

openSocket()
performTLSHandshake()
buildHTTPRequest()
serializeHeaders()
sendRequest()
readResponse()
parseJSON()

every time.

Nobody wants that.

Abstractions make software possible.

Without them:

Modern Software Would Not Exist


The Problem

The abstraction hides complexity.

It does not remove complexity.

That distinction matters.

Because eventually:

fetch("/users")

fails.

And suddenly:

You Need To Understand
The Things It Was Hiding


Example #1: ORMs

Developers love ORMs.

Example:

const users =
  await User.findAll()

Looks beautiful.

Looks simple.

Looks harmless.

Then somebody adds:

user.posts

inside a loop.

Suddenly:

100 Users

100 Queries

Database Meltdown

The famous:

N + 1 Query Problem

appears.

The ORM abstraction leaked.


Example #2: React

React hides DOM manipulation.

Instead of:

document.createElement(...)

we write:

<UserCard />

Wonderful.

Until:

5000 Components

Frequent Updates

Slow Rendering

Now you need to understand:

Reconciliation

Memoization

Reference Equality

Rendering Lifecycle

The abstraction leaked.


Example #3: Promise.all()

Looks simple.

await Promise.all(
  requests
)

Feels magical.

Until:

5000 Requests

hit production.

Now:

Rate Limits

Memory Pressure

Connection Pools

Timeouts

suddenly matter.

Again:

The abstraction leaked.


Example #4: Kubernetes

Developers often say:

Kubernetes Makes Deployment Easy

Until something breaks.

Then:

Pods

Services

Ingress

DNS

Networking

Volumes

Secrets

Scheduling

become your problem.

The abstraction leaked.


Example #5: Functional Programming

Even FP abstractions leak.

Consider:

users
  .map(...)
  .filter(...)
  .map(...)

Looks elegant.

Then:

1 Million Records

arrive.

Now:

Allocations

Garbage Collection

Intermediate Arrays

matter.

Suddenly:

You Need To Understand
The Implementation

The abstraction leaked.


The Reduce Example

Earlier in this series we discussed:

users.reduce(
  (acc, user) => ({
    ...acc,
    [user.id]: user
  }),
  {}
)

Looks elegant.

Looks immutable.

Looks functional.

At scale:

O(n²)

The abstraction leaked.

The implementation became important.


Why Leaks Are Inevitable

Many developers think:

Good Abstractions
Never Leak

This is impossible.

Because reality is more complex than any abstraction.

Always.

Eventually:

Performance

Memory

Concurrency

Networking

Storage

Scale

find a way through.


The Database Example

You can use:

User.findAll()

for years.

Then one day:

Database CPU 100%

Now suddenly:

SELECT *
FROM users

matters.

The SQL was always there.

The ORM simply hid it.


The Cloud Example

Many developers think:

Serverless Means
No Servers

It doesn't.

It means:

Someone Else's Servers

Eventually:

Cold Starts

Execution Limits

Concurrency Limits

appear.

The abstraction leaks.


Why Senior Engineers Feel Different

Junior engineers often trust abstractions.

Senior engineers respect abstractions.

Those are not the same thing.

A senior engineer sees:

fetch(...)

and mentally understands:

Network

Latency

Retries

Timeouts

Failures

even when they aren't visible.

That's experience.


The Best Developers Learn Both Layers

Bad approach:

Only Learn Frameworks

Also bad:

Only Learn Internals

The best developers learn:

Abstraction
+
Implementation

Both matter.


Real World Example: API Studio

Suppose we're building an API Studio.

We expose:

Send Request

as a button.

Simple.

Behind the scenes:

DNS

TLS

Headers

Body Serialization

Compression

Retries

Timeouts

Certificates

Users shouldn't see those details.

But we must understand them.

Because eventually:

A Bug Will Live There


Real World Example: Git

Git feels simple.

git commit

Until:

Merge Conflicts

Detached HEAD

Rebase Failures

Corrupted Refs

appear.

Then:

Objects

Trees

Blobs

Refs

Packfiles

suddenly matter.

The abstraction leaked.


The Hidden Connection To This Entire Series

Reduce leaked.

We learned Transducers.

Transducers leaked.

We learned composition.

RxJS leaked.

We learned streams.

Event Sourcing leaked.

We learned reducers.

Every article in this series is actually a story about abstractions leaking.

And that's not a bad thing.

That's how deeper understanding develops.


Pros Of Abstractions

1. Faster Development

Less code.


2. Better Productivity

Focus on business logic.


3. Lower Cognitive Load

Hide complexity.


4. Better Reusability

Shared solutions.


5. Better Collaboration

Common interfaces.


Cons Of Abstractions

1. Performance Surprises

The implementation is hidden.


2. Debugging Complexity

Problems occur below the abstraction.


3. Knowledge Gaps

Developers stop learning fundamentals.


4. Vendor Lock-In

Sometimes abstractions become cages.


5. Leaks

Eventually reality breaks through.

Always.


The Real Lesson

The biggest mistake developers make is assuming abstractions remove complexity.

They don't.

They move complexity.

That's a huge difference.

The complexity still exists.

It's simply hidden until something goes wrong.

And when that moment arrives, the engineers who understand both layers:

The Abstraction

and

The Implementation

are the ones who solve the problem.

That's why great engineers never stop at the API.

Eventually they look underneath.

Because every abstraction leaks.

And that's where the real learning begins.


What's Next?

In the next article we'll discuss:

The Two Hard Things In Computer Science

Because one famous joke contains an uncomfortable amount of truth:

There are only two hard things
in Computer Science:

Cache Invalidation

Naming Things

and Off-by-One Errors

And surprisingly, that joke explains a huge amount of software engineering.


About The Author

Hi, I'm Amrish Khan.

I enjoy building developer tools, exploring software architecture, and writing about the deeper ideas behind everyday programming concepts.

I'm also building Aruvix — a growing ecosystem of local-first developer tools designed to process data directly in the browser without unnecessary uploads.

Here's a detailed blog on Aruvix:

https://dev.to/amrishkhan05/aruvix-the-ultimate-offline-first-developer-toolkit-e0i

You can follow my work and thoughts here:

Portfolio:
https://www.amrishkhan.dev

LinkedIn:
https://www.linkedin.com/in/amrishkhan

GitHub:
https://www.github.com/amrishkhan05

If you enjoyed this article, consider following for more deep dives into JavaScript, architecture, local-first software, and performance engineering.