https://bz.apache.org/bugzilla/show_bug.cgi?id=61616
Yann Ylavic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #35427|0 |1 is obsolete| | --- Comment #24 from Yann Ylavic <[email protected]> --- Created attachment 35447 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35447&action=edit Read buffer size and flush threshold tuning Allows to configure ReadBufferSize, FlushMinThreshold, FlushMaxThreshold and FlushMaxPipelined (instead of hard coded values). For your proxy_connect case where large files may be rsync-ed, something like the below looks not absurd: # Read more at once than the default 8K ReadBufferSize 65536 # Don't block below this (i.e. more than ReadBufferSize) FlushMaxThreshold 131072 # Always flush (non-blocking) when asked to write (i.e. don't retain data) FlushMinThreshold 1 -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
