Bug #115332 | Abnormal increase in the Innodb_rows_inserted metric value | ||
---|---|---|---|
Submitted: | 14 Jun 2024 9:50 | Modified: | 14 Jun 2024 10:11 |
Reporter: | wei lee | Email Updates: | |
Status: | Unsupported | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 8.0.33 | OS: | CentOS |
Assigned to: | CPU Architecture: | Any |
[14 Jun 2024 9:50]
wei lee
[14 Jun 2024 9:52]
wei lee
any os can repeat
[14 Jun 2024 10:11]
MySQL Verification Team
Hi Mr. lee, Thank you for your bug report. However, this is not a bug . We have used our latest bug fix release which clearly says: +---------+------+-------------------------------------------------------------------------------------------------------------------------------------------+ | Level | Code | Message | +---------+------+-------------------------------------------------------------------------------------------------------------------------------------------+ | Warning | 1287 | 'INFORMATION_SCHEMA.PROCESSLIST' is deprecated and will be removed in a future release. Please use performance_schema.processlist instead | +---------+------+-------------------------------------------------------------------------------------------------------------------------------------------+ Hence, I_S.processlist is no longer supported. When P_S is used, everything is just fine: mysql> show status like 'Innodb_rows_inserted'; +----------------------+-------+ | Variable_name | Value | +----------------------+-------+ | Innodb_rows_inserted | 2 | +----------------------+-------+ 1 row in set (0.00 sec) mysql> select id from performance_schema.processlist where USER='tdsqlsys_agent' and info like '%%_shard_%%'; Empty set (0.03 sec) mysql> show status like 'Innodb_rows_inserted'; +----------------------+-------+ | Variable_name | Value | +----------------------+-------+ | Innodb_rows_inserted | 2 | +----------------------+-------+ 1 row in set (0.00 sec) Unsupported.