sapling/mercurial/hgweb
Gregory Szorc 1538b87cfc wireproto: compress data from a generator
Currently, the "getbundle" wire protocol command obtains a generator of
data, converts it to a util.chunkbuffer, then converts it back to a
generator via the protocol's groupchunks() implementation. For the SSH
protocol, groupchunks() simply reads 4kb chunks then write()s the
data to a file descriptor. For the HTTP protocol, groupchunks() reads
32kb chunks, feeds those into a zlib compressor, emits compressed data
as it is available, and that is sent to the WSGI layer, where it is
likely turned into HTTP chunked transfer chunks as is or further
buffered and turned into a larger chunk.

For both the SSH and HTTP protocols, there is inefficiency from using
util.chunkbuffer.

For SSH, emitting consistent 4kb chunks sounds nice. However, the file
descriptor it is writing to is almost certainly buffered. That means
that a Python .write() probably doesn't translate into exactly what is
written to the I/O layer.

For HTTP, we're going through an intermediate layer to zlib compress
data. So all util.chunkbuffer is doing is ensuring that the chunks we
feed into the zlib compressor are of uniform size. This means more CPU
time in Python buffering and emitting chunks in util.chunkbuffer but
fewer function calls to zlib.

This patch introduces and implements a new wire protocol abstract
method: compresschunks(). It is like groupchunks() except it operates
on a generator instead of something with a .read(). The SSH
implementation simply proxies chunks. The HTTP implementation uses
zlib compression.

To avoid duplicate code, the HTTP groupchunks() has been reimplemented
in terms of compresschunks().

To prove this all works, the "getbundle" wire protocol command has been
switched to compresschunks(). This removes the util.chunkbuffer from
that command. Now, data essentially streams straight from the
changegroup emitter to the wire, possibly through a zlib compressor.
Generators all the way, baby.

There were slim to no performance changes on the server as measured
with the mozilla-central repository. This is likely because CPU
time is dominated by reading revlogs, producing the changegroup, and
zlib compressing the output stream. Still, this brings us a little
closer to our ideal of using generators everywhere.
2016-10-16 11:10:21 -07:00
..
__init__.py hgweb: make sure command options are set to all ui objects 2015-11-21 13:28:12 +09:00
common.py py3: conditionalize BaseHTTPServer, SimpleHTTPServer and CGIHTTPServer import 2016-07-13 23:38:29 +05:30
hgweb_mod.py hgweb: profile HTTP requests 2016-08-14 18:37:24 -07:00
hgwebdir_mod.py hgweb: profile HTTP requests 2016-08-14 18:37:24 -07:00
protocol.py wireproto: compress data from a generator 2016-10-16 11:10:21 -07:00
request.py hgweb: use absolute_import 2015-10-31 22:07:40 +09:00
server.py hgweb: fix the MRO in Python 3 2016-10-08 19:11:19 +02:00
webcommands.py hgweb: make fctx.annotate a separated function so it could be wrapped 2016-10-08 16:10:34 +01:00
webutil.py hgweb: make fctx.annotate a separated function so it could be wrapped 2016-10-08 16:10:34 +01:00
wsgicgi.py hgweb: use absolute_import 2015-10-31 22:07:40 +09:00