Introduction
What will happen to MySQL when the disk space is full? How should we respond?
What will happen
When the disk space is full, MySQL cannot write any more data, including writing to table data. , as well as binlog, binlog-index and other files.
Of course, because InnoDB can store dirty data in memory first, it will not immediately show that it cannot be written. Unless binlog is turned on, the write request will be blocked.
When MySQL detects that the disk space is full, it will:
What should we do
So, what should we do when we find that the disk space is full? Suggestions :
Every minute: Check if space has been freed so new data can be written. When it is found that there is remaining space, data will continue to be written, and everything will continue as usual.
Every ten minutes: If it is still found that there is no remaining space, a record will be written in the log to report that the disk space is full (only writing a few bytes at this time is enough ).
Increase the detection frequency of the monitoring system to prevent recurrence;
Delete unused files in a timely manner to free up space;
If a thread is blocked due to the disk being full, it can be killed first, and it may be able to work normally again when re-detected the next minute;
Possibly Because the disk is full, some threads are blocked, causing other threads to be blocked. You can kill the blocking thread, and other blocked threads can continue to work.
Exceptions
There is an exception:
When executing REPAIR TABLE or OPTIMIZE TABLE operation, or after executing LOAD DATA INFILE or ALTER When updating the index in batches after TABLE, these operations will create temporary files. When performing these operations, mysqld finds that the disk space is full, and will mark the table involved as crashed and delete the temporary files (except for ALTER TABLE operations, MySQL The operation being performed will be abandoned, temporary files will be deleted, and disk space will be released).
Note: If the mysqld process is accidentally killed during the execution of these commands, the temporary files generated will not be automatically deleted and need to be deleted manually to free up disk space.
The above is what will happen to MySQL when the disk space is full. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

Linux系统怎么查看电脑的磁盘空间?Linux作为一款开源的操作系统,许多用户都在使用这款系统,而这款系统的操作方法和Windows完全不一样,下面小编就带着大家一起来看看怎么操作吧!操作方法:通过df和du命令查看dfdf以磁盘分区为单位查看文件系统,可以获取硬盘被占用了多少空间,目前还剩下多少空间等信息。例如,我们使用df-h命令来查看磁盘信息,-h选项为根据大小适当显示:显示内容参数说明:Filesystem:文件系统Size:分区大小Used:已使用容量Avail:还可以使用的容量Us

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

在mysql中,是否需要commit取决于存储引擎:1、若是不支持事务的存储引擎,如myisam,则不需要使用commit;2、若是支持事务的存储引擎,如innodb,则需要知道事务是否自动提交,因此需要使用commit。

“mysql-connector”是mysql官方提供的驱动器,可以用于连接使用mysql;可利用“pip install mysql-connector”命令进行安装,利用“import mysql.connector”测试是否安装成功。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
