SHOW SLAVE STATUS幾個常見參數


--顯示當前讀取的Master節點二進制日誌文件和文件位置,對應線程I/O thread Master_Log_File: mysql-bin.000011 Read_Master_Log_Pos: 120 --顯示當前Slave節點正在處理的中繼日誌文件和位置,對應線程 SQL thread Relay_Log_File: relay-bin.000002 Relay_Log_Pos: 283 --顯示當前Slave節點應用的日誌 在master節點中對應的位置。
--官方文檔:The coordinates given by (Relay_Master_Log_File, Exec_Master_Log_Pos) in the master's binary log correspond to the coordinates given by (Relay_Log_File, Relay_Log_Pos) in the relay log
 Relay_Master_Log_File: mysql-bin.000011
Exec_Master_Log_Pos: 120
  
 從字面意思看, (Relay_Master_Log_File, Exec_Master_Log_Pos)和(Relay_Log_File,Relay_Log_Pos)是對應的,它們表示的是Slave中的SQL進程中正在執行的語句的位置,代表的
是Slave和Master之間的同步狀態。當Slave中Relay_Master_Log_File和Master_Log_File相同且Read_Master_Log_Pos和Exec_Master_Log_Pos徹底相同時,代表Slave和Master處於徹底同步的狀態
相關文章
相關標籤/搜索