Caoyuan Deng

Results 43 comments of Caoyuan Deng

We're running a 6 nodes spray cluster keeping around 600k long-live connections, with lots of connecting/disconnecting frequently. We also observed the logs and try to follow the solution. The major...

After long-run, we can confirm, there is no resource leak related to this DeathPactException.

Also see https://github.com/ethereum/go-ethereum/pull/18418

Please see documentation of scala maven plugin, for the newest version, here: http://davidb.github.com/scala-maven-plugin/compile-mojo.html, for old version, http://scala-tools.org/mvnsites/maven-scala-plugin/compile-mojo.html

Got it. If so, I need to extract the compile options from maven's pom.xml file, the work is not so straightforward and easy to implemented. I'll keep this issue opening...

For some compile options, I can add them as default, this is a quick fix. Which options do you think could be candidates? I'm going to release a new version...

The data are stored as Avro object, each avro record is an actor. When a JPQL query is applied to cluster, it will be parsed, and the applicable part (such...

Closed events are logged on debug level usually. Did you tried to tune log level to 'DEBUG'? Or, you can try to override closeLogic method of WebSocketServerConnection to: ``` def...

We may need to implement some application-level (here, websocket layer) timeout, like spray-can for Http here: http://spray.io/documentation/1.2.1/spray-can/http-server/ ``` Request Timeouts If the handler does not respond to a request within...

Those timeouts work under http. When upgraded to WebSocket, the original http connection (tcp) will shift to new io pipelines which drops all http event/command processing. So, for ``` IO(UHttp)...