Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
10.2(EOL), 10.3(EOL), 10.4(EOL)
Description
http://buildbot.askmonty.org/buildbot/builders/winx64-packages/builds/27562/steps/test/logs/stdio
Looks like one thread is doing log_write_and_flush(), while another is doing log_write_flush_to_disk_low() . Also and third one is doing close_connections(), so perhaps this could be related to the recent sudden surge of crashes on shutdown in this specific test.
Attachments
Issue Links
- is caused by
-
MDEV-26450 Corruption due to innodb_undo_log_truncate
-
- Closed
-
Thank you. In the stack traces, I see that we have log_checkpoint() executing log_write_flush_to_disk_low() where we have a similar assertion (which did not fail):
fil_flush(SRV_LOG_SPACE_FIRST_ID);
}
log_mutex_enter();
The thread where the assertion failed in log_write_and_flush() is holding the mutex and thus blocking this thread.
It seems to me that the == 1 must be removed from both assertions. Invoking fil_flush() concurrently from multiple threads is safe, because it is protected by fil_system.mutex.