-
-
Save jec006/8426452 to your computer and use it in GitHub Desktop.
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
[mysqld] | |
# Slow Log | |
#slow_query_log = 1 | |
#log_queries_not_using_indexes = 1 | |
#long_query_time = 1 | |
# Disable DNS lookups for performance | |
skip_name_resolve | |
# MySQL >= 5.5.5 uses InnoDB by default, but set it just in case | |
#default-storage-engine = innodb | |
# Store each InnoDB table in a separate file rather than in the system | |
# tablespace | |
innodb_file_per_table | |
# Avoid double-buffering of I/O; this can help throughput. | |
innodb_flush_method = O_DIRECT | |
# Larger sizes offer better performance but result in longer recovery times. | |
# MySQL Performance blog recommends 64-512M depending on server size. | |
innodb_log_file_size = 64M | |
# MySQL Performance Blog recommends 70-80% of memory allocated to the InnoDB | |
# buffer pool for a dedicated server. This is only allocated at startup so it | |
# should be large. For development, 25-50% of available RAM is a good guideline | |
# depending on what else is running on the box. The default is 128MB, although | |
# OS packages seem to set it to 512MB. | |
innodb_buffer_pool_size = 1G | |
# Log is flushed to disk every second, but not on each commit. This ensures | |
# that only an OS crash or a power outage can erase the last second of logs. | |
innodb_flush_log_at_trx_commit = 2 | |
# Note that this is a minimum size; MySQL will allocate this or whatever it | |
# determines it needs for the join cache. Small is good because each join in a | |
# query gets its own join buffer. See the MySQL Performance Blog for | |
# details. | |
join_buffer_size = 1M | |
# This only applies to MyISAM tables, but keep it between 4-32M as per | |
# mysql performance blog because large temp tables will be written to disk as | |
# MyISAM tables. | |
key_buffer_size = 32M | |
# MySQL uses min(tmp_table_size, max_heap_table_size) to decide whether to | |
# write the temp table to disk as a MyISAM table, so we set both to the same | |
# value for consistency. | |
tmp_table_size = 64M | |
max_heap_table_size = 64M | |
# Minimize thread creation, since thread creation/destruction is expensive and | |
# happens with each connection. We allow a lot of connections so keeping this | |
# higher will help throughput. | |
thread_cache_size = 16 | |
# Opening tables is expensive; this is a good value for apps that require | |
# ~200 tables. | |
table_open_cache = 1024 | |
query_cache_type = 1 | |
query_cache_size = 32M | |
query_cache_min_res_unit = 1K | |
max_allowed_packet = 16M | |
# Maximum number of connections to the server | |
max_connections = 200 | |
# This defines how long the server will wait for inactive application | |
# connections, in seconds. Keep it as short as possible in production | |
# environments, e.g., 30-60 seconds, to prevent inactive connections from | |
# stacking up under heavy load, but long enough to prevent dropped connections | |
# during the most frequent long-running operations. For development, values | |
# on the order of a few minutes are fine. | |
wait_timeout = 120 | |
# This sets the timeout for mysql command-line clients and utilities; it does | |
# not impact application performance. | |
interactive_timeout = 300 | |
# Replication | |
# Server ID must be unique across all servers in the cluster | |
#server_id = <%= server_id %> | |
# Offset the auto-increment to avoid collisions if there are multiple masters. | |
# auto_increment_increment should be set to the number of masters. | |
# auto_increment_offset should be set to the server_id, assuming server_id is | |
# sequential. | |
#auto_increment_increment = <%= masters %> | |
#auto_increment_offset = <%= server_id %> | |
# Enable and configure the binary log | |
#log-bin=mysqld-bin | |
#relay_log = mysql-relay-bin | |
#relay_log_index = mysql-relay-bin.index | |
#expire_logs_days = 3 | |
#max_binlog_size = <%= max_binlog_size %> | |
# Active master should be 0 (read-write); passive master and/or slaves should | |
# be 1 (read-only) | |
#read_only = <%= read_only %> | |
# Exclude MySQL system databases from replication | |
#replicate_ignore_db = mysql | |
#replicate_ignore_db = information_schema | |
#replicate_ignore_db = performance_schema | |
#binlog_ignore_db = mysql | |
#binlog_ignore_db = information_schema | |
#binlog_ignore_db = performance_schema | |
#[mysqld_safe] | |
#log_error = /var/log/mysqld.log | |
#pid_file = /var/run/mysqld/mysqld.pid |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment