JDK-6330315 : (se) Selectors should use epoll on Linux
  • Type: Enhancement
  • Component: core-libs
  • Sub-Component: java.nio
  • Affected Version: 6
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2005-09-29
  • Updated: 2010-04-02
  • Resolved: 2005-10-29
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other JDK 6
5.0u10Fixed 6 b59Fixed
Description
Modern Linux kernels (>= 2.6) support the epoll(4) facility, which like the
/dev/poll facility on Solaris is a much more scalable version of the classic
poll(2) kernel call.  For better performance the default selector provider on
Linux should use epoll whenever possible.

Comments
EVALUATION -- The epoll SelectorProvider has also been added to 5.0 update 9. It is not enabled by default and requires that the system property java.nio.channels.spi.SelectorProvider be set to sun.nio.ch.EPollSelectorProvider to enable it.
29-07-2006

EVALUATION An epoll based Selector has been developed for b59.
21-10-2005