版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、MySQL優(yōu)化經(jīng)驗作者: 來源:zz 發(fā)表時間:2006-12-12 瀏覽次數(shù): 127 字號:大 中 小MySQL優(yōu)化經(jīng)驗 聲明不是本人整理。 同時在線訪問量繼續(xù)增大 對于1G內(nèi)存的服務器明顯感覺到吃力嚴重時甚至每天都會死機 或者時不時的服務器卡一下 這個問題曾經(jīng)困擾了我半個多月MySQL使用是很具伸縮性的算法
2、,因此你通常能用很少的內(nèi)存運行或給MySQL更多的被存以得到更好的性能。 安裝好mysql后,配制文件應該在/usr/local/mysql/share/mysql目錄中,配制文件有幾個,有my-f my-f my-f my-f,不同的流量的網(wǎng)站和不同配制的服務器環(huán)境,當然需要有不同的配制文件了。 一般的情況下,my-f這個配制文件就能滿足我們的大多需要;一般我們會把配置文件拷貝到/etc/f 只需要修改這個配置文件就可以了,使用mysqladmin variables extended-status u root p 可以看到目前的參數(shù),有個配置參數(shù)是最重要的,即k
3、ey_buffer_size,query_cache_size,table_cache。 key_buffer_size只對MyISAM表起作用, key_buffer_size指定索引緩沖區(qū)的大小,它決定索引處理的速度,尤其是索引讀的速度。一般我們設為16M,實際上稍微大一點的站點這個數(shù)字是遠遠不夠的,通過檢查狀態(tài)值Key_read_requests和Key_reads,可以知道key_buffer_size設置是否合理。比例key_reads / key_read_requests應該盡可能的低,至少是1:100,1:1000更好(上述狀態(tài)值可以使用SHOW STATUS LIKE key
4、_read%獲得)。 或者如果你裝了phpmyadmin 可以通過服務器運行狀態(tài)看到,筆者推薦用phpmyadmin管理mysql,以下的狀態(tài)值都是本人通過phpmyadmin獲得的實例分析: 這個服務器已經(jīng)運行了20天 key_buffer_size 128M key_read_requests 650759289 key_reads - 79112 比例接近1:8000 健康狀況非常好 另外一個估計key_buffer_size的辦法把你網(wǎng)站數(shù)據(jù)庫的每個表的索引所占空間大小加起來看看以此服務器為例:比較大的幾個表索引加起來大概125M 這個數(shù)字會隨著表變大而變大。 從4.0.1開始,MyS
5、QL提供了查詢緩沖機制。使用查詢緩沖,MySQL將SELECT語句和查詢結(jié)果存放在緩沖區(qū)中,今后對于同樣的SELECT語句(區(qū)分大小寫),將直接從緩沖區(qū)中讀取結(jié)果。根據(jù)MySQL用戶手冊,使用查詢緩沖最多可以達到238%的效率。 通過調(diào)節(jié)以下幾個參數(shù)可以知道query_cache_size設置得是否合理 Qcache inserts Qcache hits Qcache lowmem prunes Qcache free blocks Qcache total blocksQcache_lowmem_prunes的值非常大,則表明經(jīng)常出現(xiàn)緩沖不夠的情況,同時Qcache_hits的值非常大,則
6、表明查詢緩沖使用非常頻繁,此時需要增加緩沖大小Qcache_hits的值不大,則表明你的查詢重復率很低,這種情況下使用查詢緩沖反而會影響效率,那么可以考慮不用查詢緩沖。此外,在SELECT語句中加入SQL_NO_CACHE可以明確表示不使用查詢緩沖。 Qcache_free_blocks,如果該值非常大,則表明緩沖區(qū)中碎片很多query_cache_type指定是否使用查詢緩沖 我設置: query_cache_size = 32M query_cache_type= 1 得到如下狀態(tài)值: Qcache queries in cache 12737 表明目前緩存的條數(shù) Qcache inser
7、ts 20649006 Qcache hits 79060095 看來重復查詢率還挺高的 Qcache lowmem prunes 617913有這么多次出現(xiàn)緩存過低的情況 Qcache not cached 189896 Qcache free memory 18573912目前剩余緩存空間 Qcache free blocks 5328 這個數(shù)字似乎有點大碎片不少 Qcache total blocks 30953 如果內(nèi)存允許32M應該要往上加點 table_cache指定表高速緩存的大小。每當MySQL訪問一個表時,如果在表緩沖區(qū)中還有空間,該表就被打開并放入其中,這樣可以更快地訪問表
8、內(nèi)容。通過檢查峰值時間的狀態(tài)值Open_tables和Opened_tables,可以決定是否需要增加table_cache的值。如果你發(fā)現(xiàn)open_tables等于table_cache,并且opened_tables在不斷增長,那么你就需要增加table_cache的值了(上述狀態(tài)值可以使用SHOW STATUS LIKE Open%tables獲得)。注意,不能盲目地把table_cache設置成很大的值。如果設置得太高,可能會造成文件描述符不足,從而造成性能不穩(wěn)定或者連接失敗。 對于有1G內(nèi)存的機器,推薦值是128256。 筆者設置table_cache = 256 得到以下狀態(tài): O
9、pen tables 256 Opened tables 9046 雖然open_tables已經(jīng)等于table_cache,但是相對于服務器運行時間來說,已經(jīng)運行了20天,opened_tables的值也非常低。因此,增加table_cache的值應該用處不大。如果運行了6個小時就出現(xiàn)上述值 那就要考慮增大table_cache。 如果你不需要記錄2進制log 就把這個功能關(guān)掉,注意關(guān)掉以后就不能恢復出問題前的數(shù)據(jù)了,需要您手動備份,二進制日志包含所有更新數(shù)據(jù)的語句,其目的是在恢復數(shù)據(jù)庫時用它來把數(shù)據(jù)盡可能恢復到最后的狀態(tài)。另外,如果做同步復制( Replication )的話,也需要使用二
10、進制日志傳送修改情況。 log_bin指定日志文件,如果不提供文件名,MySQL將自己產(chǎn)生缺省文件名。MySQL會在文件名后面自動添加數(shù)字引,每次啟動服務時,都會重新生成一個新的二進制文件。此外,使用log-bin-index可以指定索引文件;使用binlog-do-db可以指定記錄的數(shù)據(jù)庫;使用binlog-ignore-db可以指定不記錄的數(shù)據(jù)庫。注意的是:binlog-do-db和binlog-ignore-db一次只指定一個數(shù)據(jù)庫,指定多個數(shù)據(jù)庫需要多個語句。而且,MySQL會將所有的數(shù)據(jù)庫名稱改成小寫,在指定數(shù)據(jù)庫時必須全部使用小寫名字,否則不會起作用。 關(guān)掉這個功能只需要在他前面加
11、上#號 #log-bin 開啟慢查詢?nèi)罩? slow query log ) 慢查詢?nèi)罩緦τ诟櫽袉栴}的查詢非常有用。它記錄所有查過long_query_time的查詢,如果需要,還可以記錄不使用索引的記錄。下面是一個慢查詢?nèi)罩镜睦樱?開啟慢查詢?nèi)罩?,需要設置參數(shù)log_slow_queries、long_query_times、log-queries-not-using-indexes。 log_slow_queries指定日志文件,如果不提供文件名,MySQL將自己產(chǎn)生缺省文件名。long_query_times指定慢查詢的閾值,缺省是10秒。log-queries-not-using-
12、indexes是4.1.0以后引入的參數(shù),它指示記錄不使用索引的查詢。筆者設置long_query_time=10 筆者設置: sort_buffer_size = 1M max_connections=120 wait_timeout =120 back_log=100 read_buffer_size = 1M thread_cache=32 interactive_timeout=120 thread_concurrency = 4 參數(shù)說明: back_log 要求MySQL能有的連接數(shù)量。當主要MySQL線程在一個很短時間內(nèi)得到非常多的連接請求,這就起作用,然后主線程花些時間(盡管很
13、短)檢查連接并且啟動一個新線程。back_log值指出在MySQL暫時停止回答新請求之前的短時間內(nèi)多少個請求可以被存在堆棧中。只有如果期望在一個短時間內(nèi)有很多連接,你需要增加它,換句話說,這值對到來的TCP/IP連接的偵聽隊列的大小。你的操作系統(tǒng)在這個隊列大小上有它自己的限制。 Unix listen(2)系統(tǒng)調(diào)用的手冊頁應該有更多的細節(jié)。檢查你的OS文檔找出這個變量的最大值。試圖設定back_log高于你的操作系統(tǒng)的限制將是無效的。 max_connections 并發(fā)連接數(shù)目最大,120 超過這個值就會自動恢復,出了問題能自動解決 thread_cache 沒找到具體說明,不過設置為32后
14、 20天才創(chuàng)建了400多個線程 而以前一天就創(chuàng)建了上千個線程 所以還是有用的 thread_concurrency #設置為你的cpu數(shù)目x2,例如,只有一個cpu,那么thread_concurrency=2 #有2個cpu,那么thread_concurrency=4 skip-innodb #去掉innodb支持代碼: # Example MySQL config medium systems. # # This is for a system with little memory (32M - 64M) where MySQL plays # an important part, or
15、 systems up to 128M where MySQL is used together with # other programs (such as a web server) # # You can copy this # /etc/f to set global options, # mysql-data-dir/f to set server-specific options (in this # installation this directory is /var/lib/mysql) or # /f to set user-specific options. # # In
16、 this file, you can use all long options that a program supports. # If you want to know which options a program supports, run the program # with the "-help" option. # The following options will be passed to all MySQL clients client #password = your_password port = 3306 socket = /tmp/mysql.
17、sock #socket = /var/lib/mysql/mysql.sock # Here follows entries for some specific programs # The MySQL server mysqld port = 3306 socket = /tmp/mysql.sock #socket = /var/lib/mysql/mysql.sock skip-locking key_buffer = 128M max_allowed_packet = 1M table_cache = 256 sort_buffer_size = 1M net_buffer_leng
18、th = 16K myisam_sort_buffer_size = 1M max_connections=120 #addnew config wait_timeout =120 back_log=100 read_buffer_size = 1M thread_cache=32 skip-innodb skip-bdb skip-name-resolve join_buffer_size=512k query_cache_size = 32M interactive_timeout=120 long_query_time=10 log_slow_queries= /usr/local/my
19、sql4/logs/slow_query.log query_cache_type= 1 # Try number of CPU's*2 for thread_concurrency thread_concurrency = 4 #end new config # Don't listen on a TCP/IP port at all. This can be a security enhancement, # if all processes that need to connect to mysqld run on the same host. # All interac
20、tion with mysqld must be made via Unix sockets or named pipes. # Note that using this option without enabling named pipes on Windows # (via the "enable-named-pipe" option) will render mysqld useless! # #skip-networking # Replication Master Server (default) # binary logging is required for
21、replication #log-bin # required unique id between 1 and 232 - 1 # defaults to 1 if master-host is not set # but will not function as a master if omitted server-id = 1 # Replication Slave (comment out master section to use this) # # To configure this host as a replication slave, you can choose betwee
22、n # two methods : # # 1) Use the CHANGE MASTER TO command (fully described in our manual) - # the syntax is: # # CHANGE MASTER TO MASTER_HOST=, MASTER_PORT=, # MASTER_USER=, MASTER_PASSWORD= ; # # where you replace , , by quoted strings and # by the master's port number (3306 by default). # # Ex
23、ample: # # CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306, # MASTER_USER='joe', MASTER_PASSWORD='secret' # # OR # # 2) Set the variables below. However, in case you choose this method, then # start replication for the first time (even unsuccessfully, for exampl
24、e # if you mistyped the password in master-password and the slave fails to # connect), the slave will create a file, and any later # change in this the variables' values below will be ignored and # overridden by the content of the file, unless you shutdown # the slave ser
25、ver, delete and restart the slaver server. # For that reason, you may want to leave the lines below untouched # (commented) and instead use CHANGE MASTER TO (see above) # # required unique id between 2 and 232 - 1 # (and different from the master) # defaults to 2 if master-host is set #
26、but will not function as a slave if omitted #server-id = 2 # # The replication master for this slave - required #master-host = # # The username the slave will use for authentication when connecting # to the master - required #master-user = # # The password the slave will authenticate with when conne
27、cting to # the master - required #master-password = # # The port the master is listening on. # optional - defaults to 3306 #master-port = # # binary logging - not required for slaves, but recommended #log-bin # Point the following paths to different dedicated disks #tmpdir = /tmp/ #log-update = /pat
28、h-to-dedicated-directory/hostname # Uncomment the following if you are using BDB tables #bdb_cache_size = 4M #bdb_max_lock = 10000 # Uncomment the following if you are using InnoDB tables #innodb_data_home_dir = /var/lib/mysql/ #innodb_data_ = ibdata1:10M:autoextend #innodb_log_group_home_dir = /var
29、/lib/mysql/ #innodb_log_arch_dir = /var/lib/mysql/ # You can set ._buffer_pool_size up to 50 - 80 % # of RAM but beware of setting memory usage too high #innodb_buffer_pool_size = 16M #innodb_additional_mem_pool_size = 2M # Set ._log_ to 25 % of buffer pool size #innodb_log_ = 5M #innodb_log_buffer_
30、size = 8M #innodb_flush_log_at_trx_commit = 1 #innodb_lock_wait_timeout = 50 mysqldump quick max_allowed_packet = 16M mysql no-auto-rehash # Remove the next comment character if you are not familiar with SQL #safe-updates isamchk key_buffer = 20M sort_buffer_size = 20M read_buffer = 2M write_buffer
31、= 2M myisamchk key_buffer = 20M sort_buffer_size = 20M read_buffer = 2M write_buffer = 2M mysqlhotcopy interactive-timeout補充 優(yōu)化table_cachetable_cache指定表高速緩存的大小。每當MySQL訪問一個表時,如果在表緩沖區(qū)中還有空間,該表就被打開并放入其中,這樣可以更快地訪問表內(nèi)容。通過檢查峰值時間的狀態(tài)值Open_tables和Opened_tables,可以決定是否需要增加table_cache的值。如果你發(fā)現(xiàn)open_tables等于table_cache,并且opened_tables在不斷增長,那么你就需要增加table_cache的值了(上述狀態(tài)值可以使用SHOW STATUS LIKE Open%tables獲得)。注意,不能盲目地把table_cache設置成很大的值。如果設置得太高,可能會造成文件描述符不足,從而造成性能不穩(wěn)定或者連接失敗。對于有1G內(nèi)存的機器,推薦值是128256。 案例1:該案例來自一個不是特別繁忙的服務器table_cache 512open_tables 103opened_tabl
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2022年銷售經(jīng)理年終個人工作總結(jié)4篇
- 《采用合理的論證方法》課件 2024-2025學年統(tǒng)編版高中語文選擇性必修上冊
- 2025年春九年級物理下冊 第十七、十八章綜合測試卷(蘇科版)
- 石河子大學《文化遺產(chǎn)概論》2022-2023學年第一學期期末試卷
- 石河子大學《攝影》2022-2023學年第一學期期末試卷
- 石河子大學《機械原理》2022-2023學年第一學期期末試卷
- 沈陽理工大學《專題產(chǎn)品設計》2021-2022學年第一學期期末試卷
- 沈陽理工大學《線性控制系統(tǒng)》2022-2023學年期末試卷
- 沈陽理工大學《熱工與流體力學》2022-2023學年第一學期期末試卷
- 沈陽理工大學《計算機網(wǎng)絡技術(shù)基礎(chǔ)》2022-2023學年期末試卷
- 中醫(yī)減肥藥方-超有效分類型
- 論現(xiàn)代外科技術(shù)的發(fā)展趨勢
- 辦公樓室外地面維修改造施工組織設計樣本
- 小學科學試卷分析存在問題及整改措施4篇-
- 合同訂立前的風險告知與防范
- 電梯使用安全風險日管控周排查月調(diào)度管理制度及清單表
- 架構(gòu)師轉(zhuǎn)正述職報告
- 2023年廣東省普通高中學業(yè)水平合格性考試數(shù)學真題試卷含詳解
- 管道支架安裝圖集
- 保護眼睛-家長進課堂課件
- 肛門疾病知識講座
評論
0/150
提交評論