1 Answers
DynamoDB
Default is eventually consistent.
GetItem provides an eventually consistent read by default. If your application requires a strongly consistent read, set ConsistentRead to true.
SOURCE:
GetItem
https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_GetItem.html
Another great example is DNS (see following). Maybe not what you think of when you think database, however it is a true BASE architecture.
The most popular system that implements eventual consistency is DNS (Domain Name System). Updates to a name are distributed according to a configured pattern and in combination with time-controlled caches; eventually, all clients will see the update.
SOURCE:
2008 Dec 23
Eventually Consistent – Revisited
by Werner Vogels (CTO Amazon)
https://www.allthingsdistributed.com/2008/12/eventually_consistent.html