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
c41a6fec
Commit
c41a6fec
authored
Mar 12, 2012
by
Luis Soares
Browse files
Options
Browse Files
Download
Plain Diff
BUG#12400313
Automerge with mysql-5.1.
parents
da441897
5360c4e5
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
191 additions
and
11 deletions
+191
-11
mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result
mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result
+4
-0
mysql-test/suite/rpl/t/rpl_stm_relay_ign_space-slave.opt
mysql-test/suite/rpl/t/rpl_stm_relay_ign_space-slave.opt
+1
-0
mysql-test/suite/rpl/t/rpl_stm_relay_ign_space.test
mysql-test/suite/rpl/t/rpl_stm_relay_ign_space.test
+96
-0
sql/log.cc
sql/log.cc
+0
-2
sql/rpl_rli.h
sql/rpl_rli.h
+7
-0
sql/slave.cc
sql/slave.cc
+83
-9
No files found.
mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result
0 → 100644
View file @
c41a6fec
include/master-slave.inc
[connection master]
include/assert.inc [Assert that relay log space is close to the limit]
include/rpl_end.inc
mysql-test/suite/rpl/t/rpl_stm_relay_ign_space-slave.opt
0 → 100644
View file @
c41a6fec
--relay-log-space-limit=8192 --relay-log-purge --max-relay-log-size=4096
mysql-test/suite/rpl/t/rpl_stm_relay_ign_space.test
0 → 100644
View file @
c41a6fec
This diff is collapsed.
Click to expand it.
sql/log.cc
View file @
c41a6fec
...
...
@@ -3194,8 +3194,6 @@ int MYSQL_BIN_LOG::purge_first_log(Relay_log_info* rli, bool included)
pthread_mutex_lock
(
&
rli
->
log_space_lock
);
rli
->
relay_log
.
purge_logs
(
to_purge_if_included
,
included
,
0
,
0
,
&
rli
->
log_space_total
);
// Tell the I/O thread to take the relay_log_space_limit into account
rli
->
ignore_log_space_limit
=
0
;
pthread_mutex_unlock
(
&
rli
->
log_space_lock
);
/*
...
...
sql/rpl_rli.h
View file @
c41a6fec
...
...
@@ -189,6 +189,13 @@ public:
ulonglong
log_space_limit
,
log_space_total
;
bool
ignore_log_space_limit
;
/*
Used by the SQL thread to instructs the IO thread to rotate
the logs when the SQL thread needs to purge to release some
disk space.
*/
bool
sql_force_rotate_relay
;
/*
When it commits, InnoDB internally stores the master log position it has
processed so far; the position to store is the one of the end of the
...
...
sql/slave.cc
View file @
c41a6fec
...
...
@@ -1450,6 +1450,54 @@ Waiting for the slave SQL thread to free enough relay log space");
!
(
slave_killed
=
io_slave_killed
(
thd
,
mi
))
&&
!
rli
->
ignore_log_space_limit
)
pthread_cond_wait
(
&
rli
->
log_space_cond
,
&
rli
->
log_space_lock
);
/*
Makes the IO thread read only one event at a time
until the SQL thread is able to purge the relay
logs, freeing some space.
Therefore, once the SQL thread processes this next
event, it goes to sleep (no more events in the queue),
sets ignore_log_space_limit=true and wakes the IO thread.
However, this event may have been enough already for
the SQL thread to purge some log files, freeing
rli->log_space_total .
This guarantees that the SQL and IO thread move
forward only one event at a time (to avoid deadlocks),
when the relay space limit is reached. It also
guarantees that when the SQL thread is prepared to
rotate (to be able to purge some logs), the IO thread
will know about it and will rotate.
NOTE: The ignore_log_space_limit is only set when the SQL
thread sleeps waiting for events.
*/
if
(
rli
->
ignore_log_space_limit
)
{
#ifndef DBUG_OFF
{
char
llbuf1
[
22
],
llbuf2
[
22
];
DBUG_PRINT
(
"info"
,
(
"log_space_limit=%s "
"log_space_total=%s "
"ignore_log_space_limit=%d "
"sql_force_rotate_relay=%d"
,
llstr
(
rli
->
log_space_limit
,
llbuf1
),
llstr
(
rli
->
log_space_total
,
llbuf2
),
(
int
)
rli
->
ignore_log_space_limit
,
(
int
)
rli
->
sql_force_rotate_relay
));
}
#endif
if
(
rli
->
sql_force_rotate_relay
)
{
rotate_relay_log
(
rli
->
mi
);
rli
->
sql_force_rotate_relay
=
false
;
}
rli
->
ignore_log_space_limit
=
false
;
}
thd
->
exit_cond
(
save_proc_info
);
DBUG_RETURN
(
slave_killed
);
}
...
...
@@ -4260,19 +4308,45 @@ static Log_event* next_event(Relay_log_info* rli)
constraint, because we do not want the I/O thread to block because of
space (it's ok if it blocks for any other reason (e.g. because the
master does not send anything). Then the I/O thread stops waiting
and reads more events.
The SQL thread decides when the I/O thread should take log_space_limit
into account again : ignore_log_space_limit is reset to 0
in purge_first_log (when the SQL thread purges the just-read relay
log), and also when the SQL thread starts. We should also reset
ignore_log_space_limit to 0 when the user does RESET SLAVE, but in
fact, no need as RESET SLAVE requires that the slave
and reads one more event and starts honoring log_space_limit again.
If the SQL thread needs more events to be able to rotate the log (it
might need to finish the current group first), then it can ask for one
more at a time. Thus we don't outgrow the relay log indefinitely,
but rather in a controlled manner, until the next rotate.
When the SQL thread starts it sets ignore_log_space_limit to false.
We should also reset ignore_log_space_limit to 0 when the user does
RESET SLAVE, but in fact, no need as RESET SLAVE requires that the slave
be stopped, and the SQL thread sets ignore_log_space_limit to 0 when
it stops.
*/
pthread_mutex_lock
(
&
rli
->
log_space_lock
);
// prevent the I/O thread from blocking next times
rli
->
ignore_log_space_limit
=
1
;
/*
If we have reached the limit of the relay space and we
are going to sleep, waiting for more events:
1. If outside a group, SQL thread asks the IO thread
to force a rotation so that the SQL thread purges
logs next time it processes an event (thus space is
freed).
2. If in a group, SQL thread asks the IO thread to
ignore the limit and queues yet one more event
so that the SQL thread finishes the group and
is are able to rotate and purge sometime soon.
*/
if
(
rli
->
log_space_limit
&&
rli
->
log_space_limit
<
rli
->
log_space_total
)
{
/* force rotation if not in an unfinished group */
rli
->
sql_force_rotate_relay
=
!
rli
->
is_in_group
();
/* ask for one more event */
rli
->
ignore_log_space_limit
=
true
;
}
/*
If the I/O thread is blocked, unblock it. Ok to broadcast
after unlock, because the mutex is only destroyed in
...
...
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