MySQL slow_log table cannot be modified to innodb engine detailed explanation

MySQL slow_log table cannot be modified to innodb engine detailed explanation

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:
  • Explanation of the configuration and use of MySQL storage engine InnoDB
  • Summary of the differences between MySQL storage engines MyISAM and InnoDB
  • A Deep Dive into the MySQL InnoDB Storage Engine
  • Detailed explanation of the index and storage structure of the MySQL InnoDB engine
  • Change the MySQL database engine to InnoDB

<<:  Vue3.0+vite2 implements dynamic asynchronous component lazy loading

>>:  Summary of frequently used commands for Linux file operations

Recommend

Solution to the horizontal scroll bar in iframe under IE6

The situation is as follows: (PS: The red box repr...

How to understand SELinux under Linux

Table of contents 1. Introduction to SELinux 2. B...

How to monitor multiple JVM processes in Zabbix

1. Scenario description: Our environment uses mic...

Docker creates MySQL explanation

1. Download MySQL Image Command: docker pull mysq...

Design Tips: We think you will like it

<br />Looking at this title, you may find it...

Binary Search Tree Algorithm Tutorial for JavaScript Beginners

Table of contents What is a Binary Search Tree (B...

Summary of MySQL's commonly used database and table sharding solutions

Table of contents 1. Database bottleneck 2. Sub-l...

Vue3 AST parser-source code analysis

Table of contents 1. Generate AST abstract syntax...

Implementing long shadow of text in less in CSS3

This article mainly introduces how to implement l...

JS achieves five-star praise case

This article shares the specific code of JS to ac...

How to submit the value of a disabled form field in a form Example code

If a form field in a form is set to disabled, the ...

How to use vue-cli to create a project and package it with webpack

1. Prepare the environment (download nodejs and s...

Detailed use of Echarts in vue2 vue3

Table of contents 1. Installation 2. Use Echarts ...

How to modify the mysql table partitioning program

How to modify the mysql table partitioning progra...