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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
B
Blog
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
IT之家
IT之家
D
Docker
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta

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
The Mystery of the Redis Read-Only Error in a Single-Node...
Swayam Mahes · 2026-05-14 · via DEV Community

If you manage a realtime application, you know that Redis is often the beating heart of your infrastructure. Recently, our production application—which relies heavily on Redis for both backend caching and realtime collaboration (via Hocuspocus/Yjs)—experienced a bizarre and catastrophic outage.

Every few months, out of nowhere, Redis would randomly crash our system. The logs were flooded with a single, confusing error:

READONLY You can't write against a read only replica

The symptoms were severe: writes failed entirely, reads stopped working, and the entire realtime system came to a grinding halt. Restarting the Docker container fixed the issue immediately, but without a root cause, it was only a matter of time before it happened again.

Here is a step-by-step breakdown of how I investigated, debugged, and ultimately solved this elusive Redis bug.


Step 1: Evaluating the Infrastructure

Before diving into logs, I needed to confirm exactly what our architecture looked like.

  • Hosting: A single Google Cloud Platform (GCP) VM (t2d-standard-1 with Debian 12, 1 vCPU, 4 GB RAM).
  • Deployment: Redis running inside a Docker container.
  • Topology: A single Redis node. No Redis Cluster. No Sentinel. No intentional replicas.

This is where the mystery deepened. If there was only one Redis node, how could it possibly think it was a "read-only replica"?

Step 2: Checking the Current Redis State

My first move was to check the current role of the Redis instance. I connected to the server and ran:

redis-cli INFO replication

Enter fullscreen mode Exit fullscreen mode

The output was telling:

role:master
connected_slaves:0
master_failover_state:no-failover

Enter fullscreen mode Exit fullscreen mode

Redis was clearly functioning as a master with no connected replicas. Whatever had caused the READONLY error wasn't a permanent state change.

Step 3: Ruling Out the Red Herrings

When debugging distributed systems, it's easy to go down the wrong rabbit hole. Here is what I evaluated and quickly ruled out:

  1. Redis Cluster & Sentinel Failovers: I wondered if an automated failover had demoted our primary node. However, since we weren't running Cluster or Sentinel mode, there was no orchestration tool present to trigger a failover or slot migration.
  2. Redlock / Distributed Lock Split-Brain: While distributed locks can cause chaos, they don't change a server's replication role.
  3. The "Read" Clue: If Redis had truly become a standard replica, reads should still have worked. The fact that reads and writes both failed suggested this wasn't just a simple case of a node functioning as a healthy replica.

Step 4: Investigating Memory and Resources

Could the server be buckling under memory pressure? I checked the system and Redis memory stats:

redis-cli INFO memory

Enter fullscreen mode Exit fullscreen mode

The results were eye-opening, but not in the way I expected:

  • used_memory_human: 1.60M
  • used_memory_rss_human: 15.85M
  • total_system_memory_human: 3.83G

Our actual dataset was only about 672 KB! Redis was using a fraction of a percent of the VM's RAM. It wasn't an Out-Of-Memory (OOM) crash.

However, I discovered a massive production risk in our configuration:

maxmemory:0
maxmemory_policy:noeviction

Enter fullscreen mode Exit fullscreen mode

With no memory limit and noeviction set, if Redis ever did fill up, it would refuse all writes. While this wasn't the root cause of the current bug, it was a ticking time bomb that needed immediate fixing.

Step 5: Piecing Together the Root Cause

With OOM and Cluster failovers ruled out, the evidence pointed toward a few highly probable culprits for a single-node setup:

  • Accidental REPLICAOF Execution: A rogue script, automation, or network blip might have accidentally sent a REPLICAOF host port command, temporarily turning the node into a replica.
  • Stale Node.js Client Connections: Our Node.js backend and Hocuspocus websocket server maintain long-lived TCP connections. If the network dropped or the Docker container glitched, the client connection pool might have ended up in a stale state, misinterpreting the connection status.
  • Docker/Network Instability: Temporary network partitions or disk IO blocks (during AOF/RDB saves) might have forced Redis into a protective mode that the application clients misinterpreted.

The temporary nature of the issue, combined with both reads and writes failing, strongly pointed to a combination of stale client connections combined with a transient Docker or network interruption. Restarting the container severed those dead connections and forced a clean reconnect.

Step 6: The Fix and Future-Proofing

To stabilize the system and ensure this doesn't happen again, I implemented a multi-layered fix.

1. Hardening the Memory Config

First, I patched the memory risk by adding proper limits to /etc/redis/redis.conf:

maxmemory 2gb
maxmemory-policy allkeys-lru

Enter fullscreen mode Exit fullscreen mode

2. Disabling Dangerous Commands

To prevent any accidental role changes in our single-node setup, I locked down the replication commands in redis.conf:

rename-command REPLICAOF ""
rename-command SLAVEOF ""

Enter fullscreen mode Exit fullscreen mode

3. Creating a Debug Playbook

I established a strict rule: Next time it fails, do not restart immediately. Instead, run these diagnostics to capture the exact failure state:

redis-cli INFO replication
redis-cli INFO stats
redis-cli CONFIG GET replica-read-only
docker logs <redis-container-name> --tail 200

Enter fullscreen mode Exit fullscreen mode

4. Rethinking the Architecture

While a single Redis node is fine for basic caching, heavy realtime workloads (like Hocuspocus Pub/Sub) demand high availability. Our long-term fix isn't to overcomplicate things with Redis Cluster, but rather to migrate to a standard Primary + Replica + Sentinel setup. This will give us automatic failover and separate the realtime collaboration load from the standard cache.

Conclusion

Sometimes the most intimidating errors—like an impossible READONLY replica state on a single node—are symptoms of deeper infrastructural quirks rather than actual state changes. By methodically checking the actual Redis state, analyzing memory limits, and ruling out red herrings, we not only diagnosed the immediate issue but uncovered hidden risks that made our production environment infinitely stronger.