mysql資料庫的QPS和TPS

2021-08-21 08:52:27 字數 950 閱讀 8778

tps -(transactions per second) 及資料庫的每秒傳輸的事物處理個數,主要是對事務性儲存引擎(innodb)的乙個效能指標。

計算方法:

tps = (com_commit + com_rollback)/uptime

sql語句:

use information_schema;  

select variable_value into @com_commit from global_status where variable_name ='com_commit';  

select variable_value into @com_rollback from global_status where variable_name ='com_rollback';  

select variable_value into @uptime from global_status where variable_name ='uptime';  

select (@com_commit+@com_rollback)/@uptime; 

qps -(queries per second) 及資料庫的每秒查詢處理量,同時適用innodb和myisam 等儲存引擎。

計算方法:

qps=questions/uptime

sql語句:

use information_schema;  

select variable_value into @questions from global_status where variable_name ='questions';  

select variable_value into @uptime from global_status where variable_name ='uptime';  

select @questions/@uptime;

mysql 切換資料庫 tp5 切換資料庫

在進行資料庫查詢的時候,支援切換資料庫進行查詢,例如 result db connect 資料庫型別 type mysql 伺服器位址 hostname 127.0.0.1 資料庫名 database thinkphp 資料庫使用者名稱 username root 資料庫密碼 password 12...

關於MySQL的TPS和QPS

tps transactions per second 每秒傳輸的事物處理個數 這是指伺服器每秒處理的事務數,支援事務的儲存引擎如innodb等特有的乙個效能指標。計算方法 tps com commit com rollback uptime use information schema selec...

oracle資料庫和mysql資料庫的區別

1 mysql裡用雙引號包起字串,oracle裡只可以用單引號包起字串。2 oracle是大型資料庫,而mysql是中小型資料庫。3 mysql的主鍵一般使用自動增長型別,在建立表時只要指定表的主鍵為auto increment,在插入記錄時,不需要再指定該記錄的主鍵值,主鍵將自動增長 oracle...