当前位置:网站首页>Show slave status \ read in G_ Master_ Log_ POS and relay_ Log_ The (size) relationship of POS
Show slave status \ read in G_ Master_ Log_ POS and relay_ Log_ The (size) relationship of POS
2022-07-06 08:52:00 【wx5caecf2ed0645】
Just to clarify, there are three sets of file/position coordinates in SHOW SLAVE STATUS:
1) The position, ON THE MASTER, from which the I/O thread is reading:Master_Log_File/Read_Master_Log_Pos. ----- Relative to the main library , Where to read the binary log of the main library from the Library , yes IO Threads
2) The position, IN THE RELAY LOGS, at which the SQL thread is executing:Relay_Log_File/Relay_Log_Pos ---- Relative to slave Library , It's from the library sql Where the thread executes to
3) The position, ON THE MASTER, at which the SQL thread is executing:Relay_Master_Log_File/Exec_Master_Log_Pos ---- Relative to the main library , It's from the library sql Where the thread executes to
Numbers 2) and 3) are the same thing, but one is on the slave and the other is on the master.
mysql > show slave status \G
Master_Log_File: mysql-bin-m.000329
Read_Master_Log_Pos: 863952156 ---- The two lines above represent IO Threads , Binary files relative to the main library
Relay_Log_File: mysql-relay.003990
Relay_Log_Pos: 25077069 ---- The above two lines represent sql Threads , Relative to the relay log file of the slave Library
Relay_Master_Log_File: mysql-bin-m.000329
.....
Exec_Master_Log_Pos: 863936961--- The above two lines represent sql Threads , Relative to the main library
( For the convenience of demonstration , I advanced the above line .)
Relay_Log_Space: 25092264--- At present relay-log File size
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
You can see from above ,read_master_log_pos It will always be greater than exec_master_log_pos Value ( It could be the same ): Because a value represents io Threads , A value represents sql Threads ;sql The thread must be io After the thread .( Of course ,io Threads and sql Threads need to read and write the same file , Otherwise, the comparison will be meaningless ) .
stay binlog in ,Xid Represents the submitted transaction number . Now let's go to the master and slave libraries respectively , Check it out , In the main warehouse mysql-bin-m.000329 Of documents 863936961 Whether the location is the same as that of the slave Library mysql-relay.003990 Of documents 25077069 There are the same sql sentence .
First look at the main library binlog:
# at 863936961
#100111 20:11:39 server id 115000 end_log_pos 863937234 Query thread_id=515886 exec_time=0 error_code=0
use mall00/*!*/;
UPDATE mall00.t_item_sid88 SET item_end_time = 1263816699, item_is_online = 1, item_status = 1 WHERE iid IN (94322390, 94322428, 94322452, 94322473, 94322506, 94322532, 94322604, 94322641, 94322670, 94322706)/*!*/;
# at 863937234
#100111 20:11:39 server id 115000 end_log_pos 863937261 Xid = 1225244590
COMMIT/*!*/;
# at 863937261
#100111 20:11:39 server id 115000 end_log_pos 863937457 Query thread_id=515886 exec_time=0error_code=0
SET TIMESTAMP=1263211899/*!*/;
Look at the Library relaylog:
# at 25077069
#100111 20:11:39 server id 115000 end_log_pos863937234 Query thread_id=515886 exec_time=0 error_code=0
use mall00/*!*/;
UPDATE mall00.t_item_sid88 SET item_end_time = 1263816699, item_is_online = 1, item_status = 1 WHERE iid IN (94322390, 94322428, 94322452, 94322473, 94322506, 94322532, 94322604, 94322641, 94322670, 94322706)/*!*/;
# at 25077342
#100111 20:11:39 server id 115000 end_log_pos 863937261 Xid = 1225244590
COMMIT/*!*/;
From the log above , You can see binlog And realy-log The content is the same , Except for the beginning at Offset at position . Because the offset is always relative to the file itself , The main database is relative to binlog In itself , From the library relative to relay-log In itself . You can also see that , At every query After statement , There is one. Xid Of event, Commit the transaction , It also shows that in mysql Is automatically submitted , After each statement is executed , The system automatically submits . So in row based replication , You may see multiple binlog Statements correspond only once commit, Naturally, this is a row based replication .
And a little bit more , It is the corresponding location of the master library and the slave Library event The size is the same , For example, above :
25077342-25077069( From the library event size ) = 863937234-863936961( On the main warehouse event size )
otherwise , Description from the Library relay-log lost , It is possible that the operating system cache is lost , It could be mysql abnormal crash Lead to relay-log buffer Data loss in . Then you need to reset the master-slave synchronization .
边栏推荐
- LeetCode:498. Diagonal traversal
- LeetCode:221. 最大正方形
- [OC-Foundation框架]---【集合数组】
- Marathon envs project environment configuration (strengthen learning and imitate reference actions)
- Visual implementation and inspection of visdom
- Leetcode: Jianzhi offer 03 Duplicate numbers in array
- The network model established by torch is displayed by torch viz
- 随手记01
- 注意力机制的一种卷积替代方式
- [OC]-<UI入门>--常用控件的学习
猜你喜欢

使用latex导出IEEE文献格式

可变长参数

ROS compilation calls the third-party dynamic library (xxx.so)

Warning in install. packages : package ‘RGtk2’ is not available for this version of R

Variable length parameter

Mobile phones and computers on the same LAN access each other, IIS settings
![[OC]-<UI入门>--常用控件-UIButton](/img/4d/f5a62671068b26ef43f1101981c7bb.png)
[OC]-<UI入门>--常用控件-UIButton
![[MySQL] multi table query](/img/eb/9d54df9a5c6aef44e35c7a63b286a6.jpg)
[MySQL] multi table query

目标检测——Pytorch 利用mobilenet系列(v1,v2,v3)搭建yolov4目标检测平台

Visual implementation and inspection of visdom
随机推荐
C language double pointer -- classic question type
[MySQL] multi table query
ESP8266-RTOS物联网开发
Bitwise logical operator
[sword finger offer] serialized binary tree
Computer cleaning, deleted system files
项目连接数据库遇到的问题及解决
UML diagram memory skills
LeetCode:394. String decoding
C语言双指针——经典题型
TP-LINK enterprise router PPTP configuration
LeetCode:劍指 Offer 42. 連續子數組的最大和
Fairguard game reinforcement: under the upsurge of game going to sea, game security is facing new challenges
LeetCode:214. 最短回文串
Introduction to the differences between compiler options of GCC dynamic library FPIC and FPIC
LeetCode:498. Diagonal traversal
MySQL uninstallation and installation methods
UML图记忆技巧
LeetCode:26. 删除有序数组中的重复项
使用latex导出IEEE文献格式