Mysql參數配置+Inside君推薦配置

來源:互聯網
上載者:User

標籤:mysql參數配置

自己的:


[mysqld]

basedir = /usr/local/mysql

datadir = /data/mysql

port = 3306

server_id = 2

socket = /tmp/mysql.sock

pid-file=/tmp/mysql_3306.pid

binlog_cache_size = 1M

binlog_format=row

log-error = /data1/log/3306.err

log-bin=/data1/binlog/mysql-bin

skip-name-resolve

sync_binlog=1

explicit_defaults_for_timestamp

sql_mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER

expire_logs_days = 7

default-storage-engine=INNODB

max_connect_errors = 100000

max_connections=3000


#####     Global Buffers     ###########################################

innodb_autoinc_lock_mode=2

innodb_file_per_table=1

innodb_flush_log_at_trx_commit=2

innodb_buffer_pool_size = 93G  

innodb_log_buffer_size = 64M

innodb_log_file_size = 512M

innodb_lock_wait_timeout = 120

innodb_data_home_dir = /data/mysql  

innodb_data_file_path = ibdata1:1G:autoextend  

innodb_log_group_home_dir = /data1/redolog

innodb_io_capacity = 30000

innodb_max_dirty_pages_pct = 75

innodb_open_files = 4096

innodb_page_size = 16k

innodb_purge_threads=4

innodb_large_prefix = 1 

innodb_thread_concurrency = 128

innodb_write_io_threads=64

innodb_read_io_threads=64

innodb_print_all_deadlocks = 1 

innodb_strict_mode = 1 

innodb_sort_buffer_size = 60M

innodb_online_alter_log_max_size=1G

innodb_use_native_aio=1

transaction-isolation = READ-COMMITTED



#####    table cache performance settings   ############################

table_open_cache = 4096

table_definition_cache = 4096

table_open_cache_instances = 64



#####     Thread Buffers     ###########################################

sort_buffer_size = 16M  

myisam_sort_buffer_size = 256M  

read_buffer_size = 8M  

join_buffer_size = 16M  

read_rnd_buffer_size = 64M

max_heap_table_size = 32M  

tmp_table_size = 32M

thread_cache_size = 16  

wait_timeout = 30  

open_files_limit = 65535

max_allowed_packet = 20M


wsrep_provider=/usr/lib64/libgalera_smm.so

wsrep_cluster_address=gcomm://172.31.101.29,172.31.101.30,172.31.101.31

wsrep_node_address=172.31.101.29

wsrep_sst_method=xtrabackup-v2

wsrep_cluster_name=my_centos_cluster

wsrep_sst_auth="sstuser:sstuser"

[mysqld_safe]

malloc-lib=/usr/lib64/libjemalloc.so.2









Inside君整理了一份最新基於MySQL 5.6和5.7的設定檔範本,基本上可以說覆蓋90%的調優選項,使用者只需根據自己的伺服器配置稍作修改即可,如InnoDB緩衝池的大小、IO能力(innodb_buffer_pool_size,innodb_io_capacity)。特別注意,這份設定檔不用修改,可以直接運行在MySQL 5.6和5.7的版本下,這裡使用了小小的技巧,具體可看設定檔。如果配置參數存在問題,也可以及時反饋Inside君,我們一起成長。

觸發Inside君做這件事情的原因是大部分網路上的MySQL設定檔都非常非常古老,大多都是基於MySQL 5.1的版本,這導致了絕大部分MySQL並沒有運行在最優的環境,從而導致一些錯誤的使用,亦或是災難性事故的發生,比如資料丟失,主從資料不一致等。而這些問題早在5.6版本及以後的版本中得到瞭解決。

最後,拋棄你那所謂的、陳舊的、錯誤的MySQL設定檔,面向一個嶄新的高效能、高可靠、高可擴充MySQL時代,你要做的就是下載這份設定檔並用於你的生產環境

[client]user=davidpassword=88888888[mysqld]########basic settings########server-id = 11 port = 3306user = mysqlbind_address = 10.166.224.32autocommit = 0character_set_server=utf8mb4skip_name_resolve = 1max_connections = 800max_connect_errors = 1000datadir = /data/mysql_datatransaction_isolation = READ-COMMITTEDexplicit_defaults_for_timestamp = 1join_buffer_size = 134217728tmp_table_size = 67108864tmpdir = /tmpmax_allowed_packet = 16777216sql_mode = "STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER"interactive_timeout = 1800wait_timeout = 1800read_buffer_size = 16777216read_rnd_buffer_size = 33554432sort_buffer_size = 33554432########log settings########log_error = error.logslow_query_log = 1slow_query_log_file = slow.loglog_queries_not_using_indexes = 1log_slow_admin_statements = 1log_slow_slave_statements = 1log_throttle_queries_not_using_indexes = 10expire_logs_days = 90long_query_time = 2min_examined_row_limit = 100########replication settings########master_info_repository = TABLErelay_log_info_repository = TABLElog_bin = bin.logsync_binlog = 1gtid_mode = onenforce_gtid_consistency = 1log_slave_updatesbinlog_format = row relay_log = relay.logrelay_log_recovery = 1binlog_gtid_simple_recovery = 1slave_skip_errors = ddl_exist_errors########innodb settings########innodb_page_size = 8192innodb_buffer_pool_size = 6Ginnodb_buffer_pool_instances = 8innodb_buffer_pool_load_at_startup = 1innodb_buffer_pool_dump_at_shutdown = 1innodb_lru_scan_depth = 2000innodb_lock_wait_timeout = 5innodb_io_capacity = 4000innodb_io_capacity_max = 8000innodb_flush_method = O_DIRECTinnodb_file_format = Barracudainnodb_file_format_max = Barracudainnodb_log_group_home_dir = /redolog/innodb_undo_directory = /undolog/innodb_undo_logs = 128innodb_undo_tablespaces = 3innodb_flush_neighbors = 1innodb_log_file_size = 4Ginnodb_log_buffer_size = 16777216innodb_purge_threads = 4innodb_large_prefix = 1innodb_thread_concurrency = 64innodb_print_all_deadlocks = 1innodb_strict_mode = 1innodb_sort_buffer_size = 67108864 ########semi sync replication settings########plugin_dir=/usr/local/mysql/lib/pluginplugin_load = "rpl_semi_sync_master=semisync_master.so;rpl_semi_sync_slave=semisync_slave.so"loose_rpl_semi_sync_master_enabled = 1loose_rpl_semi_sync_slave_enabled = 1loose_rpl_semi_sync_master_timeout = 5000[mysqld-5.7]innodb_buffer_pool_dump_pct = 40innodb_page_cleaners = 4innodb_undo_log_truncate = 1innodb_max_undo_log_size = 2Ginnodb_purge_rseg_truncate_frequency = 128binlog_gtid_simple_recovery=1log_timestamps=systemtransaction_write_set_extraction=MURMUR32show_compatibility_56=on


本文出自 “12729686” 部落格,請務必保留此出處http://12739686.blog.51cto.com/12729686/1908825

Mysql參數配置+Inside君推薦配置

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.