…cache_size = 16M max_heap_table_size = 64M sort_buffer_size = 4M join_buffer_size = 4M thread_cache_size = 1000 query_cache_size = 0 query_cache…size = 8M myisam_max_sort_file_size = 10G #myisam_max_extra_sort_file_size = 10G myisam_repair_threads = 1 myisam_recover socket=/var/lib/mysql/mysql…to tune…
Post: MySQL 5.5 and MySQL 5.6 default variable values differences
…MySQL 5.5 and before it was “ON” by default with query cache size of 0 which makes it disabled. I wish query_cache_size… Size scan resistant by default. Very welcome change ! thread_cache_size…size have been increased from 20 to 300 which I guess is one of the component of purging fine tuning in MySQL…
Post: Multiple purge threads in Percona Server 5.1.56 and MySQL 5.6.2
…thread and in MySQL 5.6.2 one can have multiple dedicated purge threads. Percona Server 5.1 supports multiple purge threads…innodb_buffer_pool_size=16G innodb_log_file_size=1900M innodb_…table max_connections=2000 table_cache=2000 Percona Server 5….to proper future 5.6 tuning. MySQL 5.6.2 Results With…
Post: MySQL Connection Timeouts
… overflow – MySQL is not accepting connections as quickly as it needs. There are 2 tuning places… net.ipv4.tcp_max_syn_backlog This is size of kernel buffer for all sockets. Default…thread or take one out of the thread cache. From this point on MySQL processes network communication in multiple threads…
Post: Configuring MySQL For High Number of Connections per Second
… on operating system size to allow MySQL to handle spikes. Although MySQL connections are quite …important to understand your application workload and tune specifically to your needs. This got …working with many connections per second is thread_cache which impacts cost of connections dramatically. …
Post: New SpecJAppServer results at MySQL and Sun.
… better to disable them. The MySQL Settings are probably what is the most interesting: MySQL 5.0 Tuning in /etc/my.cnf (included…_size = 2M sort_buffer_size = 32k thread_cache = 16 query_cache_size = 0M thread_concurrency = 8 max_heap_table_size=200M log-output = FILE log-slow-queries=/tmp/mysql…
Post: What to tune in MySQL Server after installation
… work as MySQL DBAs or be involved with MySQL Performance in some way is to ask them what should be tuned in MySQL Server… growth of Threads_Created variable I boost it higher. The goal is not to have threads created in normal operation. query_cache_size If your application is read intensive and you do not have application level caches this…
Post: Tuning InnoDB Concurrency Tickets
…this scenario, you will tune innodb_concurrency_tickets …mysql-user=root –mysql-socket=/var/lib/mysql/mysql.sock run Applicable my.cnf settings: innodb_buffer_pool_size…threads=8 innodb_io_capacity=500 innodb_max_dirty_pages_pct=90 max_connections=3000 query_cache_size=0 skip-name-resolve table_cache…
Post: Choosing innodb_buffer_pool_size
…MySQL needs – these include MySQL buffers – query cache, key_buffer, mysql threads, temporary tables, per thread…size choice. You do not want OS to cache what Innodb is caching already. Innodb cache is more efficient compared to OS cache… Innodb algorithms are finely tuned with consideration what is…
Post: MySQL Server Memory Usage
… – these are key_buffer_size, innodb_buffer_pool_size, innodb_additional_memory_pool_size, innodb_log_buffer_size, query_cache_size. If you’re using MyISAM seriously you can also add the size of Operation System cache you would like MySQL to… storage engines may have their own per thread or global memory allocations which are not tuned as buffers. Watch for these especially…

