跳到主要内容

Job Group Commands: job_group

Job groups organize related jobs submitted through Bohrium CLI.

Commands

CommandUsageDescription
createbohr job_group create [flags]Create a job group
listbohr job_group list [flags]List and filter job groups
downloadbohr job_group download [flags]Download results from jobs in one group
terminatebohr job_group terminate <job_group_id>...Finish job groups
deletebohr 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:

FlagDescription
-s, --start / -e, --endDate range in yyyy-mm-dd; use both together
-j, --job_groupFilter by group ID
-n, --numberNumber of groups, default 50
--projectIdFilter by project ID
--sortbySort by id or createTime, default id
-a, --asceAscending 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.