MYSQL The Server Shutdown Process(筆記)
The server shutdown process takes place as follows:
-
The shutdown process is initiated.
This can occur initiated several ways. For example, a user with the privilege can execute a command. can be used on any platform supported by MySQL. Other operating system-specific shutdown initiation methods are possible as well: The server shuts down on Unix when it receives a
SIGTERM
signal. A server running as a service on Windows shuts down when the services manager tells it to. -
The server creates a shutdown thread if necessary.
Depending on how shutdown was initiated, the server might create a thread to handle the shutdown process. If shutdown was requested by a client, a shutdown thread is created. If shutdown is the result of receiving a
SIGTERM
signal, the signal thread might handle shutdown itself, or it might create a separate thread to do so. If the server tries to create a shutdown thread and cannot (for example, if memory is exhausted), it issues a diagnostic message that appears in the error log:Error: Can't create thread to kill server
-
The server stops accepting new connections.
To prevent new activity from being initiated during shutdown, the server stops accepting new client connections by closing the handlers for the network interfaces to which it normally listens for connections: the TCP/IP port, the Unix socket file, the Windows named pipe, and shared memory on Windows.
-
The server terminates current activity.
For each thread associated with a client connection, the server breaks the connection to the client and marks the thread as killed. Threads die when they notice that they are so marked. Threads for idle connections die quickly. Threads that currently are processing statements check their state periodically and take longer to die. For additional information about thread termination, see , in particular for the instructions about killed or operations on
MyISAM
tables.For threads that have an open transaction, the transaction is rolled back. If a thread is updating a nontransactional table, an operation such as a multiple-row or may leave the table partially updated because the operation can terminate before completion.
If the server is a replication source server, it treats threads associated with currently connected replicas like other client threads. That is, each one is marked as killed and exits when it next checks its state.
If the server is a replica server, it stops the replication I/O and SQL threads, if they are active, before marking client threads as killed. The SQL thread is permitted to finish its current statement (to avoid causing replication problems), and then stops. If the SQL thread is in the middle of a transaction at this point, the server waits until the current replication event group (if any) has finished executing, or until the user issues a or statement. See also . Since nontransactional statements cannot be rolled back, in order to guarantee crash-safe replication, only transactional tables should be used.
NoteTo guarantee crash safety on the replica, you must run the replica with enabled.
See also ).
-
The server shuts down or closes storage engines.
At this stage, the server flushes the table cache and closes all open tables.
Each storage engine performs any actions necessary for tables that it manages.
InnoDB
flushes its buffer pool to disk (unless is 2), writes the current LSN to the tablespace, and terminates its own internal threads.MyISAM
flushes any pending index writes for a table. -
The server exits.
To provide information to management processes, the server returns one of the exit codes described in the following list. The phrase in parentheses indicates the action taken by systemd in response to the code, for platforms on which systemd is used to manage the server.
-
0 = successful termination (no restart done)
-
1 = unsuccessful termination (no restart done)
-
2 = unsuccessful termination (restart done)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29863023/viewspace-2838100/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL 8.0 Reference Manual(讀書筆記61節--Examining Server Thread (Process) Information(1))MySql筆記ServerthreadORM
- MySQL 8.0 Reference Manual(讀書筆記61節--Examining Server Thread (Process) Information(2))MySql筆記ServerthreadORM
- Server shutdown in progressServer
- Oracle dedicated server process and shared server processOracleServer
- MySQL報錯Slave: received end packet from server, apparent master shutdownMySqlServerAPPAST
- mysqld: Sort aborted: Server shutdown in progressMySqlServer
- WebSphere Process Server V6.1WebServer
- vCenter Server使用筆記Server筆記
- SQL-Server筆記SQLServer筆記
- MySQL筆記MySql筆記
- Mysql 筆記MySql筆記
- (十五) 學習筆記: Python程式(Process)相關筆記Python
- 如何修改process.env.PROXY_SERVERServer
- 操作 WebSphere Process Server 環境概述WebServer
- WebSphere Process Server 移植最佳實踐WebServer
- SQL SERVER 知識筆記SQLServer筆記
- MySQL • 原始碼分析 • SHUTDOWN過程MySql原始碼
- MySql索引筆記MySql索引筆記
- mysql CRUD筆記MySql筆記
- MYSQL筆記01MySql筆記
- Mysql 工作筆記MySql筆記
- 快速搭建WebSphere Process Server 部署環境WebServer
- 探祕WebSphere Process Server事務性WebServer
- WebSphere Process Server 流量管理,第 1 部分WebServer
- MySQL 8.0 Reference Manual(讀書筆記60節--Optimizing the MySQL Server 和 Measuring Performance)MySql筆記ServerORM
- Slave: received 0 length packet from server, apparent master shutdownServerAPPAST
- 【記錄】MySQL 學習筆記MySql筆記
- [記錄] MySQL 學習筆記MySql筆記
- MySQL基礎筆記MySql筆記
- MySql學習筆記MySql筆記
- MySQL 優化筆記MySql優化筆記
- mysql引擎筆記整理MySql筆記
- 筆記mysql優化筆記MySql優化
- MySQl優化筆記MySql優化筆記
- mysql讀書筆記MySql筆記
- mysql管理之道筆記MySql筆記
- 在 WebSphere Process Server 中進行版本管理WebServer
- Not enough server storage is available to process this command.ServerAI