educative.io

Educative

BASE (Basically Available, Soft-state, Eventually consistent)

explain BASE (Basically Available, Soft-state, Eventually consistent) in detail


Type your question above this line.

Course: https://www.educative.io/collection/5668639101419520/5649050225344512
Lesson: https://www.educative.io/collection/page/5668639101419520/5649050225344512/4947480908660736

Hi Swati_Singh,

BASE is a term that refers to database processing in a NoSQL database, such as a data lake.

  • Basically Available: It means that in the event of failure the system is guaranteed to be available.
  • Soft State: It means the state of teh data can be changed with interacting with the application.
    *Eventual Consistency: It means, after the application input, the system will gradually become consistent. The data will be duplicated over several nodes until it reaches a consistent state. At the transaction level, however, consistency is not ensured.

Thanks @Ammar_Ahmad_Farid .