Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does 'soft-state' in BASE mean?

BASE stands for 'Basically Available, Soft state, Eventually consistent'

So, I've come this far: "Basically Available: the system is available, but not necessarily all items in it at any given point in time" and "Eventually Consistent: after a certain time all nodes are consistent, but at any given time this might not be the case" (please correct me if I'm wrong).

But, what is meant exactly by 'Soft State'? I haven't been able to find any decent explanations on the internet yet.

like image 815
Ruben Steins Avatar asked Jan 31 '11 13:01

Ruben Steins


People also ask

What is soft state of any system?

Soft state indicates that the state of the system may change over time, even without input. This is because of the eventual consistency model. Eventual consistency indicates that the system will become consistent over time.

What does BASE stand for in NGT?

BASE stands for - Basic Availability - The database appears to work most of the time.

What is basically available soft state eventual consistency?

BASE, also known as Eventual Consistency, is seen as the polar opposite of Atomicity, Consistency, Isolation, Durability (ACID), properties seen as desirable in traditional database systems such as a Relational Database Management System (RDBMS).

What are BASE properties in NoSQL?

BASE stands for: Basically Available – Rather than enforcing immediate consistency, BASE-modelled NoSQL databases will ensure availability of data by spreading and replicating it across the nodes of the database cluster. Soft State – Due to the lack of immediate consistency, data values may change over time.


1 Answers

This page (originally here, now available only from the web archive) may help:

[soft state] is information (state) the user put into the system that will go away if the user doesn't maintain it. Stated another way, the information will expire unless it is refreshed.

By contrast, the position of a typical simple light-switch is "hard-state". If you flip it up, it will stay up, possibly forever. It will only change back to down when you (or some other user) explicitly comes back to manipulate it.

The BASE acronym is a bit contrived, and most NoSQL stores don't actually require data to be refreshed in this way. There's another explanation suggesting that soft-state means that the system will change state without user intervention due to eventual consistency (but then the soft-state part of the acronym is redundant).

There are some specific usages where state must indeed be refreshed by the user; for example, in the Cassandra NoSQL database, one can give all rows a time-to-live to make them completely soft-state (they will expire unless refreshed), but this is an unusual mode of usage (a transient cache, essentially).

"Soft-state" might also apply to the gossip protocol within Cassandra; a new node can determine the state of the cluster from the gossip messages it receives, and this cluster state must be constantly refreshed to detect unresponsive nodes.

like image 50
DNA Avatar answered Oct 05 '22 12:10

DNA