Created
January 31, 2013 20:22
-
-
Save vanjos/4686100 to your computer and use it in GitHub Desktop.
Find out how much possible MEM MySQL would use (with INNODB)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SHOW VARIABLES LIKE 'innodb_buffer_pool_size'; | |
SHOW VARIABLES LIKE 'innodb_additional_mem_pool_size'; | |
SHOW VARIABLES LIKE 'innodb_log_buffer_size'; | |
SHOW VARIABLES LIKE 'thread_stack'; | |
SET @kilo_bytes = 1024; | |
SET @mega_bytes = @kilo_bytes * 1024; | |
SET @giga_bytes = @mega_bytes * 1024; | |
SET @innodb_buffer_pool_size = 2 * @giga_bytes; | |
SET @innodb_additional_mem_pool_size = 16 * @mega_bytes; | |
SET @innodb_log_buffer_size = 8 * @mega_bytes; | |
SET @thread_stack = 192 * @kilo_bytes; | |
SELECT | |
( @@key_buffer_size + @@query_cache_size + @@tmp_table_size | |
+ @innodb_buffer_pool_size + @innodb_additional_mem_pool_size | |
+ @innodb_log_buffer_size | |
+ @@max_connections * ( | |
@@read_buffer_size + @@read_rnd_buffer_size + @@sort_buffer_size | |
+ @@join_buffer_size + @@binlog_cache_size + @thread_stack | |
) ) / @giga_bytes AS MAX_MEMORY_GB; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment