Increase 'max_fsm_queue' default

The old default was becoming too small for some workloads.
This commit is contained in:
Holger Weiss 2017-10-03 01:29:52 +02:00
parent 280aa2f1b0
commit 79685da90b
2 changed files with 2 additions and 2 deletions

View File

@ -444,7 +444,7 @@ shaper:
## This option specifies the maximum number of elements in the queue ## This option specifies the maximum number of elements in the queue
## of the FSM. Refer to the documentation for details. ## of the FSM. Refer to the documentation for details.
## ##
max_fsm_queue: 1000 max_fsm_queue: 10000
###. ==================== ###. ====================
###' ACCESS CONTROL LISTS ###' ACCESS CONTROL LISTS

View File

@ -45,7 +45,7 @@
-define(SERVER, ?MODULE). -define(SERVER, ?MODULE).
-define(PROCNAME, 'ejabberd_redis_client'). -define(PROCNAME, 'ejabberd_redis_client').
-define(TR_STACK, redis_transaction_stack). -define(TR_STACK, redis_transaction_stack).
-define(DEFAULT_MAX_QUEUE, 5000). -define(DEFAULT_MAX_QUEUE, 10000).
-define(MAX_RETRIES, 1). -define(MAX_RETRIES, 1).
-define(CALL_TIMEOUT, 60*1000). %% 60 seconds -define(CALL_TIMEOUT, 60*1000). %% 60 seconds