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

推荐订阅源

T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
罗磊的独立博客
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 司徒正美
Last Week in AI
Last Week in AI
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
宝玉的分享
宝玉的分享

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
Write returned success. The file was never there.
Vlad · 2026-06-25 · via DEV Community
Cover image for Write returned success. The file was never there.

Vlad

Four issues filed in the past week describe the same failure: an agent writes to persistent storage, the write API returns without error, and the data is gone. No exception, no log entry, no indication that anything went wrong until something tries to read what was written.

The symptoms vary. In one case, a Write tool call reports success while a concurrent disk check from a separate process shows nothing written. In another, 28 concurrent agent workflows report started=1, result=0 in their journals with no abort marker. In a third, two processes writing to the same data directory produce 157 GB of growth and a kernel panic. The corruption accumulated silently over days before the system failed. In a fourth, a memory layer agent skips writes entirely or writes partial records. The store fills with fragments no future session can act on.

The failure is structural. A write that looks atomic to the caller is not atomic to the filesystem when multiple processes share state. The write API returns when the calling process hands off to the OS or a downstream layer, not when durability is confirmed across all concurrent writers. If two writers race on the same file, one loses. If a shared runtime dies mid-flight, in-progress writes evaporate. The caller gets no signal either way.

What makes this hard to debug is where the evidence lands. The write site looks clean. The gap shows up at the read site: a future session, a downstream consumer, or a human checking disk from outside the agent's process. By then, the causal chain is several hops from where the failure occurred.

Closing this class requires three things.

Writes to shared state need to go through a coordination layer that enforces at-most-one-writer semantics. File locks, atomic renames, or a mediating coordinator all work. The mechanism matters less than the invariant: concurrent writes to the same artifact are serialized, not raced.

That coordination layer needs to sit in the critical path of the write. If the agent can bypass it, the invariant breaks under concurrent load.

And failures need to surface at the write site, not the read site. A write that cannot be confirmed as durable should return an error to the caller. A write that silently succeeds but leaves nothing behind is a lie the next session has to investigate.

None of this is new. Distributed databases and cache coherence protocols solved this class decades ago. What's changed is that multi-agent systems are hitting it at the filesystem and plugin layer, where the coordination primitives are still thin.

We built agent-coherence to address this for the AI agent case. The coordinator enforces single-writer invariants across concurrent sessions and surfaces write failures at the call site instead of the read site.

Library at github.com/hipvlady/agent-coherence, with adapters for LangGraph, CrewAI, and Claude Code workflows.