-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: Go 1.14.rc1 3-5% performance regression from 1.13 during protobuf marshalling #37086
Comments
/cc @aclements @randall77 |
@howardjohn Thanks so much for the issue and the detailed information. Looking into it. |
@howardjohn thank you for the report! Just a comment that in the future you can also use benchstat https://godoc.org/golang.org/x/perf/cmd/benchstat for an isolated summary of benchmark results. |
@howardjohn I can reproduce, and I think I know the source of the problem. First let me say that I tried pretty hard to reproduce the profiles you attached but I was unable to using the commands in the original post. Every time I compared 1.14 and 1.13 profiles the diff between them was completely different. Part of the problem is that because the number of iterations isn't fixed, each run could be doing different amounts of work. It's harder to compare along these lines. Next, I need to point out that there's a memory leak in the benchmark. Every time BenchmarkEDS gets invoked, the heap size increases. This is especially noticeable with So, given this, I collected profiles on the In the end, I consistently get two profiles which implicate For documentation purposes, the command I ran (after cloning istio at the PR mentioned above; if you don't do that the benchmark won't run) was:
Pinging @randall77 since @cherrymui suggested you were involved in some map changes in the Go 1.14 cycle, and I don't know much about the map implementation. |
Uses of Oh, I see, this program must be using hash maps with keys of interface types. See https://golang.org/cl/191198. Perhaps we should have a release note for that? |
@ianlancetaylor Yeah that's right. @cherrymui and I dug a little deeper and it's actually map with keys of type |
Might be worth adding a special case for pointers in |
Certainly we could swap the order of the regular memory check and the |
I think if regular memory check is true, we could special case 32-bit and 64-bit sizes? |
i am not sure if this is related, but i saw some differences in map access performance, too. In my case I am not using interface{} as a key, but instead a map[int]int https://github.com/SlinSo/random/blob/master/mapaccess_test.go pprof excerpt: go1.14rc1: |
That's a bug. Yikes! |
(Unrelated to this issue, though.) |
Change https://golang.org/cl/219338 mentions this issue: |
@randall77 is the intent for this to be tracked as a back port candidate? Ian had mentioned in #37086 (comment)
|
@gopherbot please open a backport issue. I don't think this performance regression qualifies for a backport, but I'll let the release guys make that call. |
Backport issue(s) opened: #37420 (for 1.12), #37421 (for 1.13). Remember to create the cherry-pick CL(s) as soon as the patch is submitted to master, according to https://golang.org/wiki/MinorReleases. |
@randall77 oddly it didn't backport for Go1.14.1, it only created PRs for 1.12 and 1.13. |
Made #37613 for 1.14. |
Does this issue reproduce with the latest release?
This is an issue with the latest release
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Ran a benchmark for our application on go 1.13 and go 1.14rc1. performance took about a ~5% hit.
What did you expect to see?
Hopefully performance improves or remains constant
What did you see instead?
Performance decrease
Additional Info
This benchmark is basically just doing a bunch of protobuf marshalling.
Profile shows 1.14 spends 16% of time on gcBgMarkWorker, but 1.13 only 14.5%.
CPU profiles:
profiles.tar.gz
Let me know if there is more info I can provide, I realize these reports typically need a lot of info to track down the root cause. You might/should be able to reproduce by running the same command after checking out the repo at this PR: istio/istio#20899
The text was updated successfully, but these errors were encountered: