mysql数据库引擎调优
為什么80%的碼農都做不了架構師?>>> ??
---------------myisam----------------
? Optimizing disk storage
? Tuning your tables for performance
?? ANALYZE TABLE, OPTIMIZE TABLE,REPAIR TABLE。
? Using the MyISAM utilities
myisam_ftdump 分析全文索引。
myisamchk 表性能分析。
myisamlog 日志變化分析。.
myisampack 壓縮表。
? Storing a table in index order
? Compressing tables
? Defragmenting tables
? Monitoring the key cache
? Preloading key caches
? Using multiple key caches
? Other parameters to consider
?
--------------------innodb---------------
? Using the SHOW ENGINE command
? Using InnoDB monitors
? Monitoring logfiles
? Monitoring the buffer pool
? Monitoring tablespaces
? Using INFORMATION_SCHEMA tables
? Other parameters to consider:
innodb_thread_concurrency 調整并發線程0-->獨立硬盤分區+cpu內核數;
innodb_fast_shutdown? 減少關機時間;
innodb_lock_wait_timeout 默認鎖超時;
批量導入數據時候: AUTOCOMMIT;暫時停止外鍵和唯一值限制。
轉載于:https://my.oschina.net/cshell/blog/64141
超強干貨來襲 云風專訪:近40年碼齡,通宵達旦的技術人生總結
以上是生活随笔為你收集整理的mysql数据库引擎调优的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 定制属于你的HouseMD
- 下一篇: JNDI实现连接池