feat(buffer_worker): change default max queue bytes to 256 MB

This commit is contained in:
Thales Macedo Garitezi 2023-04-14 09:31:33 -03:00
parent a0cfac3a1a
commit 4de13d2800
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@
-define(DEFAULT_QUEUE_SEG_SIZE, 10 * 1024 * 1024).
-define(DEFAULT_QUEUE_SEG_SIZE_RAW, <<"10MB">>).
-define(DEFAULT_QUEUE_SIZE, 100 * 1024 * 1024).
-define(DEFAULT_QUEUE_SIZE_RAW, <<"100MB">>).
-define(DEFAULT_QUEUE_SIZE, 256 * 1024 * 1024).
-define(DEFAULT_QUEUE_SIZE_RAW, <<"256MB">>).
-define(DEFAULT_REQUEST_TIMEOUT, timer:seconds(15)).