An api for managing HTTP chunked input requests has been added in uWSGI 1.9.13
The api is very low-level to allows easy integration with standard apps.
There are only two functions exposed:
- chunked_read([timeout])
- chunked_read_nb()
The api is supported (as uWSGI 1.9.20) on CPython, PyPy and Perl
To read a chunk (in blocking way) just run
my $msg = uwsgi::chunked_read
if no timeout is specified the default one will be used, so if you do not get a chunk in time, the function will croak (or will raise an exception when under python).
Under non-blocking/async engines you may want to use
my $msg = uwsgi::chunked_read_nb
the function will soon return 'undef' (or None on python) if no chunks are available (and will croak/raise an exception on error)
A full PSGI streaming echo example:
# simple PSGI echo app reading chunekd input
sub streamer {
$responder = shift;
# generate the headers and start streaming the response
my $writer = $responder->( [200, ['Content-Type' => 'text/plain']]);
while(1) {
my $msg = uwsgi::chunked_read;
last unless $msg;
$writer->write($msg);
}
$writer->close;
}
my $app = sub {
return \&streamer;
};
Before start reading chunks, uWSGI allocates a fixed buffer for storing chunks.
All of the messages are always stored in the same buffer. If a message bigger than the buffer is received an exception will be raised.
By default the buffer is limited to 1MB, you can tune it with the --chunked-input-limit
option (it takes bytes)
If you plan to put uWSGI behind a proxy/router be sure it supports chunked input requests (or generally raw HTTP requests).
When using the uWSGI http router just add --http-raw-body to support chunked input
HAProxy works out of the box
nginx >= 1.4 supports chunked input
--chunked-input-limit
the limit (in bytes) of a chunk message (default 1MB)
--chunked-input-timeout
the default timeout (in seconds) for blocking chunked_read (default to the same --socket-timeout value, 4 seconds)
Calling chunked api functions after having consumed even a single byte of the request body is wrong (this includes post buffering)
Chunked api function can be called independently by the presence of "Transfer-Encoding: chunked" header