Template:HTTP HTTP pipelining is a feature of HTTP/1.1, which allows multiple HTTP requests to be sent over a single TCP connection without waiting for the corresponding responses.<ref name="HTTP/1.1-pipelining">Template:Cite journal</ref> HTTP/1.1 requires servers to respond to pipelined requests correctly, with non-pipelined but valid responses even if server does not support HTTP pipelining. Despite this requirement, many legacy HTTP/1.1 servers do not support pipelining correctly, forcing most HTTP clients to not use HTTP pipelining.
The technique was superseded by multiplexing via HTTP/2,<ref name=":0">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> which is supported by most modern browsers.<ref name="browser_support">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
In HTTP/3, multiplexing is accomplished via QUIC which replaces TCP. This further reduces loading time, as there is no head-of-line blocking even if some packets are lost.
Motivation and limitationsEdit
The pipelining of requests results in a dramatic improvement<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> in the loading times of HTML pages, especially over high latency connections such as satellite Internet connections. The speedup is less apparent on broadband connections, as the limitation of HTTP 1.1 still applies: the server must send its responses in the same order that the requests were received—so the entire connection remains first-in-first-out<ref name="HTTP/1.1-pipelining" /> and HOL blocking can occur.
The asynchronous operations of HTTP/2 and SPDY are solution for this.<ref name="lwnspdy">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> By 2017 most browsers supported HTTP/2 by default which uses multiplexing instead.<ref name=":0" />
Non-idempotent requests such as POST
should not be pipelined.<ref name="non-idempotent">{{#invoke:citation/CS1|citation
|CitationClass=web
}}</ref> Read requests like GET
and HEAD
can always be pipelined. A sequence of other idempotent requests like PUT
and DELETE
can be pipelined or not depending on whether requests in the sequence depend on the effect of others.<ref name="HTTP/1.1-pipelining"/>
HTTP pipelining requires both the client and the server to support it. HTTP/1.1 conforming servers are required to produce valid responses to pipelined requests, but may not actually process requests concurrently.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> Template:Clear left
Most pipelining problems happen in HTTP intermediate nodes (hop-by-hop), i.e. in proxy servers, especially in transparent proxy servers (if one of them along the HTTP chain does not handle pipelined requests properly then nothing works as it should).<ref name="make-pipelining-usable"/>
Using pipelining with HTTP proxy servers is usually not recommended also because the HOL blocking problem may really slow down proxy server responses (as the server responses must be in the same order of the received requests).<ref name="HTTP/1.1-pipelining"/> <ref name="MSIE-8-chat-2008"/>
Example: if a client sends 4 pipelined GET requests to a proxy through a single connection and the first one is not in its cache then the proxy has to forward that request to the destination web server; if the following three requests are instead found in its cache, the proxy has to wait for the web server response, then it has to send it to the client and only then it can send the three cached responses too.
If instead a client opens 4 connections to a proxy and sends 1 GET request per connection (without using pipelining) the proxy can send the three cached responses to client in parallel before the response from server is received, decreasing the overall completion time (because requests are served in parallel with no head-of-line blocking problem).<ref name="HTTP/1.1-concurrency">Template:Cite journal</ref> The same advantage exists in HTTP/2 multiplexed streams.
Implementation statusEdit
Pipelining was introduced in HTTP/1.1 and was not present in HTTP/1.0.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
There have always been complaints about browsers, proxy servers, etc. not working well when using pipelined requests / responses, up to the point that for many years (at least till 2011) software developers, engineers, web experts, etc. tried to summarize the various kind of problems they noted, to fix things and to give advices about how to deal with pipelining on the Open Web.<ref name="make-pipelining-usable">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
Implementation in web browsersEdit
Of all the major browsers, only Opera had a fully working implementation that was enabled by default. In other browsers HTTP pipelining was disabled or not implemented.<ref name="lwnspdy" />
- Internet Explorer 8 does not support pipeline requests, due to concerns regarding buggy proxies and head-of-line blocking.<ref name="MSIE-8-chat-2008">{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>
- Internet Explorer 11 does not support pipelining.<ref>Template:Cite news</ref>
- Mozilla browsers (such as Mozilla Firefox, SeaMonkey and Camino) used to support pipelining; however, it was removed in Firefox 54.<ref>Firefox 54 Release Notes</ref> When it was supported, pipelining was disabled by default to avoid issues with misbehaving servers.<ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref> If pipelining was enabled by the user, Mozilla browsers used some heuristics, mostly to turn pipelining off for older Microsoft IIS servers.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> The removal was eventually backported to SeaMonkey.
- Konqueror 2.0 supports pipelining, but it is disabled by default.<ref>Template:Cite book</ref>
- Google Chrome previously supported pipelining, but it has been disabled due to bugs and problems with poorly behaving servers.<ref>HTTP Pipelining - The Chromium Projects</ref>
- Pale Moon (web browser) supports pipelining, and is enabled by default.<ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>
Implementation in web proxy serversEdit
Most HTTP proxies do not pipeline outgoing requests.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
Some HTTP proxies, including transparent HTTP proxies, may manage pipelined requests very badly (e.g. by mixing up the order of pipelined responses).<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
Some versions of the Squid web proxy will pipeline up to two outgoing requests. This functionality has been disabled by default and needs to be manually enabled for "bandwidth management and access logging reasons".<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> Squid supports multiple requests from clients.
The Polipo proxy pipelines outgoing requests.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
Tempesta FW, an open source application delivery controller,<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> also pipelines requests to backend servers.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
Other implementationsEdit
The libwww library made by the World Wide Web Consortium (W3C), supports pipelining since version 5.1 released at 18 February 1997.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>
Other application development libraries that support HTTP pipelining include:
- Perl modules providing client support for HTTP pipelining are HTTP::Async and the LWPng (libwww-perl New Generation) library.<ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>
- The Microsoft .NET Framework 3.5 supports HTTP pipelining in the module
System.Net.HttpWebRequest
.<ref>System.Net.HttpWebRequest & pipelining</ref> - Qt class
QNetworkRequest
, introduced in 4.4.<ref>QNetworkRequest Class Reference Template:Webarchive, Nokia QT documentation</ref>
Some other applications currently exploiting pipelining are:
- IceBreak application server since BUILD389
- phttpget from FreeBSD (a minimalist pipelined HTTP client)<ref>Pipelined HTTP GET utility</ref>
- libcurl previously had limited support for pipelining using the CURLMOPT_PIPELINING option,<ref>Curl pipelining explanation Template:Webarchive, Curl developer documentation</ref> but this support was removed in version 7.65.0<ref>Curl pipelining removal announcementTemplate:Webarchive</ref>
- portsnap (a FreeBSD ports tree distribution system)
- Advanced Packaging Tool (APT) supports pipelining.Template:Citation needed
- Subversion (SVN) has optional support for HTTP pipelining with the serf WebDAV access module (the default module, neon, does not have pipelining support).<ref>Template:Cite book</ref><ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>
- Microsoft Message Queuing on Windows Server 2003 utilises pipelining on HTTP by default, and can be configured to use it on HTTPS.<ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>
- IBM CICS 3.1 supports HTTP pipelining within its client.<ref>How CICS Web support handles pipelining</ref>
Testing tools which support HTTP pipelining include:
- httperf<ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>
- Nmap supports pipelining requests with the Nmap Scripting Engine (NSE)<ref>{{#invoke:citation/CS1|citation
|CitationClass=web }}</ref>