File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/WebJobs.Script.WebHost/Diagnostics Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ namespace Microsoft.Azure.WebJobs.Script.WebHost.Diagnostics
11
11
internal class ConsoleWriter
12
12
{
13
13
// A typical out-of-proc function execution will generate 8 log lines.
14
- // A single core container can potentially get around 1K RPS at the higher end, so this is about 1 second of buffer in the extreme case.
15
- // A typical log line is around 300 bytes, so this is about 2.4MB of buffer in the extreme case.
14
+ // A single core container can potentially get around 1K RPS at the higher end, and a typical log line is around 300 bytes
15
+ // So in the extreme case, this is about 1 second of buffer and should be less than 3MB
16
16
private const int DefaultBufferSize = 8000 ;
17
17
18
18
private static readonly TimeSpan DefaultConsoleBufferTimeout = TimeSpan . FromSeconds ( 1 ) ;
You can’t perform that action at this time.
0 commit comments