Backend & systems·Consistency and replication
the page shows the new comment, you refresh, it disappears, you refresh again and it is back, because you hit three different replicas.
Monotonic reads
The guarantee that a client never sees time move backwards: once it has read a value, subsequent reads do not return older state. It breaks when consecutive requests land on replicas with different lag. Sticky routing per session is the usual fix, and it costs you a little load balancing freedom.