…MyISAM Specific options key_buffer_size = 8M read_buffer_size = 1M read_rnd_buffer_size = 4M bulk_insert_buffer_size = 8M myisam_sort_buffer_size = 8M myisam_max_sort_file_size = 10G #myisam_max_extra_sort_file_size = 10G myisam…
Post: Impact of the sort buffer size in MySQL
… sorting so I created a MyISAM table with one char column without an index: CREATE TABLE `sorttest` ( `data` char(30) DEFAULT NULL ) ENGINE=MyISAM DEFAULT… and the number of sort merge passes. For the small values of the sort buffer size, below 440KB, there are many sort merge passes and the…
Post: MySQL 5.5 and MySQL 5.6 default variable values differences
… higher default value. sort_buffer_size was decreased to 256K from 2M. This change should help many small sorts for which allocation of 2M for sort buffer was… has NO_ENGINE_SUBSTITUTION value by default which is good change as trying to create Innodb table but getting MyISAM because Innodb was…
Post: MySQL Server Memory Usage
…buffer_size bytes of memory if done to MyISAM tables. myisam_sort_buffer_size…buffer,sort_buffer, tmp_table_size etc Many variabes can be set per connection. So you can’t relay on global values…
Post: Are larger buffers always better ?
…sort_buffer_size – recently I worked with case which was running much faster with 32K sort_buffer_size, compared to 32M. The problem was memory allocation – sorting…values with d=50 and some 10 distinct c values. read_buffer_size and read_rnd_buffer_size – These are buffers used by MyISAM…
Comment: Database problems in MySQL/PHP Applications
…size=1000M sort_buffer_size = 100M read_buffer_size = 100M read_rnd_buffer_size = 100M myisam_sort_buffer_size = 100M max_length_for_sort_data=2048 max_sort… # #skip-networking # Replication Master Server (default) # binary logging is required… this file to the variables’ values below will be ignored …
Post: MySQL: what read_buffer_size value is optimal ?
…surprising results with sort performance and today I’ve discovered even read_buffer_size selection may … int(10) unsigned NOT NULL, `slack` varchar(50) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 1 row in set…is the minimum size for read_buffer_size, this is why we start from this value. As …
Post: 10+ Ways to Crash or Overload MySQL
… ALTER 100 different tables ? This can be offset by keeping myisam_sort_buffer_size low, but then performance would suffer. Prepared Statements Number – Happily… Variables – Each server side can hold value up to max_allowed_packet in size (1M by default) but there does not seems to…
Comment: MySQL Server Memory Usage
…buffer = 256M key_buffer_size = 256M myisam_sort_buffer_size = 16M join_buffer_size = 64M read_buffer_size = 16M sort_buffer_size = 8M table_cache = 3600 table_definition_cache = 4096 thread_cache_size…
Comment: What to tune in MySQL Server after installation
…name-resolve #skip-bdb default-time-zone=America/Caracas max…size = 70 table_cache = 2048 table_open_cache = 512 [Buffers] join_buffer_size = 32M key_buffer_size = 640M myisam_sort_buffer_size = 64M sort_buffer_size = 4M read_rnd_buffer_size = 12M read_buffer_size…conections and this value is the max …

