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

推荐订阅源

罗磊的独立博客
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG

Hacker News: Ask HN

The New Window Delete ChatGPT Atlas Spyware Tell HN: Qwen Free Tier Is Discontinued Ask HN: SeedLegals Partnerships in London, worth it? Ask HN: How to highlight talent from untraditional backgrounds? Ask HN: We dont need a programming language now? Durable Object alarm loop: $34k in 8 days, zero users, no platform warning What if Time at the subatomic level has multiple arrows? How to add MidnightBSD Key to UEFI Secure Boot DBX? (Revoked and Forbidden Keys) Ask HN: What's your experience working at xAI as an AI tutor? Any engineers here with experience of clinical data standards? Ask HN: Who is using OpenClaw? Agent Skills for Software Test Automation Ask HN: Who needs contributors? Claude Code is thinking too much Ask HN: What Is the Big-O Order of a Jigsaw Puzzle? Ask HN: Stepping into a new role as a Senior, mentoring dos and dont's? Founder from Zurich heading to SF and Austin for the first time Hacker News No Manual Screenshots: I Built a Scalable Screenshot API Using Cloud Playwright Ask HN: Thought experiment: AGI giving us answers we don't like? Ask HN: I quit my job over weaponized robots to start my own venture 1% Vacancy, 81% Preleased: Where Midmarket Compute Deploys in 2026 Ask HN: Preferred pricing model for sound effects libraries? Copy of the email I sent to my undergraduate professors on Nov 30, 2025 Model API Performance | Hacker News Ask HN: Are open-weight LLMs the new offline encyclopedias? Valgrind 3.27 RC1 is out Claude Code OAuth down for >12 hours Ask HN: What's Better?–Tauri or Electron?
$38k AWS Bedrock bill caused by a simple prompt caching miss
Zephyr0x · 2026-04-28 · via Hacker News: Ask HN

I just learned a $37,901.73 lesson about AWS Bedrock, Claude Opus, prompt caching, and the complete lack of hard safety rails around metered AI infrastructure.

This was not a leaked key. This was not crypto mining. This was not an infinite loop. This was not one ridiculous request.

It was a normal local coding-agent workflow:

Droid -> OpenAI-compatible API -> LiteLLM -> AWS Bedrock -> Claude Opus 4.6

I assumed prompt caching was working because every layer in the chain made that assumption feel reasonable:

- Claude supports prompt caching - Bedrock supports prompt caching for Claude - LiteLLM supports Bedrock - Droid can talk to an OpenAI-compatible endpoint

But the bill told a different story.

The gross Opus usage was $37,901.73. AWS credits covered about $8,026.54, leaving roughly $29,875.19 net.

The expensive line item was not output. It was repeated uncached input:

- uncached input tokens: ~6.47B tokens, ~$35.6k - cache read input tokens: ~1.67B tokens, ~$918 - cache write input tokens: ~101M tokens, ~$698 - output tokens: ~25M tokens, ~$698

So yes, there was some cache activity. But nowhere near enough for a high-frequency agent workflow.

The thing that makes me angry is that all of this was allowed to fail silently.

“Prompt caching is supported” is not the same as “your actual agent stack is using prompt caching correctly.”

“Budget alerts are configured” is not the same as “spend will stop.”

“Credits are applied” is not the same as “you will notice the bad cost structure early.”

These are soft signals pretending to be safety boundaries.

For LLM agents, that is not good enough.

A coding agent can run while you sleep. It can carry huge context. It can repeatedly send repo state, tool schemas, instructions, history, and file contents. If caching is misconfigured or partially effective, the failure mode is not a small inefficiency. It is a runaway cloud bill.

Why is there no simple hard cap at the Bedrock/API level?

Why can I not say:

- this IAM principal may spend at most $200/month - this model may not be called more than N times/day - this workflow may not send more than N uncached input tokens/hour - stop serving requests once the budget is crossed

Cloud providers have had decades to learn that “email me after the money is gone” is not a safety mechanism.

I am not saying AWS, Anthropic, LiteLLM, or Droid alone caused this. I made the mistake of putting a metered premium model into a daily agent workflow before putting hard guardrails around it.

But that is exactly the point: the platform lets a very normal integration mistake turn into a car-sized invoice.

My takeaway:

Prompt caching is not a checkbox. Budget alerts are not a kill switch. Credits are not protection. And metered AI backends need hard spend limits before agents become normal infrastructure.

Has anyone here built reliable guardrails for this? IAM deny rules? API gateways? token-budget proxies? per-workflow kill switches?

Because right now the default feels absurdly dangerous.