In a system following eventual consistency, what implications does it have on Read operations after a Write operation?

  • Strong consistency
  • Read operations may return stale data
  • Write operations are blocked until consistency is achieved
  • Write operations are delayed
In a system with eventual consistency, Read operations may return stale or outdated data for a period of time after a Write operation. This is because eventual consistency prioritizes availability and performance over strict consistency. Strong consistency (Option 1) ensures that all reads return the most recent write but may lead to higher latency. Options 3 and 4 are not characteristic of eventual consistency.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *