Page MenuHomePhabricator

Consider allowing H2 coalesce for upload.wikimedia.org for images used in wiki articles
Closed, DeclinedPublic

Description

We're missing SPDY coalesce for upload.wm.o for images ref'd in projects' page outputs, but that's a trickier problem and we're not ready to move on any solution there. Arguably (a) it can wait and it's not that critical and (b) solving it too early hurts perf for non-H2 clients, too. Also, there are a lot of other questions about whether this is even a good idea and/or reasonably-implementable.

Event Timeline

Dzahn raised the priority of this task from to Needs Triage.
Dzahn updated the task description. (Show Details)
Dzahn added a project: Traffic.
Dzahn subscribed.
Restricted Application added a subscriber: Aklapper. · View Herald Transcript
Dzahn set Security to None.

There are a few concerns here which is why this is kind of "back burner" for now, but on the longer-term radar:

  • Even in the desktop case, probably (need to confirm this?) having the separate hostnames (e.g. en.wikipedia.org + upload.wikimedia.org) resolve to the same IP (per-DC) which uses the same shared cert could hurt perf for non- SPDY/HTTP2 clients, as they might hit the non-SPDY browsers' limit on connection parallelism to a given IP. We probably want to reach a certain point in SPDY/HTTP2 adoption before even going down this road. According to https://grafana.wikimedia.org/dashboard/db/client-connections we're averaging about 66% SPDY adoption presently. We haven't yet enabled HTTP/2 (tracked @ T96848) and we've got some upstream issues with nginx dropping SPDY support in the same patch that adds HTTP/2 currently...
  • For mobile in particular, we have Zero-rating issues to look at. There's an earlier (but related) issue in T109286 about whether we (eventually) merge the mobile + desktop text IPs to coalesce on the redirects between the two. It's probable/likely that we'll eventually do that, but needs more investigation first. Separately, even if mobile and desktop text IPs merge and we desired to coalesce text+upload connections (this ticket), we might have to avoid coalescing them specifically for mobile so that carriers can still choose to only whitelist by-IP for text and not multimedia content. If that ends up being a sticking point, we may have to look into a scheme such as using upload.m.wikimedia.org for the image links in the mobile version of the site, so that it can remain un-coalesced while the desktop site coalesces IPs with the primary upload.wikimedia.org.

On the Zero issues: the latest update from the Zero team is they still have exactly one carrier that cares about the multimedia-vs-text IP range differences for whitelisting. Apparently it's a very small carrier, too. I'm not pushing them on this yet, though, as even with the Zero side resolved we're not sure we're ready for this on a number of other levels:

  • Whether we don't want to take the perf hit (if there is one) on HTTP/1 clients
  • Whether this actually is a net gain even for HTTP/2 clients
  • Whether we're ok with the effects at the LVS layer, where we currently have text and upload traffic on separate LVS clusters for decent reasons

Also should note (I thought it was mentioned earlier, but apparently not): we're not even sure how we'd structure this at the nginx/varnish layer. LVS can't see the request hostname, so it would have to be somwhere inbetween LVS and varnish caching (e.g. nginx?) where we split the traffic into the cache cluster pools, or come up with some other solution. Having nginx do the split would imply a lot more inter-cache network traffic within each local DC than we have today...

BBlack changed the task status from Open to Stalled.Apr 14 2016, 2:07 PM
BBlack renamed this task from missing SPDY coalesce for upload.wm.o for images ref'd in projects' page outputs to missing H2 coalesce for upload.wm.o for images ref'd in projects' page outputs.May 4 2016, 5:18 PM
BBlack updated the task description. (Show Details)
Gilles subscribed.

Now that HTTP/2 is a thing and Zero won't be anymore, could we put connection coalescing for upload.wikimedia.org back on the table?

FYI there is now a draft for "secondary certificates" which would allow achieving connection coalescing when the same IP is used, without having to share the same cert.

Getting rid of the connection latency for images would be a pretty big deal, IMHO.

We actually do use the same cert for both, so we don't need the secondary certs bit.

Remaining basic issues/concerns:

  1. HTTP/2 adoption in terms of overall public request stats is still around ~80%. If we put images on the same IP, legacy HTTP/1 UAs may suffer due to UA limits on parallel connections to a given IP? However, I think this will only get better (in terms of real UA mix) as the TLS1.0 deadline approaches in ~4 months and causes more abandonment of legacy UAs. Also, the 80% figure doesn't try to split off requests from bots and other artificial sources...
  1. In the HTTP/2 world, I don't know that it's necessarily true that more coalescing is always a win, especially for networks with above-average loss and/or latency. This is something we could test for, though, by simulating real mobile UAs on realistic mobile networks. See e.g. https://www.twilio.com/blog/2017/10/http2-issues.html and some similar papers / postings about some of the downsides of reducing the TCP connection count on imperfect networks.
  1. We'll probably need to use HTTP/2 priority/push better, to ensure that below-fold heavy image content doesn't slow down the transfer of content necessary for the initial render. nginx (current h/2 terminator) and ATS (probable future one) both have some level of support for push/prio stuff, but we'll need to put some thought and testing into using it well.

Those sorts of questions aside, the big issue within our infra is whether/how we'd be able to handle combining the text and upload cache layers at the IP-level entrypoint, as mentioned earlier in this ticket. LVS can't split the traffic. In our current stack the nginx layer could split the traffic, but it would greatly multiply the amount of local network traffic within the cache clusters.

Splitting after the first layer of caches avoids the traffic increase, but this implies we make first cache layer shared between text/upload. This could reduce hitrates (memory for the first layer doesn't scale even as we add machines, behind a single IP), but also the tuning of the two cases is fundamentally different. Upload uses advanced tricks to tune cache admission based on knowing the size of every response object and some information about their distribution, whereas with most of our text traffic the applayer doesn't even provide us a content-length to use for such purposes.

All of these latter details will get put through a blender as we re-architect the caching stuff next FY, though. I think we should probably keep this case in mind as a design goal (that the cache infra's design shouldn't preclude efficiently presenting a shared text/upload IP to the public), and look at potentially supporting it afterwards. Concurrent with the cache-layer rework ongoing next FY we can wait out the trailing Zero partners and research the above (1-3) better to shore up the case for it.

legacy HTTP/1 UAs may suffer due to UA limits

I believe that the connection limit UAs have for HTTP/1 are per-domain, not per-IP, we should be fine on that front.

I don't know that it's necessarily true that more coalescing is always a win

I've also seen reports like that, but that doesn't replace trying it out for ourselves. The hard work is making this change possible, I imagine that reverting to two different IPs should be fairly straightforward if it doesn't work out in practice, right? I don't think that those tests simulating traffic really prove a point about average real-world conditions anyway. It's interesting to know that there are cases where HTTP/2 is worse, but that doesn't tell us how frequent those scenarios really are for users.

If moving to a single connection has a performance impact, it will be very visible with some of the crude RUM metrics like the page onload event that will capture the fact that images complete loading faster than before.

We'll probably need to use HTTP/2 priority/push better

Indeed, it would be nice to have control over priority, and how content is intertwined on the connection when served. Push is useless until cache digests are supported. I don't see this as a requirement to trying out the single connection, though, as we're not doing anything smart or custom in that respect at the moment. Bar any really stupid behavior like having all the images sent over the wire before the html, but that shouldn't happen with default priorities.

Krinkle renamed this task from missing H2 coalesce for upload.wm.o for images ref'd in projects' page outputs to Consider allowing H2 coalesce for upload.wikimedia.org for images used in wiki articles.Jul 31 2019, 3:17 PM
Krinkle removed a project: Performance Issue.
Krinkle moved this task from Perf recommendation to Watching on the Performance-Team (Radar) board.

All the perf tradeoffs and relatively-trivial work aside, the major blocker we still face here is the likely problems created by either of the simplest methods of handling this at the tls / varnish-fe layers:

  1. Merge the TLS termination and frontend cache pools - probably has net benefits in several key areas (connection volume handling and traffic load-spreading, etc) - but it would cause the upload and text datasets to compete for the limited frontend cache space, and this might not go well, unless we explicitly split the space to ensure each gets a fair share...
  1. Leave the frontend cache pools separate, but merge the TLS layer and have the TLS terminator to re-route traffic to the "other" cluster on a per-request basis - this could cause some very sharp increases in local inter-cache traffic, and in total inbound traffic to the TLS terminators, and we need a way to hash it reasonably-correctly. We could do some investigation to get a loose idea how bad the impact would be.

We could start by gathering some updated metrics. What % of reqs (or conns?) are H/2 these days? What would the impact be of pushing most of cache_upload's traffic through cache_text TLS terminators in various DCs? Can we simulate or test what happens when we naively share a frontend cache pool between normal text and upload traffic?

The swap of Traffic for Traffic-Icebox in this ticket's set of tags was based on a bulk action for all such tickets that haven't been updated in 6 months or more. This does not imply any human judgement about the validity or importance of the task, and is simply the first step in a larger task cleanup effort. Further manual triage and/or requests for updates will happen this month for all such tickets. For more detail, have a look at the extended explanation on the main page of Traffic-Icebox . Thank you!

I think the bandwidth congestion risk is sufficient to not go this route. It seems likely to result in performance regressions. Whether due to browser logic, or due to how our CDN node would handle both kinds of requests at the same time.

Aside from this would-be performance drawback, the would-be performance benefit of avoiding another TCP/TLS connection (all browsers) and the extra DNS lookup (in Firefox; Chrome just goes with the cert and assumes it'll resolve the same).. is effectively already achieved through preconnect. It still has a small cost, but the preconnect is early and fast enough to generally complete before the image request would be made or prioritised. Details at T123582: Use "preconnect" resource hint for thumbnail host.

I suggest we decline this task.

Krinkle claimed this task.
Krinkle edited projects, added Performance-Team; removed Performance-Team (Radar).
Krinkle moved this task from Untriaged to Published on the Wikimedia-Performance-publish board.