21

我已经搭建了一个用 Go 编写的 http 服务器,每天有超过一千的访问者。我现在有一个累积的 Goroutine 问题。在一天的时间里,我似乎从 http 服务器获得了一千多个新的 Goroutine。

我不知道我怎么能搞砸处理程序。

http.Handle("/", http.FileServer(http.Dir(config.htdocs_path)))

下面是堆栈中的 goroutine 之一

goroutine 1582 [chan receive]:
net.(*pollServer).WaitRead(0xf84007f680, 0xf84066dea0, 0xf84007aa80, 0xb, 0x1, ...)
        /home/ec2-user/go/src/pkg/net/fd.go:268 +0x73
net.(*netFD).Read(0xf84066dea0, 0xf840ec1000, 0x100000001000, 0x7f7effffffff, 0xf84007c0f0, ...)
        /home/ec2-user/go/src/pkg/net/fd.go:428 +0x1ec
net.(*TCPConn).Read(0xf84068aff8, 0xf840ec1000, 0x100000001000, 0xf800000002, 0x0, ...)
        /home/ec2-user/go/src/pkg/net/tcpsock_posix.go:87 +0xce
io.(*LimitedReader).Read(0xf840d1bc20, 0xf840ec1000, 0x100000001000, 0xdcb00000000, 0x0, ...)
        /home/ec2-user/go/src/pkg/io/io.go:394 +0xc1
bufio.(*Reader).fill(0xf8405b0900, 0xdcb00000000)
        /home/ec2-user/go/src/pkg/bufio/bufio.go:77 +0xf0
bufio.(*Reader).ReadSlice(0xf8405b0900, 0xf840d1bc0a, 0x0, 0x0, 0x0, ...)
        /home/ec2-user/go/src/pkg/bufio/bufio.go:257 +0x1b6
bufio.(*Reader).ReadLine(0xf8405b0900, 0x0, 0x0, 0x0, 0x0, ...)
        /home/ec2-user/go/src/pkg/bufio/bufio.go:283 +0x5b
net/textproto.(*Reader).readLineSlice(0xf840730660, 0xc0, 0x100000000, 0x7f7e00000001)
        /home/ec2-user/go/src/pkg/net/textproto/reader.go:55 +0x4f
net/textproto.(*Reader).ReadLine(0xf840730660, 0xf84061f300, 0x0, 0x48411c)
        /home/ec2-user/go/src/pkg/net/textproto/reader.go:36 +0x25
net/http.ReadRequest(0xf8405b0900, 0xf84061f300, 0x0, 0x0, 0x100000400ccf60, ...)
        /home/ec2-user/go/src/pkg/net/http/request.go:457 +0xb1
net/http.(*conn).readRequest(0xf8402b2b40, 0xf8400e3fc0, 0x0, 0x0, 0xf8405b0a80, ...)
        /home/ec2-user/go/src/pkg/net/http/server.go:240 +0xa8
net/http.(*conn).serve(0xf8402b2b40, 0x0)
        /home/ec2-user/go/src/pkg/net/http/server.go:594 +0x145
created by net/http.(*Server).Serve
        /home/ec2-user/go/src/pkg/net/http/server.go:1040 +0x430

似乎连接陷入读取状态。就像http服务器没有让它们超时。默认服务器没有读取超时吗?

去版本去1

4

3 回答 3

58

所有这些 goroutine 都在读取的原因是 keep-alive。当浏览器发送 keep-alive 标头时,服务器会保持连接打开以接受更多请求。当客户端请求许多小文件并且 TCP 连接开销很大时,这是一件好事。读取超时将确保没有连接保持活动超过请求之间的特定时间。这将关闭保持活动连接,但也会阻止某人上传超过超时时间。不幸的是,还没有特定的保持活动超时选项。

默认情况下,没有超时。您可以在服务器结构http://golang.org/pkg/net/http/#Server中设置超时

srv := &http.Server{
    Handler: http.FileServer(http.Dir(config.htdocs_path)),
    ReadTimeout: 30*time.Second,
}
srv.ListenAndServe()
于 2012-06-10T21:19:30.393 回答
0

在 HTTP 连接上使用 ReadTimeout 和 WriteTimeout 时要小心。我不认为他们会做你期望他们做的事。特别是,它们倾向于使连接处于不可用状态而不实际关闭它们。有关详细信息,请参阅https://groups.google.com/forum/#!topic/golang-nuts/oBIh_R7-pJQ,特别是,我看到 ReadTimeout 使连接无法使用并导致响应被丢弃在地板上的情况。 HTTP 处理程序时间超过超时。如果您将超时设置为超过任何处理程序的响应时间的较大值,您可能会没事。

于 2014-08-15T03:03:13.890 回答
0

斯蒂芬的回答仅结合以下内容对我有用:服务器可以告诉其客户端它不希望或不支持保持连接打开。为此,请在服务前设置相应的标志:

server := &http.Server{
  // ... see Stephen's answer
}
server.SetKeepAlivesEnabled(false)
server.ListenAndServe()

This will set the response header Connection: close and most clients will terminate the connection from their side.

于 2017-04-10T13:12:43.077 回答