docs/install/configure-operate/worker-groups.mdx
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.
Use both together to guarantee capacity for busy projects and cap the rest.
A worker joins a group by setting its group ID at startup. AP_PROJECT_WORKER selects the group's scope:
AP_PROJECT_WORKER=true (the default). Assign individual projects to it from the platform's Workers → Assignments page.AP_PROJECT_WORKER=false. Serves the whole platform's runs; used for dedicated/canary fleets.# Project group, e.g. 1cpu_machine (AP_PROJECT_WORKER defaults to true)
AP_WORKER_GROUP_ID=1cpu_machine
# Platform group
AP_WORKER_GROUP_ID=canary
AP_PROJECT_WORKER=false
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 flow and webhook runs are routed to that group's dedicated queue (project-<group-name>-jobs) and picked up only by workers carrying the matching AP_WORKER_GROUP_ID with AP_PROJECT_WORKER=true. Projects without a group keep drawing from the shared queue.
You can assign a project to a project group in two ways:
/platform/infrastructure/workers), open the Assignments tab, and pick the group for each project.workerGroupId on the project via the projects API. Use the bare group name (the same value as the group's AP_WORKER_GROUP_ID); pass null to unassign and return the project to the shared queue.The same request also sets maxConcurrentJobs — the project's concurrency limit (the soft-cap ceiling). It's the maximum number of flow runs the project executes at once:
null) and the project uses the default: min(plan limit, group slots) — i.e. it can use the group's full reserved capacity, up to the plan's limit.curl -X POST 'https://your-instance.com/api/v1/projects/<PROJECT_ID>' \
-H 'Authorization: Bearer <PLATFORM_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{ "workerGroupId": "1cpu_machine", "maxConcurrentJobs": 2 }'