1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Avoid shutdown timeout in innodb.undo_truncate

Let us explicitly wait for purge before invoking a slow shutdown,
so that instrumented builds (such as ASAN or UBSAN) will not
exceed the 60-second timeout during shutdown.
This commit is contained in:
Marko Mäkelä
2022-03-11 16:14:06 +02:00
parent 1766a18e06
commit dc680d2119
2 changed files with 4 additions and 0 deletions

View File

@ -31,5 +31,7 @@ connection con2;
commit;
disconnect con2;
connection default;
SET GLOBAL innodb_purge_rseg_truncate_frequency=1;
SET GLOBAL innodb_max_purge_lag_wait=0;
set global innodb_fast_shutdown=0;
drop table t1, t2;