go-perfbook/performance.md

354 lines
15 KiB
Markdown
Raw Normal View History

2016-05-22 14:21:23 +08:00
This document outlines best practices for writing high-performance Go code.
At the moment, it's a collection of links to videos, slides, and blog posts
("awesome-golang-performance"), but I would like this to evolve into a longer
book format where the content is here instead of external. The links should be
sorted into categories.
2016-05-22 14:21:23 +08:00
2018-01-04 02:43:52 +08:00
While some discussions will be made for indivudial services faster (caching,
etc), designing performant distributed systems is beyond the scope of this
work.
2016-05-22 19:14:31 +08:00
All the content will be licensed under CC-BY-SA.
2016-05-23 20:21:18 +08:00
## Optimization Workflow
2016-05-22 14:21:23 +08:00
* All optimizations should follow these steps:
2016-05-22 18:50:16 +08:00
1. determine your performance goals and confirm you are not meeting them
1. profile to identify the areas to improve. This can be CPU, heap allocations, or goroutine blocking.
1. benchmark to determine the speed up your solution will provide using
2016-05-26 16:39:34 +08:00
the built-in benchmarking framework (<http://golang.org/pkg/testing/>)
2017-12-30 00:05:36 +08:00
Make sure you're benchmarking the right thing on your target operating system and architecture.
2016-05-22 18:50:16 +08:00
1. profile again afterwards to verify the issue is gone
1. use <https://godoc.org/golang.org/x/perf/benchstat> or
2016-05-26 16:39:34 +08:00
<https://github.com/codahale/tinystat> to verify that a set of timings
2016-05-22 18:50:16 +08:00
are 'sufficiently' different for an optimization to be worth the
added code complexity.
1. use <https://github.com/tsenart/vegeta> for load testing http services
1. make sure your latency numbers make sense: <https://youtu.be/lJ8ydIuPFeU>
2016-05-22 14:21:23 +08:00
2016-05-23 20:21:18 +08:00
The first step is important. It tells you when and where to start optimizing.
More importantly, it also tells you when to stop. Pretty much all
optimizations add code complexity in exchange for speed. And you can *always*
make code faster. It's a balancing act.
2016-05-22 18:44:02 +08:00
2016-05-22 14:21:23 +08:00
The basic rules of the game are:
2016-05-22 18:50:16 +08:00
1. minimize CPU usage
* do less work
* this generally means "a faster algorithm"
* but CPU caches and the hidden constants in O() can play tricks on you
1. minimize allocations (which leads to less CPU stolen by the GC)
1. make your data quick to access
2017-04-24 15:06:20 +08:00
This book is split into different sections:
1) basic tips for writing not-slow software
* CS 101-level stuff
2) tips for writing fast software
* Go-specific sections on how to get the best from Go
3) advanced tips for writing *really* fast software
* For when your optimized code isn't fast enough
2017-12-31 10:45:41 +08:00
### When and Where to Optimize
I'm putting this first because it's really the most important step. Should
you even be doing this at all?
Every optimization has a cost. Generally this cost is expressed in terms of
code complexity or cognitive load -- optimized code is rarely simpler than
the unoptimized version.
But there's another side that I'll call the economics of optimization. As a
programmer, your time is valuable. There's the opportunity cost of what else
you could be working on for your project, which bugs to fix, which features
to add. Optimizing things is fun, but it's not always the right task to
choose. Performance is a feature, but so is shipping, and so is correctness.
Choosing the most important thing to work on. Sometimes this isn't an
optimization at all. Sometimes it's not an actual CPU optimization, but a
user-experience one. Making something start up faster by doing computation in
the background after drawing the main window, for example.
2018-01-02 23:20:14 +08:00
Some times this will be obvious: an hourly report that completes in three hours
is probably less useful that one that completes in less than one.
2018-01-02 07:42:29 +08:00
Just because something is easy to optimize doesn't mean it's worth
optimizing. Ignoring low-hanging fruit is a valid development strategy.
2017-12-31 10:45:41 +08:00
Think of this as optimizing *your* time.
Choosing what to optimize. Choosing when to optimize.
2018-01-02 23:20:14 +08:00
Clarify "Premature optimization" quote.
2018-01-02 23:51:22 +08:00
TPOP: Should you optimize? "Yes, but only if the problem is important, the
program is guinely too slow, and there is some expectation that it can be
made faster while maintaining correctness, robustness, and clarity."
2017-12-31 10:45:41 +08:00
Fast software or fast deployment.
http://bitfunnel.org/strangeloop . has numbers. Hypothetical search engine
needing 30k machines @ $1k USD / year. Doubling the speed of your software
can save $15M/year. Even a developer spending an entire year to shave off 1%
will pay for itself
Once you've decided you're going to do this, keep reading.
### How to Optimize
2018-01-03 08:03:41 +08:00
Before we get into the specifics, lets talk about the general process of
optimization.
2018-01-02 07:42:29 +08:00
Optimization is a form of refactoring. But each step, rather than improving
some aspect of the source code (code duplication, clarity, etc), improves
2018-01-03 08:03:41 +08:00
some aspect of the performance: lower CPU, memory usage, latency, etc. This
2018-01-02 07:42:29 +08:00
means that in addition to a comprehensive set of unit tests (to ensuring your
changes haven't broken anything), you also need a good set of benchmarks to
ensure your changes are having the desired effect on performance. You must be
2018-01-03 08:03:41 +08:00
able to verify that your change really *is* lowering CPU.
2017-12-31 10:45:41 +08:00
2018-01-03 08:03:41 +08:00
That the benchmarks you're using must be correct and provide reproducible
numbers on representative workloads. If individual runs have too high a
variance, it will make improvements more difficult to spot. You will need to
use benchstat or equivalent statistical tests and won't be able just eye-ball
it.
2017-12-31 10:45:41 +08:00
2018-01-03 08:03:41 +08:00
Next, decide what it is you're optimizing for. Are you trying to reduce
memory usage? By how much? How much slower is acceptable for what change in
memory usage? What are you willing to give up in exchange for lower space?
2017-12-31 10:45:41 +08:00
Anything that can be measured can be optimized. Make sure you're measuring
the right thing. Beware bad metrics. There are generally competing factors.
2018-01-02 23:50:52 +08:00
This book is mostly going to talk about reducing CPU usage, reducing memory
2018-01-03 08:03:41 +08:00
usage, and reducing latency. It's good to point out that you can very rarely
2018-01-02 23:20:14 +08:00
do all three. Maybe CPU time is faster, but now your program uses more
memory. Maybe you need to reduce memory space, but now the program will take
longer.
2017-12-31 10:45:41 +08:00
2018-01-02 23:20:14 +08:00
Amdahl's Law tells us to focus on the bottlenecks. If you double the speed of
2018-01-02 07:42:29 +08:00
routine that only takes 5% of the runtime, that's only a 2.5% speedup in
2018-01-02 23:20:14 +08:00
total wall-clock. On the other hand, speeding up routine that takes 80% of
the time by 10% will improve runtime by almost 8%. Profiles will help
identify where time is actually spent.
2017-12-31 10:45:41 +08:00
2018-01-02 23:50:52 +08:00
In general, optimizations should proceed from top to bottom. Optimizations
2017-12-31 10:45:41 +08:00
at the system level will have more impact than expression-level ones.
2018-01-03 07:03:41 +08:00
Make sure you're solving the problem at the appropriate level.
2017-12-31 10:45:41 +08:00
Do we have to do this at all? The fastest code is the code that's not there.
If yes, is this the best algorithm.
If yes, is this the best *implementation* of this algorithm.
2018-01-02 23:20:14 +08:00
Given a profile that says a particular routine is expensive, before
optimizing that routine, see if you can eliminate calls to it all together.
2017-12-31 10:45:41 +08:00
Basic techniques:
http://www.crowl.org/lawrence/programming/Bentley82.html
Approached program optimization as an engineering problem. Many of the
tips from Bentley are now done automatically by compilers (for example,
all the "loop" and "expression" ones). It's the programmers job to use
transformations that compilers can't do.
2018-01-02 23:20:14 +08:00
But the engineering approach is correct:
Benchmark. Analyze. Improve. Verify. Iterate.
2017-12-31 10:45:41 +08:00
Trade space for time:
- smaller data structures: pack things, compress data structures in memory
- precompute things you need (size of a linked list)
http://www.smallmemory.com/
Most of the time if you're optimizing for CPU, your program will use more
memory. This is the classic space-time trade-off:
https://en.wikipedia.org/wiki/Space%E2%80%93time_tradeoff
Note that modern computers and the memory hierarchy make this trade-off less
clear. It's very easy for lookup tables to be "far away" in memory (and
therefore expensive to access) making it faster to just recompute every time
it's needed. This also means that benchmarking will frequently show
improvements that are not realized in the production system due to cache
contention (e.g., lookup tables are in the processor cache during
benchmarking but always flushed by "real data" when used in a real system.
See the graphs 4 and 5 in the Jump Hash paper: https://arxiv.org/pdf/1406.2294.pdf )
Further, while data compression increases CPU time, if there are data
transfers involved (disk or network), the CPU time spent decompressing will
be trivial compared to the saved transfer time which will be orders of
magnitude slower.
algorithmic tuning:
keep the old implementation around for testing
program tuning:
best done in tiny steps, a few statements at a time
moving from floating point math to integer math
or mandelbrot removing sqrt, or lttb removing abs
2018-01-03 07:03:41 +08:00
2017-12-31 10:45:41 +08:00
some tunings are working around runtime or compiler code generation issue:
always flag these with the appropriate issue so you can revisit
assembly math.Abs() vs code generation vs function call overhead
exploit a mathematical identity: https://go-review.googlesource.com/c/go/+/85477
2018-01-03 07:03:41 +08:00
just clearing the parts you used, rather than an entire array
Program tuning used to be an art form, but then compilers got better. So now
it turns out that compilers can optimize straight-forward code better than
complicated code. The Go compiler still has a long way to go to match gcc and
clang, but it does mean that you need to be careful when tuning and
especially when upgrading that your code doesn't become "worse". There are
definitely cases where tweaks to work around the lack of a particular
compiler optimization became slower once the compiler was improved.
2017-12-31 10:45:41 +08:00
Keep comments. If something doesn't need to be done, explain why. Frequently
when optimizing an algorithm you'll discover steps that don't need to be
performed under some circumstances. Document them. Somebody else might think
it's a bug and needs to be put back.
Empty program gives the wrong answer in no time at all. It's easy to be fast
if you don't have to be correct. But it means you can use an optimization
some of the time if you're sure it's in range.
2018-01-02 23:20:14 +08:00
Have an intuitive grasp of the different O() levels:
- simple loop, O(n)
- nested loop, O(n*m)
- binary-search O(log n)
- divide-and-conquer O(n log n)
- combinatoric - look out!!
Know how big each of these input sizes is likely to be when coding. You don't
always have to shave cycles, but also don't be dumb.
2017-12-31 10:45:41 +08:00
Beware high constants Look for simpler algorithms with small constants.
Debugging an optimized algorithm is harder than debugging a simple one. Look
for algorithm the paper you're implementing claims to best and do that one
instead.
Choose algorithms based on problem size: (stdlib quicksort)
Detect and specialize for common or easy cases: stdlib string
2018-01-02 23:20:14 +08:00
Beware algorithms with high startup costs. For example,
search is O(log n), but you have to sort first.
If you just have a single search to do, a linear scan will be faster.
But if you're doing many sorts, the O(n log n) sort overhead will not matter as much
Your benchmarks must use appropriately-sized inputs. As we've seen, different
algorithms make sense at different input sizes. If your expected input range
in <100, then your benchmarks should reflect that. Otherwise, choosing an
algorithm which is optimal for n=10^6 might not be the fastest.
Be able to generate representative test data. Different distributions of data
can provoke different behaviours in your algorithm: think of the classic
"quicksort is O(n^2) when the data is sorted" example.
2017-12-31 10:45:41 +08:00
Cache common cases: Your cache doesn't even need to be huge.
Optimized a log processing script to cache the previous time passed to time.parse() for significant speedup
2018-01-02 23:50:52 +08:00
But beware cache invalidation, thread issues, etc
2017-12-31 10:45:41 +08:00
2018-01-03 07:03:41 +08:00
This also means your benchmark data needs to be representative of the real
world. If repeated requests are sufficiently rare, it's more expensive to
keep them around than to recompute them. If your benchmark data consists of
only the same repeated request, your cache will give an inaccurate view of
the performance.
2017-04-24 15:06:20 +08:00
## Basics
1. choose the best algorithm
* traditional computer science analysis
* O(n^2) vs O(n log n) vs O(log n) vs O(1)
* this should handle the majority of your optimization cases
* be aware of http://accidentallyquadratic.tumblr.com/
* https://agtb.wordpress.com/2010/12/23/progress-in-algorithms-beats-moore%E2%80%99s-law/
1. pre-compute things you need
1. add a cache -> reduces work
2016-05-22 18:50:16 +08:00
## Introductory Profiling
Techniques applicable to source code in general
1. introduction to pprof
2016-05-26 16:39:34 +08:00
* go tool pprof (and <https://github.com/google/pprof>)
1. Writing and running (micro)benchmarks
* -cpuprofile / -memprofile / -benchmem
1. How to read it pprof output
2016-05-22 18:50:16 +08:00
1. What are the different pieces of the runtime that show up
2016-05-26 16:39:34 +08:00
1. Macro-benchmarks (Profiling in production)
* net/http/pprof
2016-05-22 18:50:16 +08:00
2017-04-24 15:06:20 +08:00
## Tracer
2016-05-22 18:50:16 +08:00
## Advanced Techniques
* Techniques specific to the architecture running the code
* introduction to CPU caches
* building intuition around cache-lines: sizes, padding, alignment
* false-sharing
* OS tools to view cache-misses
2018-01-04 13:31:26 +08:00
* maps vs. slices
* SOA vs AOS layouts
* reducing pointer chasing
* branch prediction
* function call overhead
2016-05-22 18:50:16 +08:00
* Comment about Jeff Dean's 2002 numbers (plus updates)
* cpus have gotten faster, but memory hasn't kept up
2016-09-21 09:02:26 +08:00
## Heap Allocations
* Stack vs. heap allocations
* What causes heap allocations?
* Understanding escape analysis
2018-01-04 02:36:41 +08:00
* API design to limit allocations: allow passing in buffers so caller can reuse rather than forcing an allocation
2018-01-04 13:31:26 +08:00
* reducing pointers
2016-09-21 09:02:26 +08:00
2016-05-22 18:50:16 +08:00
## Runtime
* cost of calls via interfaces (indirect calls on the CPU level)
* runtime.convT2E / runtime.convT2I
* type assertions vs. type switches
* defer
2016-05-22 22:12:50 +08:00
* special-case map implementations for ints, strings
2016-05-22 18:50:16 +08:00
## Common gotchas with the standard library
* time.After() leaks until it fires
* Reusing HTTP connections...
* ....
## Unsafe
* And all the dangers that go with it
* Common uses for unsafe
* mmap'ing data files
2016-05-23 20:21:18 +08:00
* speedy de-serialization
2016-05-22 18:50:16 +08:00
2016-09-21 09:03:33 +08:00
## cgo
* Performance characteristics of cgo calls
* Tricks to reduce the costs
* Passing pointers between Go and C
2018-01-04 13:31:26 +08:00
* syso files
2016-09-21 09:03:33 +08:00
2016-05-22 18:50:16 +08:00
## Assembly
* Stuff about writing assembly code for Go
2017-12-29 09:26:52 +08:00
* brief intro to syntax
2016-05-25 15:25:28 +08:00
* calling convention
* using opcodes unsupported by the asm
* notes about why intrinsics are hard
2016-05-22 18:50:16 +08:00
## Alternate implementations
2016-05-22 18:50:16 +08:00
* Popular replacements for standard library packages:
* encoding/json -> ffjson
2018-01-04 02:36:41 +08:00
* net/http -> fasthttp (but incompatible API)
2016-05-22 18:50:16 +08:00
* regexp -> ragel (or other regular expression package)
2016-05-23 20:21:18 +08:00
* serialization
* encoding/gob -> <https://github.com/alecthomas/go_serialization_benchmarks>
* protobuf -> <https://github.com/gogo/protobuf>
2018-01-04 02:36:41 +08:00
* all formats have trade-offs: choose one that matches what you need
encoded space, decoding speed, language/tooling compatibility, ...
2016-05-22 18:50:16 +08:00
## Tooling
Look at some more interesting/advanced tooling
* perf (perf2pprof)