Comments on: How to Monitor Your MySQL Database Restore Progress https://www.percona.com/blog/how-to-monitor-your-mysql-database-restore-progress/ Fri, 16 Feb 2024 12:26:57 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: Adrian Ambroziak https://www.percona.com/blog/how-to-monitor-your-mysql-database-restore-progress/#comment-10974266 Fri, 16 Feb 2024 12:26:57 +0000 https://www.percona.com/blog/?p=89602#comment-10974266 Correct the script:

Why? Because yours returns error:

]]>
By: Jignesh Chauhan https://www.percona.com/blog/how-to-monitor-your-mysql-database-restore-progress/#comment-10974133 Mon, 07 Aug 2023 10:10:46 +0000 https://www.percona.com/blog/?p=89602#comment-10974133 Thanks for sharing this information! Really helpful.

]]>
By: Vishal Saxena https://www.percona.com/blog/how-to-monitor-your-mysql-database-restore-progress/#comment-10974124 Thu, 03 Aug 2023 14:54:04 +0000 https://www.percona.com/blog/?p=89602#comment-10974124 Little optimization on statement
bytes_total=$(cat <BACKUP_FILE> | wcc)
is slower than
bytes_total=$(wcc <BACKUP_FILE>|awk ‘{print $1}’)

]]>