Server log中报错:<ERROR> :Failed to parse the incoming connection with IO error type = 1

Server运行正常,API端跑的任务也没返回异常,看上去这个错误好像也没啥影响。

请先 登录 后评论

1 个回答

Juntao Wang

IO error type = 1 表示:Socket is disconnected/closed or file is closed. 其他IO error type 类型详见链接:https://ask.dolphindb.net/question/374

API向Server发起建立连接请求时,Server去读这个请求报文时报的错,API协议详见:api_protocol.md · dolphindb/Tutorials_CN - 码云 - 开源中国 (gitee.com)

比较常见的原因有两种:

一是网络,二是有客户端向Server端口发起连接请求然后又断开,这种可以排查下是否有同事这么使用了。

请先 登录 后评论