MySQL記憶體佔用計算公式

chenfeng發表於2019-02-12


MySQL最大可使用記憶體(M):

select (@@key_buffer_size +@@innodb_buffer_pool_size + @@tmp_table_size + @@max_connections*(@@read_buffer_size + @@read_rnd_buffer_size + @@sort_buffer_size + @@join_buffer_size + @@binlog_cache_size + @@thread_stack) )/1024/1024  as "Total_AllMem result";



MySQL單個連線最大可使用記憶體(M):

select  (@@read_buffer_size + @@read_rnd_buffer_size + @@sort_buffer_size + @@join_buffer_size + @@binlog_cache_size + @@thread_stack)/1024/1024   as "Connection result";


MySQL最大可使用記憶體(不包含連線佔用記憶體)(M):

select (@@key_buffer_size +@@innodb_buffer_pool_size+ @@tmp_table_size )/1024/1024  as "Total_Mem result";



經典的MySQL記憶體計算器網站:

http://www.mysqlcalculator.com/


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2624794/,如需轉載,請註明出處,否則將追究法律責任。

相關文章