I’ve been profiling a program that has network latency issues. The baseline
latency between client and server is about 0.2ms and overall bandwidth use
is low, but when running about ~15k requests/second of size about ~10kb
each, latency spikes to about ~75ms.

Looking at `pprof` stack traces and profiles suggest the bottleneck is in
net/http.(*http2clientConnPool).getClientConn, waiting for a mutex, and
indeed switching to HTTP 1.1 causes latency to drop to 15ms.

Is this expected HTTP/2 behavior with high rates of small requests? Are
there suggested performance tweaks, or should I just stick to HTTP/1.1?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CACn8%3DFmREHj4eLgSS1j_qCkf-cxw-Xi8h5%3D_PVa9P%2BsH_%2BQ8XA%40mail.gmail.com.

Reply via email to