Skip to content
Permalink
Browse files
Work around MDEV-23416 (change Warning to Note)
Ever since MDEV-15053 changed something in the page flushing,
we are occasionally observing pending I/O for a data file that
is about to be deleted.

fil_check_pending_io(): Change the Warning to a note.

This message was already made less frequent in
commit dcc0baf (10.5.4)
and commit 65f831d (10.3.24, 10.4.14).
  • Loading branch information
dr-m committed Aug 19, 2020
1 parent 314a90e commit b205e47
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1995,7 +1995,7 @@ fil_check_pending_io(

/* Give a warning every 10 second, starting after 1 second */
if ((count % 500) == 50) {
ib::warn() << "Trying to delete"
ib::info() << "Trying to delete"
" tablespace '" << space->name
<< "' but there are "
<< space->n_pending_flushes

0 comments on commit b205e47

Please sign in to comment.