←back to thread

480 points jedeusus | 1 comments | | HN request time: 0.199s | source
Show context
jensneuse ◴[] No.43540964[source]
You can often fool yourself by using sync.Pool. pprof looks great because no allocs in benchmarks but memory usage goes through the roof. It's important to measure real world benefits, if any, and not just synthetic benchmarks.
replies(2): >>43541261 #>>43543697 #
makeworld ◴[] No.43541261[source]
Why would Pool increase memory usage?
replies(2): >>43541282 #>>43543225 #
jensneuse ◴[] No.43543225[source]
Let's say you have constantly 1k requests per second and for each request, you need one buffer, each 1 MiB. That means you have 1 GiB in the pool. Without a pool, there's a high likelihood that you're using less. Why? Because in reality, most requests need a 1 MiB buffer but SOME require a 5 MiB buffer. As such, your pool grows over time as you don't have control over the distribution of the size of the pool items.

So, if you have predictable object sizes, the pool will stay flat. If the workloads are random, you have a new problem because, like in this scenario, your pool grows 5x more.

You can solve this problem. E.g. you can only give back items into the pool that are small enough. Alternatively, you could have a small pool and a big pool, but now you're playing cat and mouse.

In such a scenario, it could also work to simply allocate and use GC to clean up. Then you don't have to worry about memory and the lifetime of objects, which makes your code much simpler to read and reason about.

replies(2): >>43546636 #>>43550822 #
1. theThree ◴[] No.43550822[source]
>That means you have 1 GiB in the pool.

This only happen when every request last 1 second.