background Getting the slow query log from mysql.slow_log is slow, the table is a csv table and has no index. I want to add an index to speed up access, but the csv engine cannot add indexes (the csv engine stores text separated by commas), so I can only change the storage engine to add indexes. mysql.slow_log table can be changed to myisam, but not to innodb mysql> set global slow_query_log=off; Query OK, 0 rows affected (0.00 sec) mysql> alter table mysql.slow_log engine=innodb; ERROR 1579 (HY000): This storage engine cannot be used for log tables" mysql> alter table mysql.slow_log engine=myisam; Query OK, 33760 rows affected (0.37 sec) Records: 33760 Duplicates: 0 Warnings: 0 mysql.general_log cannot be changed to innodb mysql> alter table mysql.general_log engine=myisam; Query OK, 242956 rows affected (2.41 sec) Records: 242956 Duplicates: 0 Warnings: 0 mysql> alter table mysql.general_log engine=innodb; ERROR 1579 (HY000): This storage engine cannot be used for log tables" Official Documentation According to the official documentation, the log table only supports the CSV engine and the MyISAM engine. Why does it not support the innodb engine? On what basis do you consider not supporting innodb tables? Asked a friend I guess the log table engine consumes a lot of redo and undo resources. This is not necessary. . . These data are not important. . Change log table storage engine SET @old_log_state = @@global.general_log; SET GLOBAL general_log = 'OFF'; ALTER TABLE mysql.general_log ENGINE = MyISAM; SET GLOBAL general_log = @old_log_state; Archive log table USE mysql; DROP TABLE IF EXISTS general_log2; CREATE TABLE general_log2 LIKE general_log; RENAME TABLE general_log TO general_log_backup, general_log2 TO general_log; refer to Selecting General Query Log and Slow Query Log Output Destinations Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Vue3.0+vite2 implements dynamic asynchronous component lazy loading
>>: Summary of frequently used commands for Linux file operations
The situation is as follows: (PS: The red box repr...
Table of contents 1. Introduction to SELinux 2. B...
1. Scenario description: Our environment uses mic...
1. Download MySQL Image Command: docker pull mysq...
<br />Looking at this title, you may find it...
Table of contents What is a Binary Search Tree (B...
Table of contents 1. Database bottleneck 2. Sub-l...
Table of contents 1. Generate AST abstract syntax...
This article mainly introduces how to implement l...
This article shares the specific code of JS to ac...
I. Overview When writing HTML templates, spaces a...
If a form field in a form is set to disabled, the ...
1. Prepare the environment (download nodejs and s...
Table of contents 1. Installation 2. Use Echarts ...
How to modify the mysql table partitioning progra...