如何查看distirbution agent的执行进度

来源:互联网 发布:深圳大学怎么样 知乎 编辑:程序博客网 时间:2024/05/19 02:24

transactional replication troubleshooting的过程中,经常会遇到下面的场景:

客户在发布端执行了一个几百万行的更新,结果导致性能下降。 客户很想知道目前distribution agent的进度,完成的百分比,决定是等下去还是跳过这个过程。如果已经完成了90%,那么贸然停止就非常可惜了,并且rollback的操作也是要很长时间的。

   

下面介绍如何查看进度。

如果distribution agent已经启用了verbose log,可以通过verbose log来查看进度. Command id代表已经执行过的数量;transaction seqno表示正在进行的事务的xact_seqno 然后在distribution数据库执行select count(*) From distribution..msrepl_commands with(nolock) where xact_seqno=@xact_seqno.

对比结果就可以知道进度了。

   

如果没有启用verbose log,就比较麻烦了,下面是具体的步骤。

  1. 找到相应的distribution agent 名称和publisher_database_id

    select *From distribution..msdistribution_agents

  2. 通过名称就可以找到distribution agent进行的process id. distributor上执行下面的语句。

    select hostprocess from sys.sysprocesses where program_name=@mergeAgentName

  3. 同一个distribution agent进程的process id是相同的,所以可以通过这个process id(对应trace里的client process id),使用sql server trace得到distribution agent正在subscriber端执行的语句.
  4. 假设我们得到了下面这个语句exec [dbo].[sp_MSupd_dbota] default,511,4,0x02
  5. 根据这个存储过程,我们可以得到相应的aritlce_id
    1. subscription database 执行sp_helptext,得到表的名称
    2. distribution数据库查询得出article_id. select article_id from msarticles where destination_object=@tablename
  6. subscriber上执行下面的语句,得到subscription数据库当前当xact_seqno. (请将第一步得到的distribution name带入@distribution_agent

    select transaction_timestamp,* From MSreplication_subscriptions wheredistribution_agent=@distribution_agent

  7. 接下来就可找到distribution agent当前正在执行的xact_seqno将第一步得到的publisher_database_id,5步得到的article_id和上一步得到的xact_seqno带入下面的查询

    select xact_seqno,count(*) as number From distribution..msrepl_commands with(nolock)

    where publisher_database_id=@publisher_database_id and article_id=@article_id

    xact_seqno>@xact_seqno group by xact_seqno order by xact_seqno

  8. 顺序靠前,并且number较大的就是正在执行的事务了。 您可能会问,为什么不是第六步得到的xact_seqno的下一个呢(select min(xact_seqno)From distribution..msrepl_commands with(nolock)where publisher_database_id=@publisher_database_id and xact_seqno>@xact_seqno).

    因为distribution 并不是每一个事务都单独提交的,而是根据CommitBatchSize CommitBatchThreshold来提交的,这样可以提高性能。 xmipkcnb

  9. distribution数据执行sp_browsereplcmds @xact_seqno, @xact_seqno

  10. 用第四步得到的语句去查找,这样就可以知道当前执行到了什么位置
原创粉丝点击