Done
Details
Assignee
Carlos SalgueroCarlos Salguero(Deactivated)Reporter
Peter ZaitsevPeter ZaitsevPriority
MediumComponents
Labels
Needs QA
YesFix versions
Story Points
0Sprint
None
Details
Details
Assignee
Carlos Salguero
Carlos Salguero(Deactivated)Reporter
Peter Zaitsev
Peter ZaitsevPriority
Components
Labels
Needs QA
Yes
Fix versions
Story Points
0
Sprint
None
Smart Checklist
Smart Checklist
Smart Checklist
Created September 29, 2017 at 2:06 PM
Updated March 6, 2024 at 8:15 AM
Resolved March 9, 2021 at 3:57 PM
Hi,
Some information tables will be renamed in MySQL 8
We will need to enhance mysql exporter to handle both old and new name
Table 1.1 Renamed InnoDB Information Schema Views
Old Name
New Name
INNODB_SYS_COLUMNS
INNODB_COLUMNS
INNODB_SYS_DATAFILES
INNODB_DATAFILES
INNODB_SYS_FIELDS
INNODB_FIELDS
INNODB_SYS_FOREIGN
INNODB_FOREIGN
INNODB_SYS_FOREIGN_COLS
INNODB_FOREIGN_COLS
INNODB_SYS_INDEXES
INNODB_INDEXES
INNODB_SYS_TABLES
INNODB_TABLES
INNODB_SYS_TABLESPACES
INNODB_TABLESPACES
INNODB_SYS_TABLESTATS
INNODB_TABLESTATS
INNODB_SYS_VIRTUAL
INNODB_VIRTUAL
How to test
1. Start a MySQL 8 instance. Example:
docker run --name mysql8 -p 3306:3306 -e MYSQL_USER=msandbox -e MYSQL_PASSWORD=msandbox -e MYSQL_ROOT_PASSWORD=msandbox -d mysql:8.0
2. Create a MySQL config file like this: my.cnf
[client] host=127.0.0.1 port=3306 user=msandbox password=msandbox
3. Run the MySQL exporter
./mysqld_exporter --config.my-cnf <path-to-my.cnf-from-step-2> --collect.info_schema.innodb_tablespaces
4. Browse to http://localhost:9104 and in the console for step 3 there shouldn't be any error.