Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6cf1059f
Commit
6cf1059f
authored
Mar 02, 2004
by
guilhem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More comments on what could explain -1 in Seconds_Behind_Master in
SHOW SLAVE STATUS.
parent
db37d9a0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
sql/slave.cc
sql/slave.cc
+15
-2
No files found.
sql/slave.cc
View file @
6cf1059f
...
@@ -2065,8 +2065,21 @@ int show_master_info(THD* thd, MASTER_INFO* mi)
...
@@ -2065,8 +2065,21 @@ int show_master_info(THD* thd, MASTER_INFO* mi)
-
mi
->
rli
.
last_master_timestamp
)
-
mi
->
rli
.
last_master_timestamp
)
-
mi
->
clock_diff_with_master
;
-
mi
->
clock_diff_with_master
;
/*
/*
Apparently on some systems tmp can be <0 (which is still a
Apparently on some systems tmp can be <0. Here are possible reasons
mistery). This confuses users, so we don't go below 0.
related to MySQL:
- the master is itself a slave of another master whose time is ahead.
- somebody used an explicit SET TIMESTAMP on the master.
Possible reason related to granularity-to-second of time functions
(nothing to do with MySQL), which can explain a value of -1:
assume the master's and slave's time are perfectly synchronized, and
that at slave's connection time, when the master's timestamp is read,
it is at the very end of second 1, and (a very short time later) when
the slave's timestamp is read it is at the very beginning of second
2. Then the recorded value for master is 1 and the recorded value for
slave is 2. At SHOW SLAVE STATUS time, assume that the difference
between timestamp of slave and rli->last_master_timestamp is 0
(i.e. they are in the same second), then we get 0-(2-1)=-1 as a result.
This confuses users, so we don't go below 0.
*/
*/
protocol
->
store
((
longlong
)(
max
(
0
,
tmp
)));
protocol
->
store
((
longlong
)(
max
(
0
,
tmp
)));
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment