|
@@ -12,6 +12,7 @@ import com.incubator.common.net.netty.ServerOptionConfiger;
|
|
|
import io.netty.bootstrap.ServerBootstrap;
|
|
|
import io.netty.buffer.ByteBufAllocator;
|
|
|
import io.netty.channel.*;
|
|
|
+import io.netty.channel.epoll.Epoll;
|
|
|
import io.netty.channel.epoll.EpollServerSocketChannel;
|
|
|
import io.netty.channel.group.ChannelGroup;
|
|
|
import io.netty.channel.group.DefaultChannelGroup;
|
|
@@ -175,9 +176,15 @@ public class NettyServer extends NettyServerFactory {
|
|
|
*/
|
|
|
private Class<? extends ServerChannel> getDefaultChannelClass() {
|
|
|
String osName = System.getProperty("os.name").toLowerCase();
|
|
|
- if (osName.contains("linux")) {
|
|
|
- return EpollServerSocketChannel.class;
|
|
|
- }
|
|
|
+// if (osName.contains("linux")) {
|
|
|
+// return EpollServerSocketChannel.class;
|
|
|
+// }
|
|
|
return NioServerSocketChannel.class;
|
|
|
}
|
|
|
+ public static void main(String[] args) {
|
|
|
+ System.out.println("Epoll is supported: " + Epoll.isAvailable());
|
|
|
+ if (!Epoll.isAvailable()) {
|
|
|
+ System.out.println("Epoll unavailable cause: " + Epoll.unavailabilityCause());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|