我正在工作站上运行MySQL 5.5服务器以进行科学数据分析,并想知道如何配置MySQL以便从性能方面获得最大收益。我通常运行的查询类型涉及10-20个表的联接,并且可以运行很长时间,一到几分钟也不例外。只有极少数用户同时访问数据库(最多5个用户)。我将服务器从具有2.2 GHz双核和4 GB RAM的Lenovo Thinkpad T61移到了以下具有手动选择组件的全新机器上:
- Intel i7 3770,4x 3.4 GHz(以4x3.7 GHz运行)
- Z77芯片组
- 16 GB DDR3 1600 RAM
- Windows 7 Prof 64位
- Windows和MySQL服务器在Intel 520系列SSD驱动器上运行。
首次测试(在两台计算机上运行相同的查询)显示了新测试的速度有了明显的提高,但是查询仍然需要很多时间,我期望会有更多的提升。所讨论的查询已得到很好的优化,即所有表都具有适当的键,这些键也从“解释扩展”开始使用。
现在回到我当前的MySQL设置:首先,我应该提到很久以前我从MyISAM迁移到Innodb。
我的my.ini进行了一些调整(即偏离默认设置):
# Maximum size for internal (in-memory) temporary tables. If a table
# grows larger than this value, it is automatically converted to disk
# based table This limitation is for a single table. There can be many
# of them.
#tmp_table_size=35M
tmp_table_size=4000M
max_heap_table_size=4000M
# InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
# row data. The bigger you set this the less disk I/O is needed to
# access data in tables. On a dedicated database server you may set this
# parameter up to 80% of the machine physical memory size. Do not set it
# too large, though, because competition of the physical memory may
# cause paging in the operating system. Note that on 32bit systems you
# might be limited to 2-3.5G of user level memory per process, so do not
# set it too high.
#innodb_buffer_pool_size=96M
innodb_buffer_pool_size=800M
general-log
expire_logs_days = 60
general_log_file = "F:/my_query_mysql.log"
log-output = TABLE
optimizer_search_depth = 0 #meant to cure the "statistics state" bug in some queries
我想知道是否有人会建议更改上述数字或什至我不知道的其他设置。
我将不胜感激。
史蒂夫
编辑:我有两个查询涉及10-20表之间的联接,并在我的联想笔记本电脑和新PC上运行它们。查询#1在新计算机上花费了3m36s,在笔记本电脑上花费了9m11s。查询2在工作站上花费了22.5s,在笔记本电脑上花费了48.5s。因此执行速度大约提高了2-2.5倍。在工作站上,甚至没有使用50%的RAM。四个内核的平均CPU负载(如Windows任务管理器所报告)仅约为13%。每个内核的负载(如Core Temp所报告)对于一个内核大约为25-40%,而对于其他内核则小于等于10%,这表明MySQL在单个查询中没有使用多个内核。