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

推荐订阅源

云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
腾讯CDC
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
A
About on SuperTechFans
博客园 - 叶小钗

SiliconANGLE

Will agentic AI governance run amok? The lesson of Asimov’s Three Laws - SiliconANGLE AI + quantum, Amazon vs. Starlink and the wide-open US-China internet battle - SiliconANGLE Team Cymru launches Total Insights Feed to replace legacy threat intelligence lists - SiliconANGLE AI Mode in Chrome adds split-screen view to enhance the web search experience - SiliconANGLE Resolve AI raises $40M at $1.5B valuation to optimize production environments - SiliconANGLE How Zscaler and OpenAI turn zero-trust security into an AI accelerator - SiliconANGLE OpenAI ratchets up Codex's agentic capabilities to rival Claude Code - SiliconANGLE Anthropic launches Claude Opus 4.7 with coding, visual reasoning improvements - SiliconANGLE Slash raises $100M at a $1.4B valuation to expand AI-powered banking platform for online businesses - SiliconANGLE Canva unveils Canva AI 2.0, recasting its platform as an agentic system for work - SiliconANGLE Data center, consumer device chips boost TSMC’s revenue - SiliconANGLE Mission-critical security cannot be bolted on, says Oracle - SiliconANGLE Agentic infrastructure reshapes enterprise AI - SiliconANGLE Data quality, and data freedom, foundational for AI success - SiliconANGLE Data trust is a bedrock in successful, scalable AI outcomes - SiliconANGLE Google introduces new agentic AI-ready tools and resources for Android developers  - SiliconANGLE Agentic AI orchestration separates winners from laggards - SiliconANGLE Data-driven tools turning the tide against human trafficking - SiliconANGLE Achieving trusted AI development goes beyond 'vibes' - SiliconANGLE Impinj boosts edge computing power in updated R700 RAIN RFID reader - SiliconANGLE Certinia powers professional services with AI - SiliconANGLE Antioch prepares to accelerate simulated testing for autonomous robots after raising $8.5M - SiliconANGLE Developer tooling startup Expo nabs $45M investment - SiliconANGLE Solidroad lands $25M to bring AI to customer support interactions - SiliconANGLE DuploCloud lands compliance and AI governance certifications as enterprise buyers tighten scrutiny - SiliconANGLE Lua lands $5.8M to help businesses build and manage AI agent workforces - SiliconANGLE Best of frenemies: Oracle's and AWS' clouds unite with dedicated, private connectivity - SiliconANGLE NIST shifts National Vulnerability Database to risk-based triage as CVE submissions hit record levels - SiliconANGLE Cisco goes to the races with new Churchill Downs multiyear partnership - SiliconANGLE Susecon 2026 will tackle the future of open-source platforms - SiliconANGLE
When well-behaved agents trigger disaster - SiliconANGLE
Joe Vaccaro · 2026-05-08 · via SiliconANGLE

When well-behaved agents trigger disaster

It’s 2:17 a.m., and your application monitor flags elevated database latency. Before your on-call engineer finishes reading the alert, three agents have already responded.

The performance agent doubles the database capacity. The cost agent, seeing what appears to be overprovisioning, starts consolidating database instances. The routing agent reroutes traffic through the database tier. Each decision is logged. Each makes perfect sense in isolation. Each is exactly what the agent was designed to do.

By 2:19 a.m., your database layer is down, not because something broke, but because everything worked. No agent will show an error in its logs. Reconstructing a two-minute sequence in which every individual decision was correct, but the combination was catastrophic, will take three days.

This is what the next class of infrastructure outage looks like.

It’s already happening

The failure mode that agents will amplify doesn’t necessarily start with artificial intelligence. And three major incidents from last year demonstrate it clearly:

  • AWS DynamoDB DNS — Two independent systems were each working correctly. One applied an older configuration and encountered delays. The other applied a newer configuration and triggered cleanup. The delayed system overwrote the newer configuration at the exact moment cleanup removed it. The failure lived entirely in the timing between them.
  • Azure Front Door — A control plane generated faulty metadata, which an automated system correctly blocked. The cleanup process worked as designed but triggered a dormant bug in a third component. The failure emerged from the sequence of correct actions.
  • Cloudflare Bot Management — A permissions change caused duplicate query results. The configuration system processed them correctly, producing a valid but oversized file. The proxy correctly enforced its size limit and rejected it. One system’s correct output exceeded another system’s correct constraint.

Each failure was invisible from inside any single system. Now, imagine the same pattern playing out across dozens of agents making concurrent decisions at machine speed.

Beyond automation

Automation managing infrastructure isn’t new. Auto scaling adjusts server capacity, Kubernetes moves workloads, AIOps platforms restart failed services. These systems follow predetermined rules within narrow, well-defined boundaries.

But agent-defined infrastructure is different. It observes conditions, weighs tradeoffs and makes judgment calls at machine speed. And organizations aren’t deploying one or two agents; they have dozens working concurrently, all making decisions on shared infrastructure in seconds. The interaction patterns that caused the AWS, Azure and Cloudflare failures don’t disappear in this environment; they multiply in three specific ways.

  • Multiple agents solving the same problem can make it worse. One agent sees Queue A overwhelmed and diverts jobs to Queue B. Another sees Queue B overwhelmed and diverts traffic back to Queue A. Both are responding correctly to what they observe, but together they’ve created an endless loop that neither can resolve alone — the same dynamic behind flash crashes in financial markets and resource thrashing in auto-scaling systems.
  • Agents can’t tell the difference between mistakes and decisions. When one agent sees another’s action, it faces a question it can’t reliably answer: Was the move intentional or an error? If intentional, reversing it causes chaos. If an error, fixing it is the whole point. Without coordination, agents end up fighting each other; one scales capacity up, another scales it down and the first scales it back up again. Every log shows perfectly rational behavior. What looks like an infrastructure problem from the outside is actually a coordination failure.
  • Local decisions become system-wide problems. An agent managing service A affects service B. Service B’s agent responds, affecting service C. By the time your team starts investigating, the conditions driving each decision may no longer exist. The post-mortem is like solving a puzzle where half the pieces have already changed shape.

The 2:17 a.m. scenario hits all three simultaneously, and nobody’s logs show anything wrong. That’s the common thread: These failures are invisible until it’s too late, unless you’re watching the right things.

Fragmented understanding

Add enough agents to a production environment, and the number of potential interaction patterns doesn’t grow steadily; it compounds with every agent added and every expansion of their authority scope.

Traditional monitoring was built for a different problem. CPU utilization, memory usage, request latency and error rates tell you when something inside a single system breaks down. They weren’t designed to show you what happens when multiple systems, all behaving correctly, interact in ways that collectively produce failure.

The requirement is fundamentally different. The question is no longer whether service A is healthy, but how changes to it trigger actions in services B, C, and D. It’s not just what the agent did that matters, but what it was looking at when it made a decision.

Answering those questions requires visibility that spans network, compute, application and data with a unified view of how actions in one domain ripple through others in real time. Incidents became diagnosable not through better component metrics, but by observing how dependencies, timing and individual decisions can combine into failure.

Experienced site reliability engineers already manage some of this risk through change freezes, staged rollouts and blast radius controls. At agent speed, that window closes. The same instincts apply, but you can’t coordinate what you can’t see.

What comes next

Agent-defined infrastructure isn’t a risk to avoid, but a change to manage. The benefits are real in faster response times, better optimization and less operational burden.

Agentic outages don’t happen because agents malfunction, but because they worked as intended. Assurance has to account for how independently correct decisions combine in production. That makes interaction visibility not a monitoring problem to solve after deployment, but a design constraint. You build for it before the agents go live, or you debug it at 2:17 a.m.

Joe Vaccaro is vice president and general manager of platform and assurance at Cisco Systems Inc. He wrote this article for SiliconANGLE.

SiliconANGLE/Meta AI

A message from John Furrier, co-founder of SiliconANGLE:

Support our mission to keep content open and free by engaging with theCUBE community. Join theCUBE’s Alumni Trust Network, where technology leaders connect, share intelligence and create opportunities.

  • 15M+ viewers of theCUBE videos, powering conversations across AI, cloud, cybersecurity and more
  • 11.4k+ theCUBE alumni — Connect with more than 11,400 tech and business leaders shaping the future through a unique trusted-based network.

About SiliconANGLE Media

SiliconANGLE Media is a recognized leader in digital media innovation, uniting breakthrough technology, strategic insights and real-time audience engagement. As the parent company of SiliconANGLE, theCUBE Network, theCUBE Research, CUBE365, theCUBE AI and theCUBE SuperStudios — with flagship locations in Silicon Valley and the New York Stock Exchange — SiliconANGLE Media operates at the intersection of media, technology and AI.

Founded by tech visionaries John Furrier and Dave Vellante, SiliconANGLE Media has built a dynamic ecosystem of industry-leading digital media brands that reach 15+ million elite tech professionals. Our new proprietary theCUBE AI Video Cloud is breaking ground in audience interaction, leveraging theCUBEai.com neural network to help technology companies make data-driven decisions and stay at the forefront of industry conversations.