Softwr

Technology · head to head

etcd vs Redis

etcd logo

etcd

Technology

A distributed key-value store using Raft consensus, built for cluster coordination rather than application data.

From
On request
Rated
-
Redis logo

Redis

Technology

The real-time data platform

From
Free
Rated
-

The short version

  • Only Redis has a free tier, so it costs nothing to try first.
  • Each has a real cost: etcd it is sized for coordination data, not application data: the default backend quota is 2 GB and 8 GB is the documented recommended maximum, and exceeding it puts the cluster into a NOSPACE alarm where it accepts no writes until an operator compacts, defragments and clears the alarm by hand.; Redis licensing changed from BSD to AGPL in 2025, impacting open-source usage
  • They diverge on capability: etcd covers Raft consensus, Redis covers In-memory data store.
  • Prices and features above were last checked on 30 August 2026.

Where they differ

Only the attributes on which etcd and Redis actually diverge.

Attributes where etcd and Redis differ
AttributeetcdRedis
Starting priceOn requestFree
Pricing modelopen-sourceUnknown
Free tierNoYes
PlatformsWebLinux, macOS, Windows
FoundedUnknown2009

Identical on both: user rating (Not yet rated), category (Technology).

What each one covers

Drawn from each product's published feature list. An absence here means we hold no record of it - not that the product lacks it.

Only in etcd

  • Raft consensus
  • Linearizable reads
  • Leases
  • Watches
  • MVCC revision history
  • Role-based access control
  • Snapshot backup and restore

Only in Redis

  • In-memory data store
  • Data structures
  • Pub/Sub messaging
  • Lua scripting
  • Persistence options
  • Replication
  • Clustering
  • Python

Both cover

  • Transactions

What people use each for

The jobs each tool is most often brought in to do.

etcd

  • Storing Kubernetes cluster state, which is what the overwhelming majority of etcd deployments are doingnot Redis
  • Leader election and distributed locking in a home-grown scheduler or control plane, using leases and transactionsnot Redis
  • Service discovery and dynamic configuration where readers need to be notified of changes rather than poll for themnot Redis
  • Coordinating failover in a clustered database, as Patroni does for PostgreSQLnot Redis

Redis

  • Cachingnot etcd
  • Session managementnot etcd
  • Real-time analyticsnot etcd
  • Message queuingnot etcd
  • Leaderboardsnot etcd

Where each one falls short

Documented limitations, not opinions. Every one is a constraint you would hit in normal use.

etcd

  • It is sized for coordination data, not application data: the default backend quota is 2 GB and 8 GB is the documented recommended maximum, and exceeding it puts the cluster into a NOSPACE alarm where it accepts no writes until an operator compacts, defragments and clears the alarm by hand.
  • Every write is replicated and fsynced before acknowledgement, so cluster performance is bounded by the slowest disk in it; a member on network-attached storage with high fsync latency causes leader elections and cluster-wide latency spikes that look like network problems and are not.
  • Adding members increases availability but reduces write throughput, because each write must reach a larger quorum; you run three or five members for fault tolerance, and increasing capacity means faster hardware rather than more nodes.
  • There is no sharding and no multi-tenancy, so isolating workloads means running separate clusters, each with its own quorum, certificates, backup schedule and upgrade path, and that operational multiplication is often unexpected.
  • Running it yourself is a real job: periodic compaction and defragmentation, snapshot backups you have actually rehearsed restoring, and rotation of both peer and client TLS certificates, none of which happens automatically outside a managed Kubernetes service.
  • Losing quorum is not self-healing; recovering a cluster that has lost a majority means restoring from a snapshot and accepting that everything written since that snapshot is gone, which makes backup frequency a data-loss budget decision rather than a routine setting.

Redis

  • Licensing changed from BSD to AGPL in 2025, impacting open-source usage
  • All data must fit in memory, limiting scalability to available RAM
  • No built-in support for multi-tenancy
  • Limited transaction support compared to traditional databases

Pricing, plan by plan

etcd

On request

No published plan breakdown. See the etcd review.

Redis

Free

No published plan breakdown. See the Redis review.

Which should you pick?

Choose etcd if

  • You need raft consensus.
  • You also want linearizable reads.

Choose Redis if

  • You need in-memory data store.
  • You want to start without paying.
  • You work on Linux, macOS, Windows.
  • You also want data structures.

Questions people ask

Is etcd or Redis better?
Neither clearly leads. etcd starts at On request and Redis at Free, and user ratings are close enough to be indistinguishable. Choose on capability and platform support.
Which is cheaper, etcd or Redis?
Redis has a free tier; the other does not. Paid plans start at On request for etcd and Free for Redis.
Does etcd or Redis run on more platforms?
etcd runs on Web. Redis runs on Linux, macOS, Windows.
Can I use Redis for free?
Yes. Redis has a free tier, so you can try it without paying. etcd starts at On request.
What is etcd best used for?
etcd is most often used for storing kubernetes cluster state, which is what the overwhelming majority of etcd deployments are doing, leader election and distributed locking in a home-grown scheduler or control plane, using leases and transactions, service discovery and dynamic configuration where readers need to be notified of changes rather than poll for them, coordinating failover in a clustered database, as patroni does for postgresql. Of those, storing kubernetes cluster state, which is what the overwhelming majority of etcd deployments are doing and leader election and distributed locking in a home-grown scheduler or control plane, using leases and transactions are not what Redis is typically brought in for.
What can etcd do that Redis cannot?
etcd covers Raft consensus, Linearizable reads, Leases, Watches. Redis covers In-memory data store, Data structures, Pub/Sub messaging, Lua scripting. Both handle Transactions.

Answered from the vendors’ own pages

etcd: Can I use etcd as an application database?

No. It is designed for metadata and coordination, with a recommended maximum store size of around 8 GB, no sharding and a write path deliberately optimised for durability rather than throughput. Application data belongs in a database built for it.

Redis: Is Redis open source?

Redis was open source under the BSD license since its inception in 2009 and has remained open source. However, in 2024-2025, Redis Labs changed licensing to source-available and AGPL, prompting the creation of Valkey, a BSD-licensed open-source fork.

Source
etcd: How many members should a cluster have?

Three for most cases, five where you need to survive two simultaneous failures. Always an odd number, because an even-sized cluster gains no additional fault tolerance while making quorum harder to reach.

Redis: What is Redis used for?

Redis is an in-memory data structure store used primarily as a cache, database, and message broker. It provides high-speed data access for real-time applications, sessions, leaderboards, real-time analytics, and other use cases requiring fast data retrieval.

Source
etcd: What happens when the store fills up?

The cluster raises a NOSPACE alarm and stops accepting writes, becoming effectively read-only. Recovery requires compacting old revisions, defragmenting each member and then explicitly disarming the alarm, all done by an operator.

etcd: Why is my etcd cluster slow or unstable?

Almost always disk latency. Because every write is fsynced before acknowledgement, slow or shared storage causes heartbeat timeouts, leader elections and cascading latency. Local SSDs with low fsync latency are effectively a requirement.

etcd: How does it compare with Consul or ZooKeeper?

All three provide consensus-backed coordination. etcd has the simplest data model and the Kubernetes ecosystem behind it; Consul bundles service discovery, health checking and a service mesh; ZooKeeper is older, JVM-based and still common under Kafka and Hadoop-era systems.

Share

Related pages

Other head to heads