You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we're not leveraging anything fancy, just using the stdlib http.Transport, which ultimately will pile all HTTP/2 streams onto one upstream connection on one IP address.
This is less than ideal for us in production capacities, and we'd want to pool connections and help spread the load around, and pool N per IP to spread across our infrastructure more friendly.
Right now, we're not leveraging anything fancy, just using the stdlib http.Transport, which ultimately will pile all HTTP/2 streams onto one upstream connection on one IP address.
This is less than ideal for us in production capacities, and we'd want to pool connections and help spread the load around, and pool N per IP to spread across our infrastructure more friendly.
See:
Also need to flip the flag and open source go-upstream so we can use it here.
The text was updated successfully, but these errors were encountered: