Skip to main content
By default every worker serves every project from one shared queue. When one busy project floods it, everyone else waits. Worker groups fix that. A group is a named pool of workers with its own dedicated queue. Assign a project to a group and its runs get reserved workers no other project can take. Worker groups: projects map to dedicated queues, each backed by its own reserved worker pool, while ungrouped projects share a best-effort queue

Floor vs. ceiling

  • A worker group is a floor: capacity reserved for a project that nobody else can use.
  • A soft cap is a ceiling: an optional per-project limit on how much a project can use. See Manage Concurrency for details.
Use both together to guarantee capacity for busy projects and cap the rest.

How it works

A worker joins a group by setting its group ID at startup:
AP_WORKER_GROUP_ID=<group-name>
Grouped workers run in a process-isolated execution mode, so set:
AP_EXECUTION_MODE=SANDBOX_PROCESS   # or SANDBOX_CODE_AND_PROCESS
AP_REUSE_SANDBOX=true               # or false, must be set explicitly
Once a project is assigned to a group, its runs are routed to that group’s dedicated queue and picked up only by workers carrying the matching AP_WORKER_GROUP_ID. Projects without a group keep drawing from the shared queue.