Can I use ETCD over Cassandra?

881 views Asked by At

I want to store some data in Key/Value format. I am looking for some solution which should be highly available and faster. I know that ETCD is distributed reliable key-value store. What I am not able to figure out is should I use ETCD or Cassandra when my primary objective is only to store data.

1

There are 1 answers

0
Vaibhaw K On

Etcd has the quintessential use case of storing metadata in a distributed system.

It will not be best suited as a primary database because -

  • It lacks data sharding.
  • Doesn't support all kinds of data types. Clients will have to handle based on their needs.
  • Supported maximum volume (~ 8GB)

A lot depends on your use case. It can be used but may not be a best fit.