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

推荐订阅源

S
SegmentFault 最新的问题
J
Java Code Geeks
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
B
Blog
A
About on SuperTechFans
有赞技术团队
有赞技术团队
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
N
Netflix TechBlog - Medium
C
Check Point Blog
Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 叶小钗
T
Tailwind CSS 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 Runtime Reality Breaks Static Assumptions
Siddharth Pa · 2026-05-17 · via DEV Community

Most AI systems today reason about infrastructure as if it is static.

A snapshot of:

  • code
  • configs
  • schemas
  • deployment definitions

But real systems are not static.

They evolve constantly.

Sometimes intentionally.

Sometimes because somebody made a “temporary workaround” 11 months ago and now the company is emotionally dependent on it.


The Gap Between “Declared” and “Running”

There is always a gap between:

What is declared

  • Terraform
  • CloudFormation
  • CDK
  • configs
  • architecture diagrams nobody updated since 2023

What is actually running

  • hotfixes
  • partial rollouts
  • deprecated services still somehow alive
  • environment drift
  • shadow dependencies
  • “temporary” scripts promoted directly into production

AI systems mostly reason over the declared layer.

Production lives in the running layer.

That mismatch is where infrastructure assumptions start becoming dangerous.


Drift Is Normal, Not Exceptional

One thing I’ve learned from real systems:

Drift is not some rare edge case.

Drift is the default operating mode of infrastructure.

Schemas drift.
Queues get reused.
Lambda responsibilities quietly expand.
Environment configs diverge.
Feature flags outlive entire product strategies.

And somehow the system still works through a combination of:

  • operational experience
  • institutional memory
  • monitoring alerts
  • and collective engineering anxiety

The problem is:
AI systems usually do not have access to any of that context.


Why This Breaks AI Reasoning

If an AI agent assumes:

  • an index exists because Terraform references it
  • a queue is active because code imports it
  • a service is healthy because it appears in configs
  • an API contract is current because docs mention it

…it can confidently generate completely wrong operational decisions.

Not because the syntax is bad.

Because the system model is stale.

And stale infrastructure assumptions are dangerous precisely because they often look reasonable.


Static Context Has a Ceiling

This is why I think purely static approaches eventually hit a ceiling for infrastructure-heavy AI systems.

You can absolutely improve things with:

  • better retrieval
  • larger context windows
  • repo indexing
  • schema awareness
  • dependency graphs

All of that helps.

But eventually runtime reality wins.

Because production systems are living systems.

Not snapshots.


Runtime Truth Is Hard

To reason reliably about infrastructure, AI systems eventually need awareness of:

  • runtime state
  • deployment reconciliation
  • drift detection
  • evolving dependencies
  • environment divergence
  • operational anomalies

In other words:

what is actually true right now.

Not:

what was declared six months ago and hopefully still exists.

That is a much harder problem than code generation.

But it is also the problem that matters most once software reaches production scale.


This Is the Direction I Keep Thinking About

A lot of the thinking behind Infrawise started from this gap between:

  • static infrastructure definitions and
  • operational system reality

Right now I’m mostly exploring deterministic infrastructure context through:

  • schema relationships
  • infra mapping
  • dependency awareness
  • static analysis
  • topology understanding

But long-term I think runtime observability and operational signals become important too.

Because infrastructure awareness is not just:

“what does the code say?”

It is:

“what is the system actually doing?”


Closing

Current AI coding assistants are already very good at understanding source code.

The next generation will need to understand:

  • runtime behavior
  • operational state
  • infrastructure drift
  • deployment reality
  • evolving system relationships

Because production systems are not static architecture diagrams.

They are constantly moving targets held together by software, infrastructure, and a surprising amount of engineering optimism.