PR #8074 - limit how many jobs the task manager can start on a given run

This commit is contained in:
Seth Foster
2020-09-08 12:16:06 -04:00
parent 68265ea9b5
commit e09274e533
2 changed files with 16 additions and 0 deletions

View File

@@ -203,6 +203,9 @@ JOB_EVENT_MAX_QUEUE_SIZE = 10000
# The number of job events to migrate per-transaction when moving from int -> bigint
JOB_EVENT_MIGRATION_CHUNK_SIZE = 1000000
# The maximum allowed jobs to start on a given task manager cycle
START_TASK_LIMIT = 100
# Disallow sending session cookies over insecure connections
SESSION_COOKIE_SECURE = True