0

我似乎有与接收大文件并将它们发送到 GCS 相关的内存泄漏。尝试使用 pprof 来分析我的 appengine 代码的内存使用情况。我的测试使用 appengine/aetest,我可以输出内存配置文件,但结果似乎没有显示任何有用的东西。

首先我做了一个基准。这是一个非常慢的操作,所以它只运行一次。

$ goapp test ./cloudstore -run=none -bench=. -memprofile=cloud.prof
BenchmarkLargeFile      1        54124706398 ns/op

$ go tool pprof --text cloudstore.test cloud.prof 
Adjusting heap profiles for 1-in-524288 sampling rate
Total: 0.5 MB
     0.5 100.0% 100.0%      0.5 100.0% runtime.newG
     0.0   0.0% 100.0%      0.5 100.0% allocg
     0.0   0.0% 100.0%      0.5 100.0% mcommoninit
     0.0   0.0% 100.0%      0.5 100.0% runtime.malg
     0.0   0.0% 100.0%      0.5 100.0% runtime.mpreinit
     0.0   0.0% 100.0%      0.5 100.0% runtime.rt0_go
     0.0   0.0% 100.0%      0.5 100.0% runtime.schedinit

我的函数调用都没有出现,这个 0.5 MB 的数字显然不正确(我正在打开一个 12 MB 的文件并上传它)。如何获得真实的内存配置文件?

$ go version
go version go1.3.1 linux/386
$ goapp version
go version go1.4.2 (appengine-1.9.25) linux/386
4

1 回答 1

0

深入研究测试标志,我找到了答案。我需要 memprofilerate=1 和 alloc_space

$ goapp test ./cloudstore -memprofilerate=1 -run=none -bench=. -memprofile=cloud.prof
$ go tool pprof --text --alloc_space cloudstore.test cloud.prof
于 2015-11-12T20:19:22.097 回答