博客首页 注册 建议与交流 排行榜 加入友情链接
推荐 投诉 搜索: 帮助

上帝他爷

分别担任CU、ITPUB以及CSDN社区的MySQL版主! 我本来想说我是吃屎的! ^_^
  yueliangdao0608.cublog.cn

关于作者
姓名:杨涛
职业:DBA
年龄:25
位置:中国-深圳
个性介绍:又长了一岁
QQ:38257291
MSN:yueliangdao0608@gmail.com
|| << >> ||
我的分类


[笔记]MYSQL官方提供这个脚本实在是太好了
地址:
http://www.day32.com/MySQL/

我的测试机器运行结果。

[root@localhost david_yeung]# ./tuning-primer.sh all|more

        -- MYSQL PERFORMANCE TUNING PRIMER --
             - By: Matthew Montgomery -

MySQL Version 5.0.45-log i686

Uptime = 15 days 1 hrs 24 min 34 sec
Avg. qps = 1
Total Questions = 2088868
Threads Connected = 13

Server has been running for over 48hrs.
It should be safe to follow these recommendations


To find out more information on how each of these
runtime variables effects performance visit:
http://dev.mysql.com/doc/refman/ ... stem-variables.html
Visit http://www.mysql.com/products/enterprise/advisors.html
for info about MySQL's Enterprise Monitoring and Advisory Service


SLOW QUERIES

The slow query log is enabled.
Current long_query_time = 1 sec.
You have 144295 out of 2088889 that take longer than 1 sec. to complete
Your long_query_time seems to be fine

BINARY UPDATE LOG

The binary update log is enabled

WORKER THREADS

Current thread_cache_size = 32
Current threads_cached = 19
Current threads_per_sec = 0
Historic threads_per_sec = 0
Your thread_cache_size is fine

MAX CONNECTIONS

Current max_connections = 100
Current threads_connected = 13
Historic max_used_connections = 32
The number of used connections is 32% of the configured maximum.
Your max_connections variable seems to be fine.

MEMORY USAGE
Max Memory Ever Allocated : 998 M
Configured Max Per-thread Buffers : 633 M
Configured Max Global Buffers : 796 M
Configured Max Memory Limit : 1 G
Physical Memory : 946.57 M

Max memory limit exceeds 90% of physical memory


KEY BUFFER

Current MyISAM index space = 157 M
Current key_buffer_size = 256 M
Key cache miss rate is 1 : 464
Key buffer fill ratio = 2.00 %
Your key_buffer_size seems to be too high.
Perhaps you can use these resources elsewhere


QUERY CACHE

Query cache is enabled
Current query_cache_size = 256 M
Current query_cache_used = 18 M
Current query_cache_limit = 64 M
Current Query cache Memory fill ratio = 7.37 %
Current query_cache_min_res_unit = 4 K
Your query_cache_size seems to be too high.
Perhaps you can use these resources elsewhere

MySQL won't cache query results that are larger than query_cache_limit in size

SORT OPERATIONS

Current sort_buffer_size = 1 M
Current read_rnd_buffer_size = 3 M
Sort buffer seems to be fine

JOINS
Current join_buffer_size = 132.00 K
You have had 2 queries where a join could not use an index properly
You have had 2 joins without keys that check for key usage after each row
You should enable "log-queries-not-using-indexes"
Then look for non indexed joins in the slow query log.
If you are unable to optimize your queries you may want to increase your
join_buffer_size to accommodate larger joins in one pass.

Note! This script will still suggest raising the join_buffer_size when
ANY joins not using indexes are found.

OPEN FILES LIMIT
Current open_files_limit = 1024 files
The open_files_limit should typically be set to at least 2x-3x
that of table_cache if you have heavy MyISAM usage.
Your open_files_limit value seems to be fine

TABLE CACHE

Current table_cache value = 512 tables
You have a total of 472 tables
You have 473 open tables.
The table_cache value seems to be fine

TEMP TABLES

Current max_heap_table_size = 64 M
Current tmp_table_size = 64 M
Of 50784 temp tables, 23% were created on disk
Created disk tmp tables ratio seems fine

TABLE SCANS
Current read_buffer_size = 1020 K
Current table scan ratio = 738 : 1
read_buffer_size seems to be fine

TABLE LOCKING
Current Lock Wait ratio = 1 : 11710
Your table locking seems to be fine

发表于: 2008-03-06,修改于: 2008-03-06 15:35,已浏览955次,有评论1条 推荐 投诉


网友评论
网友: 本站网友 时间:2008-03-14 13:53:46 IP地址:159.226.20.★
这个脚本不错,在ubuntu上好像有错误,RedHat正确

Blog作者的回复:
什么错误,发来看看


 发表评论