Dirty Reads in SQL Server AlwaysOn

六月ゝ 毕业季﹏ 提交于 2019-12-12 08:55:57

问题


I have a pair of SQL Server 2014 databases set up as a synchronous AlwaysOn availability group.

Both servers are set to the Synchronous commit availability mode, with a session timeout of 50 seconds. The secondary is set to be a Read-intent only readable secondary.

If I write to the primary and then immediately read from the secondary (via ApplicationIntent=ReadOnly), I consistently read dirty data (i.e. the state before the write). If I wait for around a second between writing and reading, I get the correct data.

Is this expected behaviour? If so, is there something I can do to ensure that reads from the secondary are up-to-date?

I'd like to use the secondary as a read-only version of the primary (as well as a fail-over), to reduce the load on the primary.


回答1:


There is no way you can get dirty reads unless you are using no-lock hint..

When you enable Read Only secondaries in AlwaysOn..Internally SQL uses rowversioning to store Previous version of the row..

further you are using Synchronous commit mode,this ensures log records are committed first on secondary,then on primary..

what you are seeing is Data latency..

This whitePaper deals with this scenario..Below is relevant part which helps in understanding more about it..

The reporting workload running on the secondary replica will incur some data latency, typically a few seconds to minutes depending upon the primary workload and the network latency.

The data latency exists even if you have configured the secondary replica to synchronous mode. While it is true that a synchronous replica helps guarantee no data loss in ideal conditions (that is, RPO = 0) by hardening the transaction log records of a committed transaction before sending an ACK to the primary, it does not guarantee that the REDO thread on secondary replica has indeed applied the associated log records to database pages.

So there is some data latency. You may wonder if this data latency is more likely when you have configured the secondary replica in asynchronous mode. This is a more difficult question to answer. If the network between the primary replica and the secondary replica is not able to keep up with the transaction log traffic (that is, if there is not enough bandwidth), the asynchronous replica can fall further behind, leading to higher data latency.

In the case of synchronous replica, the insufficient network bandwidth does not cause higher data latency on the secondary but it can slow down the transaction response time and throughput for the primary workload



来源:https://stackoverflow.com/questions/39573960/dirty-reads-in-sql-server-alwayson

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!