本文介绍Golang的性能测试(Benchmark)。
使用testing包
看下面的bench_test.go
:
1 | import "testing" |
运行程序
1 | > $ go test -bench=. -run=^BenchmarkFib20$ |
从输出可以看到, BenchmarkFib20-8
中的-8
后缀,指的是GOMAXPROCS
,它与CPU的数量有关。可以通过-cpu
标志来指定
1 | > $ go test -bench=. -cpu=1,2,4 -run=^BenchmarkFib20$ |
25608
表示进行了25608次循环,每次循环耗时46494ns (46494 ns/op)。
其他标志
作用 | 例子 | |
---|---|---|
-benchtime | 指定运行时间 | go test -bench=. -benchtime=10s -run=^BenchmarkFib20$ |
-count | 指定运行次数 | go test -bench=. -count=10 -run=^BenchmarkFib20$ |
-benchmem | 监控内存分配 | go test -bench=. -benchmem -run=^BenchmarkFib20$ |
将test保存为二进制文件
go test -c
将测试的代码保存为二进制文件,方便下次调用。
CPU/内存/Block的Profile
-cpuprofile=$FILE
将 CPU profile 输出$FILE
.-memprofile=$FILE
, 将 内存 profile 输出$FILE
,-memprofilerate=N
adjusts the profile rate to1/N
.-blockprofile=$FILE
, 将 block profile 输出to$FILE
.
例子:
1 | > $ go test -bench=. -run=^BenchmarkFib20$ -cpuprofile=profile |
使用PProf
profile用来跟踪整个程序的运行,用来定位程序性能的问题。
pprof来自Google Perf Tools, 它被整合进Golang的runtime。pprof
包含2个部分,
runtime/pprof
每个Golang程序都有用到go tool pprof
用来读取profile输出文件
pprof的类型
CPU Profile
程序运行时(runtime), CPU Profile每隔10ms会打断(interrupt)程序执行, 记录当前运行的Goroutine的堆栈踪迹(stack trace)。
Memory profiling
当堆内存分配时,Memory profiling记录stack trace.
与CPU Profile类似,默认情况下,每1000次堆内存分配,Memory profiling会进行1次取样。
Memory profiling是取样的,并且它跟踪的时没有使用的内存分配,因此它不能确定整个程序运行使用的内存。
Block (or blocking) profiling
Block profiling记录一个Goroutine等待共享资源的时间,这可以用来确定程序中的并发瓶颈。
Mutex contention profiling
Mutex contention profiling记录因为互斥导致延迟的操作。
每次一个Profile
使用profile是有性能消耗的,使用时每次只用1种类型的Profile。如果同时使用多个Profile,Profile之间会相互影响。
使用PProf
看下面的例子words.go
1 | import ( |
进行性能测试:
1 | > $ go run words.go whales.txt |
使用命令go tool pprof
读取文件
1 | > $ go tool pprof /var/folders/q9/5v5tz4_92gd343hvb3mb1_s40000gn/T/profile247619673/cpu.pprof |
可以看到syscall.syscall
耗费最多的CPU资源, 因为每次readbyte(f)
都会发生系统调用,读取字符。
1 | (pprof) list main.main |
go tool pprof常用命令
说明 | |
---|---|
top | Top 命令会按指标大小列出前 10 个函数,比如 CPU 是按执行时间长短,内存是按内存占用多少。 |
traces | 打印所有调用栈和调用栈的指标信息。 |
list | list 命令则是用来帮我们确认函数在代码中的位置。 |
web | 打开浏览器图形界面 |
go tool pprof -http=:8080 | 使用浏览器形式读取Profile输出 |
编译器优化
编译器优化主要包括3个方面
- 逃逸分析
- 函数内联(inline)
- 死代码(dead code)清除
go build 命令
作用 | 例子 | |
---|---|---|
-m | 打印编译器的逃逸分析决定 | go build -gcflags=-m example.go |
-l | 是否内联 | -gcflags=-l 禁止内联; -gcflags='-l -l' 两层内联 |
参考文献
我的公众号:lyp分享的地方
我的知乎专栏: https://zhuanlan.zhihu.com/c_1275466546035740672
我的博客:www.liangyaopei.com
Github Page: https://liangyaopei.github.io/