1.環境
OS:Win 2003 Server (X86)
DB:MySQL 5.1.30-community-log
2.問題
MySQL Server占用的句柄數過大,使用過程消費句柄速度比釋放速度來的快,部分其他應用申請不到句柄,導致不可用。
2.1.Handle
>handle.exe -s -p mysqld.exe
01
Handle type summary:
02
Desktop : 1
03
Directory : 2
04
Event : 301663
05
File : 125
06
IoCompletion : 17
07
Key : 8
08
KeyedEvent : 1
09
Mutant : 24
10
Port : 2
11
Semaphore : 10
12
Thread : 207
13
WindowStation : 2
14
Total handles: 302062
2.2.MySQL相關參數
1
query_cache_size 84M
2
innodb_buffer_pool_size 250M
3
innodb_thread_concurrency 18
3.想到的解決辦法
3.1.關閉QueryCache
3.2.關閉innodb_thread_concurrency
3.3.OS用Win X64或者非Win版替代
4.延伸閱讀
http://bugs.mysql.com/bug.php?id=45252
本文來自於開源中國社區 作者 HowardX.D.Hua