Open mihai1voicescu opened 2 years ago
Looks like the same issue as #211. So I think it's ktor side
As for workaround is to provide CoroutineExceptionHandler
to server instance via scope
or parentCoroutineContext
which goes directly into applicationEngineEnvironment
related: #226
May be it will be possible to fix it in rsocket-kotlin
in similar way during refactoring of transports
@whyoleg thank you for your quick response!
That is also what we have been trying, but no success yet. Maybe we are doing something stupid since the handler never gets called.
We tried with the applicationEngingeEnviroment like this:
private val handler = CoroutineExceptionHandler { coroutineContext, throwable ->
println("CALLED")
when (throwable) {
is kotlinx.coroutines.channels.ClosedReceiveChannelException -> Unit
else -> throw throwable
}
}
fun applicationEngine(): NettyApplicationEngine {
val port = config.deployment("port", "80").toInt()
val host = config.deployment("host", "0.0.0.0")
return embeddedServer(
Netty,
applicationEngineEnvironment {
module {
mount()
printRoutes()
}
connector {
this.port = port
this.host = host
}
this.parentCoroutineContext = this.parentCoroutineContext + handler
}) {
}
}
We also tried passing a scope with a handler to the RSocketRequestHandler(EmptyCoroutineContext+handler)
and it still does not get called.
From what I've checked, looks like it's not possible to add exception handler for websocket session... Need to create an issue on ktor side for this (?). Still it's possible to hide this exception on rsocket side, but I'm not sure, what is the best thing now as in that way it will be not possible to distinguish between just close and connection failure. I need more time to investigate, if POC of new transport API will have this possibility...
will be fixed on ktor side here: https://youtrack.jetbrains.com/issue/KTOR-5016/Channel-was-closed-exception-in-WebSocket-during-normal-use
We did some digging, for the moment adding a simple try/catch
at https://github.com/rsocket/rsocket-kotlin/blob/a09a2b500e2e7b63c5837958eda8730f19b4cc00/rsocket-transport-ktor/rsocket-transport-ktor-websocket/src/commonMain/kotlin/io/rsocket/kotlin/transport/ktor/websocket/WebSocketConnection.kt#L36 will catch the error.
Maybe there is a way to propagate it and notify that the rSocket was closed (since this is very common when dealing with mobile and web clients)?
Maybe you can point us in the right direction and we make a PR?
Change should be a little bigger. We need to make receive result nullable and handle it where it's called. This will affect all transport implementations and not only websocket. Also handling of error error in send should be there: if send is called while receive is in process (as those operations can be performed in parallel). I will try to prepare a quicfix(and new patch release)this weekend, until new transport API will be available.
Thank you! If there is something we can help with let us know.
Sorry for the delay. Focus switched on new transport API. I've tried to create a quick fix, but it's really degrade stability and expected behavior of current transport implementation and I need to investigate more time that I expected. At the same time I still think, that this specific issue should be fixed on ktor side. I will try to ensure that it will be fixed in ktor 2.2.0 if ktor team will not do it.
Each time a client disconnects we get an unhandled error in our server logs. How can we handle them since they are flooding our server logs?
We are using
ktor_version=2.1.0
with WebSockets and the Netty engine. We also tried CIO but the same result.