You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems when we enable the flag above, we need to check server capabilities to make sure we can run ALTER INSTANCE DISABLE INNODB REDO_LOG, but the validation fails because the version string is not being parsed properly before.
The expected version should be major.minor.patch but we are getting something like Ver 8.#.## Percona Server (GPL), Release '##', Revision '######' which breaks the validation.
Reproduction Steps
try to take a mysqlshell backup and the restore it in a tablet that is using --mysql-shell-speedup-restore=true
Binary Version
vttablet version Version: 23.0.0-SNAPSHOT (Git revision cec7812fc597817dead7c92987db3bc918e10605 branch 'master') built on Thu May 29 09:10:46 PDT 2025 by #### using go1.24.3 linux/amd64
Operating System and Environment details
N/A
Log Fragments
I0529 05:30:24.188580 32687 backup.go:433] Restore: RestorePath: [full:2025-05-29.120513.us_east_1d-0171548866]
I0529 05:30:24.188616 32687 mysqlshellbackupengine.go:248] Calling ExecuteRestore for vt_###### (DeleteBeforeRestore: false)
I0529 05:30:24.189058 32687 restore.go:283] Restore: got a restore manifest: <nil>, err=MySQLShellPreCheckError: MySQL version doesn't support disabling the redo log (must be >=8.0.21)failed restore precheck, waitForBackupInterval=0s
The text was updated successfully, but these errors were encountered:
Overview of the Issue
It seems when we enable the flag above, we need to check server capabilities to make sure we can run
ALTER INSTANCE DISABLE INNODB REDO_LOG
, but the validation fails because the version string is not being parsed properly before.The expected version should be
major.minor.patch
but we are getting something likeVer 8.#.## Percona Server (GPL), Release '##', Revision '######'
which breaks the validation.Reproduction Steps
try to take a mysqlshell backup and the restore it in a tablet that is using
--mysql-shell-speedup-restore=true
Binary Version
Operating System and Environment details
Log Fragments
The text was updated successfully, but these errors were encountered: