Skip to content

Commit

Permalink
Try to bunch tasks on batch more efficiently (#4464)
Browse files Browse the repository at this point in the history
We're experiencing big delays in our batch scheduling (meaning batch is
an hour behind). We may have too many jobs for batch.
Start trying to bunch the tasks more efficiently so we have fewer jobs.
  • Loading branch information
jonathanmetzman committed Jan 8, 2025
1 parent afc41b6 commit 25b1452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clusterfuzz/_internal/base/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@
# See https://github.com/google/clusterfuzz/issues/3347 for usage
SUBQUEUE_IDENTIFIER = ':'

UTASK_QUEUE_PULL_SECONDS = 60
UTASK_QUEUE_PULL_SECONDS = 120

# The maximum number of utasks we will collect from the utask queue before
# scheduling on batch.
MAX_UTASKS = 250
MAX_UTASKS = 800

UTASKS = {
'analyze',
Expand Down

0 comments on commit 25b1452

Please sign in to comment.