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

推荐订阅源

Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
雷峰网
雷峰网
IT之家
IT之家
I
InfoQ
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
月光博客
月光博客
P
Proofpoint News Feed
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
G
Google Developers Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI
V
Visual Studio Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Why did AI destroy my production database?
kevin061 · 2026-05-06 · via Hacker News - Newest: "AI"

I already posted my thoughts on AI and why I don’t think it’s going away any time soon. Unfortunately, it seems some people who don’t like LLMs are using AI-induced outages and deletions as an opportunity to reaffirm their biases, and, in doing so, may be missing part of the picture.

Much has been written on the risks of AI adoption, and many articles have called out the risks AI poses to businesses. However, I think people are too quick to draw the wrong conclusions from these incidents.

It happened to:

In most mature organisations with modern engineering practices (for example, Google, Uber, and some neobanks), engineers have very limited access to production. In some cases, no access at all, and in other cases they have a replica of the production environment that they can test against; if they manage to break this production replica, customer data is not lost, and customers are not impacted by downtime.

Unfortunately, this is not always the case. Not even in prestigious Big Tech organisations (like AWS itself, as you can see).

Insider threats and you

AI agents should be treated like insider-risk actors: powerful, useful, and potentially dangerous if given excessive permissions. Whether the failure comes from malice, carelessness, compromised credentials, or an over-eager agent, the engineering problem is the same: the system must tolerate bad actions from trusted actors.

SRE and security

As a Site Reliability Engineer, security is part of the job. SREs handle concepts like guardrails, replication, backups, Service-Level Agreements, business continuity, and more. Two of the most important concepts in Site Reliability Engineering are the “nines” in an SLI/SLO/SLA [archived version], and being “blameless” [archived version].

Outages

It is impossible to be 100% available, because this implies there can never be any outage, and this is not possible for complex interconnected systems. This can occur at any time: from earthquakes, nuclear power plant meltdowns, total nationwide blackout, or even aerial attacks targeting your datacenter—as it happened to AWS sites in UAE—and it is often impossible to avoid these events because they are out of your control. It is, however, possible to plan and work around these potential threats by making sure your architecture is able to recover from different kinds of disasters.

The cause of the outage is not important. What matters is the outage occurring at all. AI is just one more vector.

Blameless

“Blameless” culture is not just about avoiding pointing fingers after an outage. It is about engineering systems that account for user error. Nobody should be able to click a button or run a command and bring down your business, whether they are an external attacker, an internal employee, or an AI agent acting with valid credentials.

This is achieved through layers of defence in depth, backups, and by adding friction to deployments and development. No developer should have easy access to a production database, especially if you handle sensitive customer data (GDPR, PCI), or if you are a large publicly-listed organisation with financial obligations and reporting requirements (SOx).

If a developer does bring down production, the response should not be to scold them. Recover the systems, then investigate the failure. Why did a single user manage to bring down the system? What specific steps allowed this to happen? How can we prevent this class of outage?

Anything a person can do, AI can do just as well. In an organisation with strict Site Reliability Engineering principles, this should not be possible. If it does happen, treat it as a learning opportunity rather than dismissing AI as ineffective and dangerous.

Conclusion

If an agent can delete your production database, then you need to reconsider your security posture. The answer is to design production systems where no single actor has enough unchecked power to destroy the business.

It is your responsibility to design secure, reliable systems that can withstand user error, AI hallucinations, and motivated adversaries. The mitigations are largely the same.

So, to answer the question:

Why did AI destroy my production database?

Because you gave it credentials, reachability, and insufficient blast-radius controls.