Monotonic Reads 保證
覺得我們的內容實用嗎? MyApollo 電子報讀者募集中!歡迎訂閱電子報!
Monotonic Reads 是 1 種一致性(consistency)的保證,它保證讀取到資料不會比前一次讀取到的還要舊。
如果沒有 Monotonic Reads 保證,會發生什麼事呢?
請看下圖:
假設 Client A 寫入 1 筆資料 A 到 Primary node, 之後 Client B 從 Primary 讀取到資料 A, 之後它又發出 1 次讀取資料 A 的請求,結果請求的對象是還沒同步完成的 Secondary node, 最後找不到資料 A, 對 Client B 來說,資料狀態就像回到過去一樣。
順帶一提, Monotonic Reads 只保證在同 1 個 process / session 內作用。