MariaDB的線程及串連
今天在這裡介紹一下確認mariaDB(和MySQL一樣)的連結數及線程數的方法。MariaDB和MySQL有什麼不一樣,現在還沒有弄清楚。
這是減少資料庫的負載,並能提高資料庫運行效率的入門。
串連mariaDB
# mysql -uroot -pEnter password:Welcome to the MariaDB monitor. Commands end with ; or \g.Your MariaDB connection id is 1176Server version: 5.5.41-MariaDB-log MariaDB ServerCopyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]>
最大串連數
MariaDB [(none)]> show global variables like 'max_connections';+-----------------+-------+| Variable_name | Value |+-----------------+-------+| max_connections | 151 |+-----------------+-------+1 row in set (0.00 sec)
MariaDB啟動後的累計串連數
MariaDB [(none)]> show global status like 'Connections';+---------------+-------+| Variable_name | Value |+---------------+-------+| Connections | 1190 |+---------------+-------+1 row in set (0.00 sec)
mariaDB啟動後的最大同時串連數
MariaDB [(none)]> show global status like 'Max_used_connections';+----------------------+-------+| Variable_name | Value |+----------------------+-------+| Max_used_connections | 7 |+----------------------+-------+1 row in set (0.00 sec)
MariaDB線程資訊
MariaDB [(none)]> show global status like 'Thread_%';+-------------------------+-------+| Variable_name | Value |+-------------------------+-------+| Threadpool_idle_threads | 0 || Threadpool_threads | 0 || Threads_cached | 6 || Threads_connected | 1 || Threads_created | 7 || Threads_running | 1 |+-------------------------+-------+6 rows in set (0.01 sec)
- Threads_cached:備用的線程數(線程是可以再利用的)
- Threads_connected:現在的串連數
- Threads_created:備用的線程不足時,會產生新線程(這個值不斷變大時,表示Threads_cached不足)
- Threads_running:正在執行中的線程,也可以說是不在Sleep狀態的線程
Threads_cached + Threads_connected < thread_cache_size是理想的狀態。
MariaDB [(none)]> show global variables like ‘thread_cache_size’;+——————-+——-+| Variable_name | Value |+——————-+——-+| thread_cache_size | 52 |+——————-+——-+1 row in set (0.00 sec)
小結
從以上也可以看出來,在MySQL上使用的命令基本上也可以在MariaDB使用。
最重要的是,MySQL邏輯和MariaDB邏輯還看不出有什麼不一樣,看出不同可能需要更深入的使用MariaDB。
Linux系統教程:如何檢查MariaDB服務端版本
MariaDB Proxy讀寫分離的實現
Linux下編譯安裝配置MariaDB資料庫的方法
CentOS系統使用yum安裝MariaDB資料庫
安裝MariaDB與MySQL並存
Ubuntu 上如何將 MySQL 5.5 資料庫遷移到 MariaDB 10
[翻譯]Ubuntu 14.04 (Trusty) Server 安裝 MariaDB