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

推荐订阅源

D
Docker
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
T
Tailwind CSS Blog
U
Unit 42
C
Check Point Blog
S
SegmentFault 最新的问题
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
罗磊的独立博客
小众软件
小众软件
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net

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
🤔 If Data Survives in Deployments, Why Do We Need Statefu...
Pravesh Sudha · 2026-06-02 · via DEV Community

Hola Amigos 👋

Welcome to the second episode of K8s with Pravesh. If you're new to the series, check out the first episode where we learned how Deployments and Services work under the hood.

Most people believe that StatefulSets are needed because Deployments lose data. But is that actually true?

In today's blog, we'll answer this question by exploring StatefulSets vs Deployments through a practical hands-on demonstration.


🚀 Getting Started

Head over to my GitHub repository, fork it under your own GitHub account, and clone the code:

git clone https://github.com/<your-username>/K8s_with_Pravesh.git

Enter fullscreen mode Exit fullscreen mode

Navigate to the project directory:

cd K8s_with_Pravesh/part-02-statefulsets/configs

Enter fullscreen mode Exit fullscreen mode

Here you'll find:

  • Secrets and ConfigMaps
  • Deployment manifest
  • StatefulSet manifest

First, apply the Secrets and ConfigMaps. These contain the MySQL password, database name, and MySQL initialization script.

kubectl apply -f secrets-and-config.yml

Enter fullscreen mode Exit fullscreen mode


🧪 Experiment 1: Deployment + PVC

Now let's apply our Deployment manifest.

This file contains:

  • Persistent Volume Claim (PVC)
  • Deployment
  • Service

Apply it using:

kubectl apply -f deployment.yml

Enter fullscreen mode Exit fullscreen mode

Once the pod is running, we'll create a sample record inside MySQL, delete the pod, and verify whether the data survives.

Get the pod name:

kubectl get pods

Enter fullscreen mode Exit fullscreen mode

Connect to MySQL:

kubectl exec -it mysql-XXXXXX-XXXX -- mysql -uroot -p

Enter fullscreen mode Exit fullscreen mode

Enter the password:

Pravesh

Enter fullscreen mode Exit fullscreen mode

(You can change this value in the secrets-and-config.yml file.)

Inside MySQL, run:

USE crud_app;

INSERT INTO users(name,email,password)
VALUES('Pravesh','pravesh@example.com','secret');

Enter fullscreen mode Exit fullscreen mode

Exit MySQL:

exit

Enter fullscreen mode Exit fullscreen mode

Delete the pod:

kubectl delete pod mysql-XXXXXX-XXXX

Enter fullscreen mode Exit fullscreen mode

Wait for Kubernetes to create a replacement pod:

kubectl get pods

Enter fullscreen mode Exit fullscreen mode

Connect to the new pod:

kubectl exec -it mysql-XXXXXX-XXXX -- mysql -uroot -p

Enter fullscreen mode Exit fullscreen mode

Run:

USE crud_app;

SELECT * FROM users;

Enter fullscreen mode Exit fullscreen mode

You'll notice that the data is still there.

Wait... The Data Survived?

At this point, many people expect the data to disappear because we're using a Deployment.

However, the data survived.

So the obvious question becomes:

If data survives in a Deployment, why do we even need StatefulSets?

The answer is simple.

The data survived because we attached a Persistent Volume Claim (PVC) to the MySQL container. The PVC preserved the data, not the Deployment.

In other words:

Pod
 ↓
PVC
 ↓
Persistent Storage

Enter fullscreen mode Exit fullscreen mode

The pod can disappear and be recreated, but the storage remains intact.


🧪 Experiment 2: StatefulSet

Now let's perform the same experiment using a StatefulSet.

Apply the StatefulSet manifest:

kubectl apply -f statefulset.yml

Enter fullscreen mode Exit fullscreen mode

Wait for the pod to start:

kubectl get pods

Enter fullscreen mode Exit fullscreen mode

You'll notice that the pod has a predictable name:

mysql-0

Enter fullscreen mode Exit fullscreen mode

Connect to MySQL:

kubectl exec -it mysql-0 -- mysql -uroot -p

Enter fullscreen mode Exit fullscreen mode

Insert another record:

USE crud_app;

INSERT INTO users(name,email,password)
VALUES('Pravesh','pravesh@example.com','secret');

Enter fullscreen mode Exit fullscreen mode

Exit MySQL:

exit

Enter fullscreen mode Exit fullscreen mode

Delete the pod:

kubectl delete pod mysql-0

Enter fullscreen mode Exit fullscreen mode

Wait for Kubernetes to recreate it:

kubectl get pods

Enter fullscreen mode Exit fullscreen mode

Notice something interesting:

mysql-0

Enter fullscreen mode Exit fullscreen mode

The pod name remains exactly the same.

Connect again:

kubectl exec -it mysql-0 -- mysql -uroot -p

Enter fullscreen mode Exit fullscreen mode

Verify the data:

USE crud_app;

SELECT * FROM users;

Enter fullscreen mode Exit fullscreen mode

The data survived once again.


🤨 So What Is the Real Difference?

Let's inspect the PVCs:

kubectl get pvc

Enter fullscreen mode Exit fullscreen mode

With StatefulSets, each replica gets its own dedicated PVC.

For example:

mysql-data-mysql-0
mysql-data-mysql-1
mysql-data-mysql-2

Enter fullscreen mode Exit fullscreen mode

This creates a stable relationship between a pod and its storage.

StatefulSets manage a group of pods while maintaining a sticky identity for each pod. Unlike Deployments, StatefulSet pods are not interchangeable.

Each pod receives:

  • A stable hostname
  • A stable network identity
  • Persistent storage
  • Ordered deployment and termination

Even if a pod is rescheduled, it retains its identity.

When Should You Use StatefulSets?

StatefulSets are valuable when your application requires:

  • Stable, unique network identifiers
  • Stable, persistent storage
  • Ordered, graceful deployment and scaling
  • Ordered rolling updates

Common examples include:

  • MySQL
  • PostgreSQL
  • Kafka
  • ZooKeeper
  • Redis Clusters
  • Elasticsearch

Deployment vs StatefulSet

Feature Deployment StatefulSet
Data Persistence ✅ With PVC ✅ With PVC
Stable Pod Name
Stable Network Identity
Dedicated Storage Per Replica
Ordered Startup/Shutdown

Conclusion

A common misconception is that StatefulSets exist because Deployments cannot persist data. As we saw in this blog, that isn't entirely true.

A Deployment can preserve data just fine when paired with a Persistent Volume Claim. The PVC is responsible for data persistence, not the Deployment itself.

The real strength of StatefulSets lies in providing stable identities, predictable networking, dedicated storage per replica, and ordered deployment behavior. These features make StatefulSets the ideal choice for databases and other stateful distributed systems.

If you're running stateless applications such as frontend applications, REST APIs, or microservices, Deployments are usually the right choice. But when your workloads require stable identities and persistent state, StatefulSets become essential.

I hope this hands-on comparison helped clarify the difference between Deployments and StatefulSets.

See you in the next episode of K8s with Pravesh! 🚀


🌟 Connect With Me

If you found this article helpful, consider sharing it with your network and following the series for upcoming Kubernetes content.