sql server - distribution.dbo.MSdistribution_history comments explanation -
the comment column of distributor.dbo.msdistribution_history contains comments such as
<stats state="2" fetch="11554" wait="214007" cmds="17898546" callstogetreplcmds="106880"> <sincelaststats elapsedtime="300" fetch="8" wait="291" cmds="1948689" cmdspersec="6495.000000" /> </stats> the state value translates
state indication 1 normal log 2 reader thread has wait writer 3 writer thread has wait reader is comment telling me reader thread waiting writer thread has read 1948689 cmds since last stats entry. or telling me reader thread waiting writer thread , writer thread has written 1948689 cmds since last stats entry?
both cmd values relate number of commands written. since last stats - cmds cmds written since last entry , stats- cmd accumulation of cmds written since last comment state of 1.
Comments
Post a Comment