dongxieli3839 2014-01-12 21:41
浏览 89
已采纳

Go http标准库中的内存泄漏?

Have a Go binary implement an http server:

package main

import (
    "net/http"
)

func main() {
    http.ListenAndServe(":8080", nil)
}

It will start with ~850 kb or so of memory. Send it some requests via your web browser. Observe it quickly rises to 1 mb. If you wait, you'll see it never goes down. Now hammer it with Apache Bench (using the script below) and see your memory usage continually increase. After sometime it will eventually plateau at around 8.2 MB or so.

Edit: It doesn't seem to stop at 8.2, rather it slows down significantly. It's currently at 9.2 and still rising.

In short, why is this happening? I used this shell script:

while [ true ]
do
    ab -n 1000 -c 100 http://127.0.0.1:8080/
    sleep 1
end

While trying to get to the bottom of this, I've tried to tweak the settings. I've tried closing using r.Close = true to prevent Keep-Alive. Nothing seems to work.

I found this originally while trying to determine if there was a memory leak in a program I'm writing. It has a lot of http handlers and I/O calls. After checking I had closed all my database connections I kept seeing it's memory usage rise. My program to plateau at around 433 MB.

Here's the output of Goenv:

GOARCH="amd64"
GOBIN=""
GOCHAR="6"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/mark/Documents/Programming/Go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
TERM="dumb"
CC="clang"
GOGCCFLAGS="-g -O2 -fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fno-common"
CXX="clang++"
CGO_ENABLED="1"
  • 写回答

1条回答 默认 最新

  • doujian1050 2014-01-12 23:32
    关注

    From the heap pprof you have provided in comments, it looks like you are leaking memory via gorilla/sessions and gorilla/context (almost 400MB).

    Refer to this ML thread: https://groups.google.com/forum/#!msg/gorilla-web/clJfCzenuWY/N_Xj9-5Lk6wJ and this GH issue: https://github.com/gorilla/sessions/issues/15

    Here is a version that leaks extremely quickly:

    package main
    
    import (
        "fmt"
        // "github.com/gorilla/context"
        "github.com/gorilla/sessions"
        "net/http"
    )
    
    var (
        cookieStore = sessions.NewCookieStore([]byte("cookie-secret"))
    )
    
    func main() {
        http.HandleFunc("/", defaultHandler)
        http.ListenAndServe(":8080", nil)
    }
    
    func defaultHandler(w http.ResponseWriter, r *http.Request) {
        cookieStore.Get(r, "leak-test")
        fmt.Fprint(w, "Hi there")
    }
    

    Here is one that cleans up and has a relatively static RSS:

    package main
    
    import (
        "fmt"
        "github.com/gorilla/context"
        "github.com/gorilla/sessions"
        "net/http"
    )
    
    var (
        cookieStore = sessions.NewCookieStore([]byte("cookie-secret"))
    )
    
    func main() {
        http.HandleFunc("/", defaultHandler)
        http.ListenAndServe(":8080", context.ClearHandler(http.DefaultServeMux))
    }
    
    func defaultHandler(w http.ResponseWriter, r *http.Request) {
        cookieStore.Get(r, "leak-test")
        fmt.Fprint(w, "Hi there")
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题