summaryrefslogtreecommitdiff
path: root/docs/arguments.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-03-28 01:57:42 -0500
committerMichael Merickel <michael@merickel.org>2019-04-05 13:00:08 -0500
commit610544cfd7374d0c0067ba1dec217bb7b4c9092d (patch)
tree88258b6ea079e290c534f1053c5a589103fd0a03 /docs/arguments.rst
parent5bd69e9545718913bd2be0b4ab04f7da3d9f74c8 (diff)
downloadwaitress-610544cfd7374d0c0067ba1dec217bb7b4c9092d.tar.gz
add backpressure on the app_iter if the socket can't send data quickly enough
Diffstat (limited to 'docs/arguments.rst')
-rw-r--r--docs/arguments.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/arguments.rst b/docs/arguments.rst
index 8bacc44..22535a8 100644
--- a/docs/arguments.rst
+++ b/docs/arguments.rst
@@ -200,6 +200,13 @@ outbuf_overflow
Default: ``1048576`` (1MB)
+outbuf_high_watermark
+ The app_iter will pause when pending output is larger than this value
+ and will resume once enough data is written to the socket to fall below
+ this threshold.
+
+ Default: ``16777216`` (16MB)
+
inbuf_overflow
A tempfile should be created if the pending input is larger than
inbuf_overflow, which is measured in bytes. The default is conservative.