HTTP/2

HTTP/2 is an alternative to HTTP/1.x that has been the workhorse protocol of the web for about 15 years. The older version served well in the days when web pages were simple. In February 2017, an average web page is seen to have more than a hundred assets -- JS files, CSS files, images, font files, iframes embedding other content, and more. This means that the browser has to make multiple requests to the server for a single page. User experience is affected due to long load times. HTTP/2 aims to solve these problems.

In particular, HTTP/2 allows multiple requests in parallel on a single TCP connection. HTTP/1.x allowed only a single request. HTTP/2 is also more bandwidth efficient since it uses binary encoding and compresses headers. It allows for Server Push rather than relying only on client requests to serve content.

Discussion

  • Are there any published results to show that HTTP/2 is better?

    As of February 2017, a test comparing plain HTTP/1.1 against encrypted HTTP/2 showed that former is 73% percent slower. The server was in Dallas and the client was in Bangalore for this test. Early testing of HTTP/2 done in January 2015 showed that HTTP/2 uses fewer header bytes due to header compression. Its response messages were also smaller when compared against HTTP/1.1. For page loads, HTTP/2 took 0.772 seconds whereas HTTP/1.1 took 0.988 seconds.

  • How is the support for HTTP/2 from browsers and servers?

    In 2015, popular browsers started supporting HTTP/2. This includes Chrome, Firefox, Safari, Opera and Edge. Chrome for Android started support in February 2017.

    At the server side, W3Techs reported that as of February 2017 12% of the servers support HTTP/2. Of these, 77% were on Nginx and 18% were on LiteSpeed. We see that when platforms that host a number of domains start supporting HTTP/2, there's a spike in HTTP/2 traffic. This can be seen when WordPress, CloudFlare, Blogspot and Wikipedia started support for the protocol. Apache introduced it on an experimental basis in version 2.4.17. KeyCDN reported that as of April 2016 68% of its traffic is HTTP/2.

  • Are there any security vulnerabilities with HTTP/2?

    In August 2016, Imperva, Inc. reported four security vulnerabilities. These should be seen as implementation flaws rather than flaws in the protocol itself. At least one of these vulnerabilities was found in five different server implementations, which were subsequently fixed.

  • Is the use of encryption mandatory for HTTP/2?

    No. However, major browsers have said that they will support HTTP/2 only over TLS. The use of HTTP/2 over TLS is referred to as h2. The use of HTTP/2 over TCP, implying cleartext payload, is referred to as h2c.

  • Do I have to change my application code when migrating to HTTP/2?

    No. The idea of HTTP/2 was to improve the way packets are "put on the wire." For reasons of interoperability, HTTP Working Group was clear that the semantics of using HTTP should not be changed. This means that headers, methods, status codes and cache directives present in HTTP/1.x will remain the same in HTTP/2 as well. The semantics of HTTP remain unchanged. Hence, application code need not be changed.

    Of course, if you're building your own server code or custom client code, you will need to update these to support HTTP/2. The binary framing layer of HTTP/2 headers is not compatible with HTTP/1.x but this affects only HTTP clients and servers. A HTTP/1.1 client cannot talk to a server that supports only HTTP/2.

    If your application is using any of the well-known "best practices" for better performance over HTTP/1.1, the recommendation is to remove these best practices. The bigger migration challenge may be to use HTTP/2 over a secure connection if your applications are not currently using TLS.

  • Didn't HTTP pipelining already solve this problem in HTTP/1.1?
    HTTP pipelining. Source: Mozilla 2016.
    HTTP pipelining. Source: Mozilla 2016.

    HTTP/1.0 was really a stop-and-wait protocol. The client could not make another request until response to the pending request was received. HTTP/1.1 attempted to solve this by introducing HTTP Pipelining, which allows a client to send multiple requests to the server in a concurrent manner. Requirement from the server was that responses must be sent out in the same order in which requests were received.

    In the real world, performance improvement due to pipelining is not proven. Proxies when implemented wrongly can lead to erroneous behaviours. Other factors including round trip time, packet size and network bandwidth affect performance. There's also the problem of head-of-line blocking whereby packets pending from one request can block other pipelined requests. For these reasons, most modern browsers disable HTTP pipelining by default.

  • What sort of hacks did developers use to improve performance before HTTP/2?

    Some of the "best practices" to improve performance were really hacks to overcome the limitations of HTTP/1.x. These included domain sharding, inlining, image sprites and concatenation. The idea was to minimize the number of requests. With the coming of HTTP/2, these hacks will no longer be required.

    There's one trick that browsers have used to improve performance without using HTTP pipelining. Browsers opened multiple TCP connections to enable concurrent requests. As many as six requests were used per domain. This is the reason why some applications deployed their content across domains so that multiple TCP connections to multiple domains will lead for faster page loads. With HTTP/2, multiple TCP connections will not be required. Multiple HTTP requests can happen on a single TCP connection.

  • What's the rationale for using binary encoding?
    HTTP/2 binary framing layer. Source: Grigorik 2013.
    HTTP/2 binary framing layer. Source: Grigorik 2013.

    HTTP/1.x was a textual protocol, which made it easier to inspect and debug the messages. But it was also inefficient to transmit. Implementation was also complex since the presence of newlines and whitespaces resulted in variations of the message, all of which had to be decoded properly by the receiver. Binary formats are more efficient since fewer bytes are needed. Since the structure is fixed, decoding becomes easier. Debugging a binary protocol is more difficult but with the right tool support it's not much of a problem. Wireshark supports decoding and analysis of HTTP/2 over TLS.

  • Can you give some details of multiplexing HTTP requests on a single TCP connection?
    Different scenarios of stream prioritization. Source: Grigorik and Surma 2019.
    Different scenarios of stream prioritization. Source: Grigorik and Surma 2019.

    HTTP/2 defines three things:

    • Frame: Smallest unit of transmission that contains its own header.
    • Message: A sequence of frames that correspond to a HTTP request or response.
    • Stream: A bidirectional flow of messages and identified by a unique identifier.

    Thus, multiple streams are multiplexed (and interleaved) on to a single TCP connection. Each stream is independent of others, which means that even if one is blocked or delayed, others are not affected. HTTP/2 also allows prioritization of streams, which was not possible with HTTP/1.1.

  • How is header compression done in HTTP/2?
    HPACK: Header compression for HTTP/2. Source: Grigorik 2013.
    HPACK: Header compression for HTTP/2. Source: Grigorik 2013.

    Headers in HTTP/1.x can typically 500-800 bytes but can grow to the order of kilobytes since applications use headers to include cookies and referers. It therefore makes sense to compress these headers. HPACK is the name give to HTTP/2 header compression. It was approved by IETF in May 2015 as RFC 7541.

    Huffman coding is used to compress each header frame, which always appears at the start of each message within a stream. In addition, many fields of the header will remain the same across messages. HPACK removes this redundancy by replacing the fields with indices that point to tables that map these indices to actual values. There are predetermined static tables defined by HPACK. Dynamic tables allow further compression.

    A test on CloudFlare gave 76% compression for ingress headers, which translates to 53% savings on total ingress traffic. The equivalent numbers for egress are 69% and 1.4%. Results also showed that with more traffic, the dynamic table grows, leading to higher compression. KeyCDN reported savings of 30% on average.

  • How does Server Push improve performance?
    Server Push of HTTP/2. Source: Imperva 2016.
    Server Push of HTTP/2. Source: Imperva 2016.

    In a typical client-server interaction, the client will request one page, parse it and then figure out other assets that need to be requested from the server. Server Push is a feature that enables the server to push assets without the client asking for it. For example, if a HTML page references images, JS files and CSS files, the server can send these after or before sending the HTML page. Each pushed asset is sent on its own stream and therefore can be prioritized and multiplexed individually.

    Since Server Push changes the way clients and servers interact, it's still considered experimental. Wrong configuration could lead to worse performance. For example, the server may push an asset even if the client has cached it from an earlier request. Likewise, servers may push too much data and affect user experience. Proper use of cookies, cache-aware Server Push and correct server configuration can aid in getting Server Push right.

Milestones

2012

IETF's HTTP Working Group begins looking at Google's SPDY protocol as a starting point for defining HTTP/2.

Feb
2015

IESG approves HTTP/2 as a proposed standard.

May
2015

HTTP/2 is published as RFC 7540.

References

  1. Apache. 2017. Apache Module mod_http2. Apache. Retrieved 2017-02-17.
  2. Belshe, M., R. Peon, and M. Thomson, ed. 2015. "RFC 7540 - Hypertext Transfer Protocol Version 2 (HTTP/2)." IETF. May. Retrieved 2017-02-16.
  3. Can I Use. 2017. "Can I Use HTTP/2?" Can I Use. Retrieved 2017-02-17.
  4. Grigorik, Ilya. 2013. High Performance Browser Networking. O'Reilly Media, Inc. Retrieved 2017-02-17.
  5. Grigorik, Ilya and Surma. 2019. "Introduction to HTTP/2." Web Fundamentals, Google Developers, September 3. Accessed 2020-07-20.
  6. HTTP Archive. 2017. "Trends: Total Transfer Size & Requests." Retrieved 2017-02-16.
  7. HTTP vs HTTPS Test. 2017. Retrieved 2017-02-18.
  8. HTTP/2. 2015. "FAQ." HTTP/2 Homepage. Retrieved 2017-02-16.
  9. HTTP/2 Dashboard. 2016. "HTTP/2 Adoption." HTTP/2 Dashboard. Updated November 16. Retrieved 2017-02-17.
  10. HttpWatch. 2015. "A Simple Performance Comparison of HTTPS, SPDY and HTTP/2." HttpWatch. January 16. Retrieved 2017-02-18.
  11. Hume, Dean. 2016. "HTTP/2 Server Push and Service Workers: The Perfect Partnership." 24 Ways. December 15. Retrieved 2017-02-18.
  12. Imperva. 2016. "HTTP/2: In-depth analysis of the top four flaws of the next generation web protocol." August. Retrieved 2017-03-08.
  13. Jackson, Brian. 2016. "KeyCDN Enables HTTP/2 HPACK Compression – Huffman Encoding." KeyCDN. April 25. Retrieved 2017-02-18.
  14. Krasnov, Vlad. 2016. "HPACK: the silent killer (feature) of HTTP/2." Cloudflare blog. November 28. Retrieved 2017-02-18.
  15. Mozilla. 2016. "Connection management in HTTP/1.x." Mozilla Developer Network. Updated October 3. Retrieved 2017-02-18.
  16. Nottingham, Mark. 2015a. "HTTP/2 Approved." IETF Blog. February 17. Retrieved 2017-02-16.
  17. Nottingham, Mark. 2015b. "HTTP/2 Implementation Status." mnot's blog. June 15. Retrieved 2017-02-17.
  18. Peon, R., and H. Ruellan. 2015. "RFC 7541 - HPACK: Header Compression for HTTP/2." IETF. May. Retrieved 2017-02-18.
  19. Sherman, Erik. 2015. "It's time to get ready for HTTP/2." TechBeacon. May 30. Retrieved 2017-02-17.
  20. W3Techs. 2017a. "Usage of HTTP/2 for websites." W3Techs. Updated February 17. Retrieved 2017-02-17.
  21. W3Techs. 2017b. "Distribution of web servers among websites that use HTTP/2." W3Techs. Updated February 17. Retrieved 2017-02-17.
  22. Wagner, Jeremy. 2017. "A Comprehensive Guide To HTTP/2 Server Push." Smashing Magazine. April 10. Retrieved 2017-04-11.

Further Reading

  1. Stenberg, Daniel. 2016. HTTP2 Explained. Updated May 4. Retrieved 2017-02-17.
  2. Andrew, Rachel. 2016. Getting Ready For HTTP/2: A Guide For Web Designers And Developers. Smashing Magazine. February 16. Retrieved 2017-02-17.
  3. Wikipedia. 2017. "HTTP/2." Updated February 3. Retrieved 2017-02-17.
  4. Nottingham, Mark. 2014. "Nine Things to Expect from HTTP/2." mnot's blog. January 30. Retrieved 2017-02-18.
  5. Rich, Ashley. 2017. "Performance Best Practices in the HTTP/2 Era." Delicious Brains. January 17. Retrieved 2017-02-18.
  6. HTTP2 Spec. 2017. "Implementations." Working copy of the HTTP/2 Specification. GitHub. Updated January 5. Retrieved 2017-02-17.

Article Stats

Author-wise Stats for Article Edits

Author
No. of Edits
No. of Chats
DevCoins
6
1
1215
2
0
106
1505
Words
9
Likes
4623
Hits

Cite As

Devopedia. 2022. "HTTP/2." Version 8, February 15. Accessed 2023-11-12. https://devopedia.org/http-2
Contributed by
2 authors


Last updated on
2022-02-15 11:38:28
  • HTTP/3
  • SPDY
  • HPACK
  • HTTP Pipelining
  • Domain Sharding
  • Spriting