Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Not a Bug
-
10.5.12
-
None
-
Linux docker-compose
Description
Documentation says:
mysql_upgrade also saves the MariaDB version number in a file named mysql_upgrade_info in the data directory. This is used to quickly check whether all tables have been checked for this release so that table-checking can be skipped. For this reason, mysql_upgrade needs to be run as a user with write access to the data directory.
Problem
But mariadb_upgrade does check all tables every startup. This is a problem with many databases and tables on a not so fast storage.
How to test
Test has be done with bitnami docker container. It calls mariadb_upgrade every startup. According to documentation this should be ok.
File "mysql_upgrade_info" is written and get correct timestamp and content. But this information seems to be ignored by the tool.
Expected behavior
mysql_upgrade should work like it is documented.
Why critical?
mariadb_upgrade take 2h for our installation. A container can restart for various reasons. And this means a relevant production downtime for us.
—
test setup via docker-compose.yaml
version: '2.0'
|
|
services:
|
mariadb:
|
image: docker.io/bitnami/mariadb:10.5.12
|
ports:
|
- '3306:3306'
|
volumes:
|
- '/root/fixMariadbUpgrade:/bitnami/mariadb'
|
- /root/fixMariadbUpgrade/my_custom.cnf:/opt/bitnami/mariadb/conf/my_custom.cnf:ro
|
environment:
|
- MARIADB_ROOT_PASSWORD=****
|
- BITNAMI_DEBUG=true
|
—
my_custom.cnf:
[mysqld]
|
innodb_page_size=64k
|
skip-name-resolve
|
explicit_defaults_for_timestamp
|
basedir=/opt/bitnami/mariadb
|
plugin_dir=/opt/bitnami/mariadb/plugin
|
port=3306
|
socket=/opt/bitnami/mariadb/tmp/mysql.sock
|
tmpdir=/opt/bitnami/mariadb/tmp
|
max_allowed_packet=16M
|
bind-address=0.0.0.0
|
pid-file=/opt/bitnami/mariadb/tmp/mysqld.pid
|
log-error=/opt/bitnami/mariadb/logs/mysqld.log
|
character-set-server=utf8mb4
|
collation-server=utf8mb4_unicode_ci
|
max_connections = 1186
|
[client]
|
port=3306
|
socket=/opt/bitnami/mariadb/tmp/mysql.sock
|
default-character-set=utf8mb4
|
plugin_dir=/opt/bitnami/mariadb/plugin
|
[manager]
|
port=3306
|
socket=/opt/bitnami/mariadb/tmp/mysql.sock
|
pid-file=/opt/bitnami/mariadb/tmp/mysqld.pid
|
Attachments
Issue Links
- relates to
-
MDEV-30499 mariadb in-server upgrade
-
- Open
-
tgruenert thanks for the bug report.
The continued running of mysql_upgrade on every restart is odd. I don't have an explanation looking at version in the observations below:
from inside docker.io/bitnami/mariadb:10.5.12 container
1001@18331cf58781:/bitnami/mariadb/data$ more mysql_upgrade_info
10.5.12-MariaDB
1001@18331cf58781:/bitnami/mariadb/data$ mysql_upgrade --version
mysql_upgrade Ver 1.4 Distrib 10.5.12-MariaDB, for Linux (x86_64)
1001@18331cf58781:/bitnami/mariadb/data$ mysql_upgrade
This installation of MariaDB is already upgraded to 10.5.12-MariaDB, use --force if you still need to run mysql_upgrade
Do you have the same?
I did a little digging into how bitnami script their mysql_upgrade. This is part of the mysql_initialize (in the setup.sh script. This is completed before run.sh script is run an you have a functioning system again.
The time consuming part it seems from you, (the container logs would confirm this), is the checking of all tables. Adding the following group/config option to your configuration for mariadb-upgrade would save the most time.
mariadb-upgrade restrict to system tables
[mariadb-upgrade]
upgrade-system-tables
If you wish to do a full check, even while system is operation, you can mariadb-upgrade --skip-upgrade-system-tables or mariadb-check --check-upgrade --auto-repair --all-databases --skip-database=mysql
Obviously I can't change bitnami scripts, but there's a work around for you above, and I'll learn from them for docker library's mysql_upgrade when implemented.
I need more info as to why the version check on mysql_upgrade isn't working correctly.