1. 程式人生 > >新特性解讀 | MySQL 8.0 資源組

新特性解讀 | MySQL 8.0 資源組

原創作者: 楊濤濤 

 

在MySQL 8.0 之前, 我們假設一下有一條爛SQL,

mysql
select * from t1 order by rand() ;

以多個執行緒在跑,導致CPU被跑滿了,其他的請求只能被阻塞進不來。那這種情況怎麼辦? 

 

大概有以下幾種解決辦法:

  1. 設定max_execution_time 來阻止太長的讀SQL。那可能存在的問題是會把所有長SQL都給KILL 掉。有些必須要執行很長時間的也會被誤殺。

  2. 自己寫個指令碼檢測這類語句,比如order by rand(), 超過一定時間用Kill query thread_id 給殺掉。

那能不能不要殺掉而讓他正常執行,但是又不影響其他的請求呢?

那mysql 8.0 引入的資源組(resource group,後面簡寫微RG)可以基本上解決這類問題。

比如我可以用 RG 來在SQL層面給他限制在特定的一個CPU核上,這樣我就不管他,讓他繼續執行,如果有新的此類語句,讓他排隊好了。

為什麼說基本呢?目前只能繫結CPU資源,其他的暫時不行。

那我來演示下如何使用RG。

 

建立一個資源組user_ytt. 這裡解釋下各個引數的含義,

  1. type = user 表示這是一個使用者態執行緒,也就是前臺的請求執行緒。如果type=system,表示後臺執行緒,用來限制mysql自己的執行緒,比如Innodb purge thread,innodb read thread等等。

  2. vcpu 代表cpu的邏輯核數,這裡0-1代表前兩個核被繫結到這個RG。可以用lscpu,top等列出自己的CPU相關資訊。

  3. thread_priority 設定優先順序。user 級優先順序設定大於0。

mysql
mysql> create resource group user_ytt type = user vcpu = 0-1 thread_priority=19 enable;
Query OK, 0 rows affected (0.03 sec)

RG相關資訊可以從 information_schema.resource_groups 系統表裡檢索。

mysql
mysql> select * from information_schema.resource_groups;
+---------------------+---------------------+------------------------+----------+-----------------+
| RESOURCE_GROUP_NAME | RESOURCE_GROUP_TYPE | RESOURCE_GROUP_ENABLED | VCPU_IDS | THREAD_PRIORITY |
+---------------------+---------------------+------------------------+----------+-----------------+
| USR_default | USER | 1 | 0-3 | 0 |
| SYS_default | SYSTEM | 1 | 0-3 | 0 |
| user_ytt | USER | 1 | 0-1 | 19 |
+---------------------+---------------------+------------------------+----------+-----------------+
3 rows in set (0.00 sec)

我們來給語句select guid from t1 group by left(guid,8) order by rand() 賦予RG user_ytt。

mysql> show processlist;
+-----+-----------------+-----------+------+---------+-------+------------------------+-----------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+-----+-----------------+-----------+------+---------+-------+------------------------+-----------------------------------------------------------+
| 4 | event_scheduler | localhost | NULL | Daemon | 10179 | Waiting on empty queue | NULL |
| 240 | root | localhost | ytt | Query | 101 | Creating sort index | select guid from t1 group by left(guid,8) order by rand() |
| 245 | root | localhost | ytt | Query | 0 | starting | show processlist |
+-----+-----------------+-----------+------+---------+-------+------------------------+-----------------------------------------------------------+
3 rows in set (0.00 sec)

找到連線240對應的thread_id。

mysql
mysql> select thread_id from performance_schema.threads where processlist_id = 240;
+-----------+
| thread_id |
+-----------+
| 278 |
+-----------+
1 row in set (0.00 sec)

給這個執行緒278賦予RG user_ytt。沒報錯就算成功了。

mysql
mysql> set resource group user_ytt for 278;
Query OK, 0 rows affected (0.00 sec)

當然這個是在運維層面來做的,我們也可以在開發層面結合 MYSQL HINT 來單獨給這個語句賦予RG。比如:

mysql
mysql> select /*+ resource_group(user_ytt) */guid from t1 group by left(guid,8) order by rand().
...
8388602 rows in set (4 min 46.09 sec)

RG的限制:

  1. Linux 平臺上需要開啟 CAPSYSNICE 特性。比如我機器上用systemd 給mysql 服務加上

    systemctl edit mysql@80 [Service] AmbientCapabilities=CAP_SYS_NICE

  2. mysql 執行緒池開啟後RG失效。

  3. freebsd,solaris 平臺thread_priority 失效。

  4. 目前只能繫結CPU,不能繫結其他