File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 54515451:Type: float
54525452
54535453
5454+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5455+ ``celery_user_concurrency_limit ``
5456+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5457+
5458+ :Description:
5459+ Maximum number of Celery tasks that can execute concurrently for a
5460+ single user. If set to 0 (default), no concurrency limit is
5461+ enforced. When a user exceeds this limit, new tasks are deferred
5462+ and retried until a slot becomes available. A periodic cleanup
5463+ task reclaims slots from crashed workers by inspecting active
5464+ tasks on all workers.
5465+ :Default: ``0 ``
5466+ :Type: int
5467+
5468+
54545469~~~~~~~~~~~~~~
54555470``use_pbkdf2 ``
54565471~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -2968,6 +2968,14 @@ galaxy:
29682968 # executed per user per second.
29692969 #celery_user_rate_limit: 0.0
29702970
2971+ # Maximum number of Celery tasks that can execute concurrently for a
2972+ # single user. If set to 0 (default), no concurrency limit is
2973+ # enforced. When a user exceeds this limit, new tasks are deferred and
2974+ # retried until a slot becomes available. A periodic cleanup task
2975+ # reclaims slots from crashed workers by inspecting active tasks on
2976+ # all workers.
2977+ #celery_user_concurrency_limit: 0
2978+
29712979 # Allow disabling pbkdf2 hashing of passwords for legacy situations.
29722980 # This should normally be left enabled unless there is a specific
29732981 # reason to disable it.
You can’t perform that action at this time.
0 commit comments