-
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: general runtime slowdown from 1.3 to 1.4 to 1.5 #9123
Comments
It seems I'm also running into this problem. It might also have something to do with memory allocations. Other tests and programs have also taken a 20-33% performance hit which might be connected to goroutines, channels and memory allocations. This makes Go even slower, burdens the garbage collector with more garbage and increases memory usage for everything using Go. |
Would anyone from the Go team care to comment on @unclejack's remark? |
@unclejack @nkev provide concrete details and we can investigate. |
Well, my pretty complex Go program (sorry, it's not open source) consistently completes in about 32 seconds when compiled with Go 1.4.2. Note: the first line of my code is this: |
@tssajo I'm sorry that Go 1.5 is causing problems for you. Could I ask you to consider opening a new issue. I understand that you cannot provide the source of your program, but perhaps if you can provide some code derived from your program which demonstrates the issue some progress can be made. |
The slowdowns encountered when switching to Go 1.4 from Go 1.3 were pretty difficult to pinpoint. Some were just goroutines behaving differently. Go 1.5 has made Docker's compilation slower and test execution is also slower. make binary with Go 1.5 make binary with Go 1.4.2 make cross with Go 1.5 make cross with Go 1.4.2 make test-unit with Go 1.5 make test-unit with Go 1.4.2 I haven't done performance tests for Docker binaries, but that is probably going to be slower as well because Docker has quite a bit of code. This might mean waiting for Go 1.6 and skipping Go 1.5. Go tip didn't seem to have these issues a few months ago. Are there any plans to address some of these issues in Go 1.5.x? |
Please test and profile to confirm if this is the case. Your make unit-test slowdown looks unexpected. 10m vs 1m30 sounds like a lot more work is being done before the tests start.
yes, please log an issue with details of what you are seeing and how to reproduce the issue. |
@davecheney Thanks for responding to my slowdown issue. I'm going to do some profiling too. I'll profile both the 1.4.2 and 1.5 generated program code. I try to find out the differences between the two. Fortunately, I can reproduce this issue on every run. |
In addition to the slowdown, every single Windows x64 exe file built with 1.5 is about 500kb larger than the one built with 1.4.2 ... My build command looks like this: |
@tssajo thanks, and please remember to file a new issue. |
Binary size is not a primary concern for Go development. We know they are large and are trying not to let it get ridiculous, but there is no pressing force to make them as small as possible. |
@davecheney New issue is filed as requested: #12228 with CPU and memory profile info. |
@davecheney The unit tests were exactly the same for the two runs. The tests are compiled and then executed for the I'll provide more details after I track down some some specific regressions. Simply profiling the whole Docker binary won't help because it's huge - millions of small objects are created and freed. |
This is blocked on the new compiler back end, which didn't make it into Go 1.6. |
I think this is bug can probably be closed. Much happened in Go 1.7: the compiler is faster, binaries are smaller, and generated code is better. See http://dave.cheney.net/2016/04/02/go-1-7-toolchain-improvements Let's move specific issues to new bugs. |
by dippo6905:
The text was updated successfully, but these errors were encountered: