liutaohua opened a new issue #448:
URL: https://github.com/apache/incubator-eventmesh/issues/448
We can see these `WARN` logs during startup:
```
2021-07-19 16:22:47,008 WARN [eventMesh-tcp-server]
ServerBootstrap(AbstractBootstrap.java:452) - Unknown channel option
'TCP_NODELAY' for channel '[id: 0xbcef744f]'
2021-07-19 16:22:47,009 WARN [eventMesh-tcp-server]
ServerBootstrap(AbstractBootstrap.java:452) - Unknown channel option
'SO_KEEPALIVE' for channel '[id: 0xbcef744f]'
2021-07-19 16:22:47,010 WARN [eventMesh-tcp-server]
ServerBootstrap(AbstractBootstrap.java:452) - Unknown channel option
'SO_TIMEOUT' for channel '[id: 0xbcef744f]'
2021-07-19 16:22:47,010 WARN [eventMesh-tcp-server]
ServerBootstrap(AbstractBootstrap.java:452) - Unknown channel option
'SO_LINGER' for channel '[id: 0xbcef744f]'
```
These parameters need to be set to `childOption`. eg.:
```
bootstrap.group(bossGroup, ioGroup)
.channel(NioServerSocketChannel.class)
.childOption(ChannelOption.TCP_NODELAY, true)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]