MySQL Forums
Forum List  »  Data Recovery

Re: Issue with MySQL 8.4.4 binlog recovery in Docker container
Posted by: Simon raphael
Date: October 09, 2025 01:05AM

The error "can't find record in" during `mysqlbinlog` application with GTID is caused by a **missing GTID execution history** on the restored database. To fix it, you must **extract the `GTID_PURGED` set** from the `mysqldump` file and **explicitly apply it** (`SET GLOBAL gtid_purged = '...'`) to the restored server **before** applying the binary logs. This synchronizes the GTID history for proper recovery.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Issue with MySQL 8.4.4 binlog recovery in Docker container
51
October 09, 2025 01:05AM


Sorry, only registered users may post in this forum.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.