Job Group Commands: job_group
Job groups organize related jobs submitted through Bohrium CLI.
Commands
| Command | Usage | Description |
|---|---|---|
create | bohr job_group create [flags] | Create a job group |
list | bohr job_group list [flags] | List and filter job groups |
download | bohr job_group download [flags] | Download results from jobs in one group |
terminate | bohr job_group terminate <job_group_id>... | Finish job groups |
delete | bohr job_group delete <job_group_id>... | Delete job groups |
Create and list
bohr job_group create -n training-runs --project_id 123
bohr job_group list -n 10
bohr job_group list -s 2026-08-01 -e 2026-08-18 --projectId 123
The create command uses -n, --name and --project_id. The list command uses the exact flag spelling --projectId; it has no -p shorthand.
List flags include:
| Flag | Description |
|---|---|
-s, --start / -e, --end | Date range in yyyy-mm-dd; use both together |
-j, --job_group | Filter by group ID |
-n, --number | Number of groups, default 50 |
--projectId | Filter by project ID |
--sortby | Sort by id or createTime, default id |
-a, --asce | Ascending order |
Download
bohr job_group download -j 123 --out ./results -n 10
download accepts one group through -j, --job_group_id. It does not accept group IDs as positional arguments. The local destination is --out; -o remains the global output-format flag.
Terminate or delete
bohr job_group terminate 123 456
bohr job_group delete 123 456
Both commands are destructive and require confirmation. Use --dry-run to preview a scripted operation.