summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-08-19 15:47:11 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-08-19 15:47:11 +0300
commitb205e478a3ba7dfce69bba9e6187d412823b4949 (patch)
treeacb6663796593c9acea9c7ac45440fcd2095db56
parent314a90e12b72a4c889278847b8d2a8c3f21f41e3 (diff)
downloadmariadb-git-b205e478a3ba7dfce69bba9e6187d412823b4949.tar.gz
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 dcc0baf5405b220384b9e1e07d8b9e3ff97b60f4 (10.5.4) and commit 65f831d17c84900c1faea49164688e2f5ce59563 (10.3.24, 10.4.14).
-rw-r--r--storage/innobase/fil/fil0fil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/fil/fil0fil.cc b/storage/innobase/fil/fil0fil.cc
index 5e6bd9575b1..d8b588b4e30 100644
--- a/storage/innobase/fil/fil0fil.cc
+++ b/storage/innobase/fil/fil0fil.cc
@@ -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