flux-queue(1)
SYNOPSIS
DESCRIPTION
The flux queue command operates on Flux job queue(s).
By default, Flux has one anonymous queue. Multiple named queues may be configured - see flux-config-queues(5).
COMMANDS
flux queue has the following subcommands:
list
List queue status, defaults, and limits.
- -q, --queue=QUEUE,...
Limit output to specified queues
- -n, --no-header
Do not output column headers in
listoutput.
- -o, --format=FORMAT
Specify output format in
listusing Python's string format syntax. See OUTPUT FORMAT below for field names.
status
Report the current queue status.
- -q, --queue=NAME
Select a queue by name.
- -v, --verbose
Display more detail about internal job manager state.
disable
Prevent jobs from being submitted to the queue, with an optional reason that is shown to submitting users.
- -a, --all
Select all queues.
- -v, --verbose
Display more detail about internal job manager state.
- --quiet
Display only errors.
- --nocheckpoint
Do not preserve the new queue disabled state across a Flux instance restart.
enable
Allow jobs to be submitted to the queue.
- -q, --queue=NAME
Select a queue by name.
- -a, --all
Select all queues.
- -v, --verbose
Display more detail about internal job manager state.
- --quiet
Display only errors.
stop
Stop allocating resources to jobs. Pending jobs remain enqueued, and running jobs continue to run, but no new jobs are allocated resources.
- -a, --all
Select all queues.
- -v, --verbose
Display more detail about internal job manager state.
- --quiet
Display only errors.
- --nocheckpoint
Do not preserve the new queue stop state across a Flux instance restart.
start
Start allocating resources to jobs.
- -a, --all
Select all queues.
- -v, --verbose
Display more detail about internal job manager state.
- --quiet
Display only errors.
drain
Block until all queues become empty. It is sometimes useful to run after flux queue disable, to wait until the system is quiescent and can be taken down for maintenance.
- --timeout=FSD
Limit the time that the command` will block.
idle
Block until all queues become idle (no jobs in RUN or CLEANUP state, and no outstanding alloc requests to the scheduler). It may be useful to run after flux queue stop to wait until the scheduler and execution system are quiescent before maintenance involving them.
- --timeout=FSD
Limit the time that the command` will block.
OUTPUT FORMAT
The flux queue list --format option can be used to specify an
output format using Python's string format syntax or a defined format by
name. For a list of built-in and configured formats use -o help.
An alternate default format can be set via the
FLUX_QUEUE_LIST_FORMAT_DEFAULT environment variable.
A configuration snippet for an existing named format may be
generated with --format=get-config=NAME. See flux-jobs(1)
OUTPUT FORMAT section for a detailed description of this syntax.
If the format string begins with sort:k1[,k2,...], then k1[,k2,...]
will be taken to be a comma-separated list of keys on which to sort
the displayed output. If a sort key starts with -, then the key
will be sorted in reverse order.
Sort keys can be any valid field name. Fields that may be empty or unset will sort before non-empty values. When sorting fields that contain mixed types, the sort order is: empty/None < numbers (including booleans) < strings. Booleans are treated as numeric values (False=0, True=1).
For example, to sort by a numeric field with empty values first:
--format='sort:nnodes {id} {nnodes} {status}'
Or to sort in reverse order (largest first, empty values last):
--format='sort:-nnodes {id} {nnodes} {status}'
Multiple sort keys can be specified, with earlier keys taking precedence:
--format='sort:state,-t_submit {id} {state} {t_submit}'
The following field names can be specified:
- queue
queue name
- queuem
queue name, but default queue is marked up with an asterisk
- submission
Description of queue submission status:
enabledordisabled- scheduling
Description of queue scheduling status:
startedorstopped- enabled
Single character submission status:
✔if enabled,✗if disabled.- started
Single character scheduling status:
✔if started,✗if stopped.- enabled.ascii
Single character submission status:
yif enabled,nif disabled.- started.ascii
Single character scheduling status:
yif started,nif stopped.- defaults.timelimit
default timelimit for jobs submitted to the queue
- limits.timelimit
max timelimit for jobs submitted to the queue
- limits.range.nnodes
range of nodes that can be requested for this queue
- limits.range.ncores
range of cores that can be requested for this queue
- limits.range.ngpus
range of gpus that can be requested for this queue
- limits.range.effective.nnodes
effective range of nodes that can be requested for this queue. The upper end of the range will display the smaller of the policy limit and the total nodes currently assigned to the queue.
- limits.range.effective.ncores
effective range of cores that can be requested for this queue. The upper end of the range will display the smaller of the policy limit and the total cores currently assigned to the queue.
- limits.range.effective.ngpus
effective range of gpus that can be requested for this queue. The upper end of the range will display the smaller of the policy limit and the total gpus currently assigned to the queue.
- limits.min.nnodes
minimum number of nodes that must be requested for this queue
- limits.max.nnodes
maximum number of nodes that can be requested for this queue
- limits.min.ncores
minimum number of cores that must be requested for this queue
- limits.max.ncores
maximum number of cores that can be requested for this queue
- limits.min.ngpus
minimum number of gpus that must be requested for this queue
- limits.max.ngpus
maximum number of gpus that can be requested for this queue
- resources.{all,free,allocated,up,down}.{nnodes,ncores,ngpus}
Counts of resources in various states (all available, currently free, currently allocated, up, and down) for this queue.
RESOURCES
Flux: http://flux-framework.org
Flux RFC: https://flux-framework.readthedocs.io/projects/flux-rfc
Issue Tracker: https://github.com/flux-framework/flux-core/issues