informix 11.5 出現out of KAIO resources造成資料庫宕
作業系統版本:
[root@tonykorn97 ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 5.2 (Tikanga)
Kernel r on an m
[root@tonykorn97 ~]# uname -a
Linux tonykorn97 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:15 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux
[root@tonykorn97 ~]#
資料庫版本:
[informix@tonykorn97 ~]$ onstat -d
IBM Informix Dynamic Server Version 11.50.FC3 -- On-Line -- Up 00:06:38 -- 18724432 Kbytes
日誌資訊:
00:05:54 out of KAIO resources
00:05:54 Assert Failed: initializing KAIO failed
00:05:54 IBM Informix Dynamic Server Version 11.50.FC3
00:05:54 Who: Session(6537, , 3516, (nil))
Thread(7754, kaio, 0, 27)
File: kaioapi.c Line: 264
00:05:54 Results: io_queue_init(1638) failed returning -11, errno = 0
00:05:54 stack trace for pid 18573 written to /home/informix/tmp/af.2232e092
00:05:54 See Also: /home/informix/tmp/af.2232e092
00:05:54 Logical Log 4626 Complete, timestamp: 0x599d1cd1.
00:05:55 Logical Log 4627 Complete, timestamp: 0x59a4114a.
00:05:56 Logical Log 4628 Complete, timestamp: 0x59a47986.
00:06:01 initializing KAIO failed
00:06:01 io_queue_init(1638) failed returning -11, errno = 0
00:06:01 Assert Failed: kaiothread() ERROR
00:06:01 IBM Informix Dynamic Server Version 11.50.FC3
00:06:01 Who: Session(6537, , 3516, (nil))
Thread(7754, kaio, 0, 27)
File: kaio.c Line: 2232
00:06:01 stack trace for pid 18573 written to /home/informix/tmp/af.2232e092
00:06:02 See Also: /home/informix/tmp/af.2232e092
00:06:02 Logical Log 4629 Complete, timestamp: 0x59aa05b9.
00:06:03 Logical Log 4630 Complete, timestamp: 0x59b15a8c.
00:06:04 Logical Log 4631 Complete, timestamp: 0x59b85721.
00:06:04 Logical Log 4632 Complete, timestamp: 0x59b85766.
00:06:05 Logical Log 4633 Complete, timestamp: 0x59bf9c15.
00:06:05 kaio.c, line 2232, thread 7754, proc id 18573, kaiothread() ERROR.
00:06:06 Logical Log 4634 Complete, timestamp: 0x59c59b2e.
00:06:07 Fatal error in ADM VP at mt.c:13418
00:06:07 Unexpected virtual processor termination, pid = 18573, exit = 0x100
00:06:07 PANIC: Attempting to bring system down
原因是kaio設定的太小,先動態增加:
[root@tonykorn97 ~]# echo 131072 > /proc/sys/fs/aio-max-nr
[root@tonykorn97 ~]# cat /proc/sys/fs/aio-max-nr
131072
[root@tonykorn97 ~]# cat /proc/sys/fs/aio-nr
65459
[root@tonykorn97 ~]#
修改核心方式
調整核心引數
echo '
kernel.shmmni=4096
kernel.sem=5010 641280 5010 128
fs.aio-max-size = 131072
fs.aio-max-nr = 131072
fs.file-max=6491589
net.ipv4.ip_local_port_range=1024 65000' >> /etc/sysctl.conf
aio-max-nr 相關的引數是 fs.aio-max-nr
aio-max-size不同大小的效能影響
aio-max-size的大小基本可用從下規則來界定:dss因為進行大量的連續IO所以使用較大的值(1M甚至更大),如果是oltp則是進行大量的小型交易所以default的128K能夠提供良好的效能。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-1018749/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 升級informix資料庫到10.0出現KAIO錯誤的解決辦法ORM資料庫AI
- solaris上建立oracle資料庫出現:out of memory 錯誤Oracle資料庫
- INFORMIX資料庫函式ORM資料庫函式
- 將informix匯出的文字資料匯入oracle資料庫ORMOracle資料庫
- 程式日誌中出現out of OS kernel IO resources
- Informix資料庫安裝 Q&AORM資料庫
- informix資料庫啟動失敗ORM資料庫
- informix資料庫擴容操作步驟ORM資料庫
- Informix資料庫備份與恢復ORM資料庫
- informix資料庫onstat命令解釋大全ORM資料庫
- informix資料庫頁故障的處理方法ORM資料庫
- informix 資料庫啟動關閉指令碼ORM資料庫指令碼
- Informix_on_line資料庫維護技巧ORM資料庫
- informix高效能匯入匯出資料HPLORM
- GoldenGate抽取Informix資料庫安裝及配置GoORM資料庫
- Informix Online資料庫日常管理及維護ORM資料庫
- informix停資料庫是報錯:Must be a DBSA to run this programORM資料庫
- Oracle資料庫——資料匯出時出現匯出成功終止, 但出現警告。Oracle資料庫
- 故障分析 | DROP 大表造成資料庫假死資料庫
- 資料庫自動收縮造成的阻塞資料庫
- 儲存壞道造成資料庫hang住資料庫
- 資料庫日誌中出現啟動JOB程式的TIMED OUT資訊資料庫
- 關於hibernate+informix資料庫的問題,急ORM資料庫
- 如何在informix資料庫中使用JTA,請幫忙?ORM資料庫
- Linux下Informix資料庫簡明安裝指南(轉)LinuxORM資料庫
- 惡意程式造成資料庫啟動報錯資料庫
- 歸檔日誌滿造成資料庫當機資料庫
- informix 幾個常見問題對資料庫版本的要求ORM資料庫
- 【資料庫資料恢復】突然斷電造成Syabse資料庫無法啟動的資料恢復案例資料庫資料恢復
- 什麼原因造成資料庫不能自動啟動!資料庫
- 11g資料庫出現壞塊資料庫
- 恢復資料庫出現ORA-38727資料庫
- 【問題處理】Oracle process running out of OS kernel I/O resourcesOracle
- 關於 informix 中檢視錶所在資料庫空間的問題ORM資料庫
- 是人為shutdown,還是異常宕庫?
- 資料泵造成的資料損失
- MapReduce之----往hbase資料庫寫入資料時, 出現資料異常資料庫
- informix資料空間映象操作步驟ORM