程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> JDK NIO SelectionKey bug,nioselectionkey

JDK NIO SelectionKey bug,nioselectionkey

編輯:JAVA綜合教程

JDK NIO SelectionKey bug,nioselectionkey


此bug項目中使用elasticSearch中出現的,原因是,nio事件選擇器,在特性內核下以及jdk6版本中,出現不hold線程,死循環獲取事件的bug,導致cup使用率過高;

此bug在官網已被修復:http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6403933

 

如果不升級版本,

System.setProperty(“org.elasticsearch.common.netty.epollBugWorkaround”,true); 增加此句代碼。

官網修復解決:取消了選擇器,創建一個新的。

if (SelectionKey != null)  {  // the key you registered on the temporary selector
   SelectionKey.cancel();   // cancel the SelectionKey that was registered with the temporary selector
   // flush the cancelled key
   temporarySelector.selectNow();
} 

which is safe. Now everything works fine.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved