Hello all, could somebody help me to tuning mysql? What i have:
Vps with CentOS release 5.10 (Final) i686, 6GB Ram and 4 vCores of Intel(R) Xeon(R) CPU E31270 @ 3.40GHz
My tuning prime:
My my.cnf:
Thanks
Vps with CentOS release 5.10 (Final) i686, 6GB Ram and 4 vCores of Intel(R) Xeon(R) CPU E31270 @ 3.40GHz
My tuning prime:
Code:
-- MYSQL PERFORMANCE TUNING PRIMER --
- By: Matthew Montgomery -
MySQL Version 5.5.36-cll i686
Uptime = 9 days 0 hrs 48 min 56 sec
Avg. qps = 10
Total Questions = 8039793
Threads Connected = 2
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/5.5/en/server-system-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 NOT enabled.
Current long_query_time = 10.000000 sec.
You have 1134 out of 8039814 that take longer than 10.000000 sec. to complete
Your long_query_time seems to be fine
BINARY UPDATE LOG
The binary update log is NOT enabled.
You will not be able to do point in time recovery
See http://dev.mysql.com/doc/refman/5.5/en/point-in-time-recovery.html
WORKER THREADS
Current thread_cache_size = 8
Current threads_cached = 6
Current threads_per_sec = 0
Historic threads_per_sec = 0
Your thread_cache_size is fine
MAX CONNECTIONS
Current max_connections = 250
Current threads_connected = 2
Historic max_used_connections = 45
The number of used connections is 18% of the configured maximum.
Your max_connections variable seems to be fine.
INNODB STATUS
Current InnoDB index space = 36 M
Current InnoDB data space = 37 M
Current InnoDB buffer pool free = 0 %
Current innodb_buffer_pool_size = 8 M
Depending on how much space your innodb indexes take up it may be safe
to increase this value to up to 2 / 3 of total system memory
MEMORY USAGE
Max Memory Ever Allocated : 547 M
Configured Max Per-thread Buffers : 2.57 G
Configured Max Global Buffers : 72 M
Configured Max Memory Limit : 2.64 G
Physical Memory : 6.00 G
Max memory limit seem to be within acceptable norms
KEY BUFFER
Current MyISAM index space = 40 M
Current key_buffer_size = 16 M
Key cache miss rate is 1 : 22
Key buffer free ratio = 84 %
Your key_buffer_size seems to be fine
QUERY CACHE
Query cache is enabled
Current query_cache_size = 32 M
Current query_cache_used = 21 M
Current query_cache_limit = 1 M
Current Query cache Memory fill ratio = 67.36 %
Current query_cache_min_res_unit = 4 K
MySQL won't cache query results that are larger than query_cache_limit in size
SORT OPERATIONS
Current sort_buffer_size = 256 K
Current read_rnd_buffer_size = 8 M
Sort buffer seems to be fine
JOINS
Current join_buffer_size = 132.00 K
You have had 5358 queries where a join could not use an index properly
You have had 4903 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 = 13670 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_open_cache = 256 tables
Current table_definition_cache = 400 tables
You have a total of 2821 tables
You have 256 open tables.
Current table_cache hit rate is 0%
, while 100% of your table cache is in use
You should probably increase your table_cache
You should probably increase your table_definition_cache value.
TEMP TABLES
Current max_heap_table_size = 16 M
Current tmp_table_size = 16 M
Of 486591 temp tables, 30% were created on disk
Perhaps you should increase your tmp_table_size and/or max_heap_table_size
to reduce the number of disk-based temporary tables
Note! BLOB and TEXT columns are not allow in memory tables.
If you are using these columns raising these values might not impact your
ratio of on disk temp tables.
TABLE SCANS
Current read_buffer_size = 2 M
Current table scan ratio = 172 : 1
read_buffer_size seems to be fine
TABLE LOCKING
Current Lock Wait ratio = 1 : 352
You may benefit from selective use of InnoDB.
If you have long running SELECT's against MyISAM tables and perform
frequent updates consider setting 'low_priority_updates=1'
If you have a high concurrency of inserts on Dynamic row-length tables
consider setting 'concurrent_insert=ALWAYS'.
Code:
[myisamchk]
write_buffer=2M
key_buffer=128M
sort_buffer_size=128M
read_buffer=2M
[mysqld]
myisam_sort_buffer_size=16M
max_allowed_packet=1M
table_cache=256
local-infile=0
key_buffer=16M
thread_cache_size=8
query_cache_size=32M
innodb_buffer_pool_size=8M
skip-external-locking
max_user_connections=30
read_rnd_buffer_size=8M
wait_timeout=40
read_buffer_size=2M
server-id=1
sort_buffer_size=256K
open_files_limit=13670
max_connections=250
thread_concurrency=8
connect_timeout=10
innodb_file_per_table=1
default-storage-engine=MyISAM
[mysqldump]
max_allowed_packet=16M
quick
[mysql]
no-auto-rehash
[mysqlhotcopy]
interactive-timeout