Share via

AlwaysOn Sync setup

Vishal Garg 1,576 Reputation points
2021-06-02T17:13:20.13+00:00

Experts :

As of now we have one server on which one SQL Instance is there which needs to be converted to alwayson sync replication between 2 Alwayson instances in a DC(By following the required steps).

On the existing SQL Instance Is there a way to calculate the change of data(Databasewise in MB/GB) for judging the amount of data flow which will happen between the always on setup which will be coming up.

SQL Server | Other
SQL Server | Other

Additional SQL Server features and topics not covered by specific categories

0 comments No comments

2 answers

Sort by: Most helpful
  1. Cris Zhan-MSFT 6,676 Reputation points
    2021-06-03T03:28:15.587+00:00

    Hi,

    The Always on availability group transfers the transaction log records that occurred in the primary replica to the secondary replica, and then the secondary replica harden and redo these transactions.

    With the secondary replica configured in synchronous commit mode, the primary replica needs to confirm that the secondary replica has completed log harden before it can commit the transaction (this may have some performance impact). When you want to evaluate the data size, rate and other factors synchronized by the Always on Availability Group, I suggest that you first configure an asynchronous commit replica, it will almost not affect the performance of the primary replica. After the configuration is completed, use the AlwaysOn performance counter(SQL Server, Availability Replica, SQL Server, Database Replica), or AlwaysOn related DMVs and dashborad to monitor these factors, and whether there are any delays, queues, etc. After that, you can change this replica to synchronous commit mode, or add another synchronous commit replica.

    Was this answer helpful?

    0 comments No comments

  2. Vishal Garg 1,576 Reputation points
    2021-06-02T17:18:46.537+00:00

    This is SQL 2017/2019

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.