0

我在运行的 Swift 服务器上遇到了一些可重现的问题。这是一个多线程服务器,使用 Kitura。基础是:服务器运行一段时间后,下载请求开始需要客户端重试(通常重试三次)。来自客户端的尝试导致服务器线程未终止。在服务器上,下载问题在日志中显示如下:

[INFO] REQUEST /DownloadFile: ABOUT TO END ...

然后请求永远不会终止。

我的服务器中的相关片段代码如下所示:

    // <snip>
    Log.info(message: "REQUEST \(request.urlURL.path): ABOUT TO END ...")

    do {
        try self.response.end()
        Log.info(message: "REQUEST \(request.urlURL.path): STATUS CODE: \(response.statusCode)")
    } catch (let error) {
        Log.error(message: "Failed on `end` in failWithError: \(error.localizedDescription); HTTP status code: \(response.statusCode)")
    }

    Log.info(message: "REQUEST \(request.urlURL.path): COMPLETED")
    // <snip>

也就是说,服务器显然似乎挂起对end(Kitura 方法)的调用。另请参阅https://github.com/crspybits/SyncServerII/blob/master/Sources/Server/Setup/RequestHandler.swift#L105

就在上次出现此问题之前,我在服务器日志中观察到以下内容:

[2017-07-12T15:31:23.302Z] [ERROR] [HTTPServer.swift:194 listen(listenSocket:socketManager:)] Error accepting client connection: Error code: 5(0x5), ERROR: SSL_accept, code: 5, reason: DH lib
[2017-07-12T15:31:23.604Z] [ERROR] [HTTPServer.swift:194 listen(listenSocket:socketManager:)] Error accepting client connection: Error code: 1(0x1), ERROR: SSL_accept, code: 1, reason: Could not determine error reason.
[2017-07-12T15:31:23.995Z] [ERROR] [HTTPServer.swift:194 listen(listenSocket:socketManager:)] Error accepting client connection: Error code: 1(0x1), ERROR: SSL_accept, code: 1, reason: Could not determine error reason.
[2017-07-12T15:40:32.941Z] [ERROR] [HTTPServer.swift:194 listen(listenSocket:socketManager:)] Error accepting client connection: Error code: 1(0x1), ERROR: SSL_accept, code: 1, reason: Could not determine error reason.
[2017-07-12T15:42:43.000Z] [VERBOSE] [HTTPServerRequest.swift:215 parsingCompleted()] HTTP request from=139.162.78.135; proto=https;
[INFO] REQUEST RECEIVED: /
[2017-07-12T16:32:38.479Z] [ERROR] [HTTPServer.swift:194 listen(listenSocket:socketManager:)] Error accepting client connection: Error code: 1(0x1), ERROR: SSL_accept, code: 1, reason: Could not determine error reason.

我不确定这是从哪里来的,因为我不确定我的一个客户是否正在生成这个。我没有用“/”明确地向我的服务器发出请求。(我偶尔会看到不是我的客户端向我的服务器发出的请求——这可能就是其中之一)。请注意,除了其中一条日志消息之外的所有日志消息都来自 Kitura,而不是直接来自我的代码。我的日志消息是[INFO] REQUEST RECEIVED: /.

如果我是一个赌徒,我会说上面的错误使我的服务器进入一种状态,之后我会看到这种下载/重试行为。

此时我唯一的解决方案是重新启动服务器。从那时起,问题不会立即发生。

想法?

4

1 回答 1

0

我不确定这是否解决了根本问题,或者它是否只是一种解决方法,但它似乎正在工作。使用问题中所述的服务器,我一直在使用 Kitura 的内置 SSL 支持。我现在已经切换到使用 NGINX 作为前端,并且不再使用 Kitura 的内置 SSL 支持。NGINX 负责所有 HTTPS/SSL 细节。自从这样做(大约一个月前)以来,并且服务器在所有中间时间都运行,我没有遇到这个not terminating问题中报告的问题。另请参阅https://github.com/crspybits/SyncServerII/issues/28

于 2017-10-21T19:21:39.407 回答