作者:张富春(ahfuzhang),转载时请注明作者和引用链接,谢谢!
1.启动 force merge
curl -G "http://127.0.0.1:8482/internal/force_merge?partition_prefix=2022_07"
2.跑profile
curl -G "http://127.0.0.1:8482/debug/pprof/profile?seconds=120" > cc.out
go tool pprof cc.out
> web
3.图表请见附件
https://files.cnblogs.com/files/ahfuzhang/vm-storage_with_forced_merge.svg?t=1658239522
2022-07-25补充:
- web mergeParts 可以看以mergeParts函数为中心的调用关系的分析。
- flat是指函数自身执行花费的时间,cum值函数及其调用的其他函数的总时间
- 如果希望从协程角度进行分析,按照cum排序可以看见协程函数从开始到其后的调用情况
- 如果单纯的希望看到哪些函数是热点,按照flat排序即可