flux-alloc(1)
SYNOPSIS
flux alloc [OPTIONS] [COMMAND...]
DESCRIPTION
flux alloc runs a Flux subinstance with COMMAND as the initial program. Once resources are allocated, COMMAND executes on the first node of the allocation with any free arguments supplied as COMMAND arguments. When COMMAND exits, the Flux subinstance exits, resources are released to the enclosing Flux instance, and flux alloc returns.
If no COMMAND is specified, an interactive shell is spawned as the initial program, and the subinstance runs until the shell is exited.
If the --bg option is specified, the subinstance runs without an
initial program. flux alloc prints the jobid and returns as soon as
the subinstance is ready to accept jobs. The subinstance runs until it exceeds
its time limit, is canceled, or is shut down with flux-shutdown(1).
Flux commands that are run from the subinstance (e.g. from the interactive
shell) refer to the subinstance. For example, flux-run(1) would launch
work there. A Flux command run from the subinstance can be forced to refer
to the enclosing instance by supplying the flux --parent option.
Flux commands outside of the subinstance refer to their enclosing instance, often a system instance. flux-proxy(1) establishes a connection to a running subinstance by jobid, then spawns a shell in which Flux commands refer to the subinstance, for example
$ flux alloc --bg -N 2 --queue=batch
ƒM7Zq9AKHno
$ flux proxy ƒM7Zq9AKHno
$ flux run -n16 ./testprog
...
$ flux shutdown
...
$
The available OPTIONS are detailed below.
JOB PARAMETERS
flux batch and flux alloc do not launch tasks directly, and therefore job parameters are normally specified in terms of resource slot size and number of slots. A resource slot can be thought of as the minimal resources required for a virtual task. The default slot size is 1 core.
- -n, --nslots=N
Set the number of slots requested. This parameter is required unless
--nodesis specified.
- -c, --cores-per-slot=N
Set the number of cores to assign to each slot (default 1).
- -g, --gpus-per-slot=N
Set the number of GPU devices to assign to each slot (default none).
- -N, --nodes=N
Distribute allocated resource slots across N individual nodes.
- -q, --queue=NAME
Submit a job to a specific named queue. If a queue is not specified and queues are configured, then the jobspec will be modified at ingest to specify the default queue. If queues are not configured, then this option is ignored, though flux-jobs(1) may display the queue name in its rendering of the
{queue}attribute.
- -B, --bank=NAME
Set the bank name for this job to
NAME. This option is equivalent to --setattr=bank=NAME, and results in thebankattribute being set toNAMEin the submitted jobspec. However, besides the bank name appearing in job listing output, this option may have no effect if no plugin or package that supports it (such as flux-accounting) is installed and configured.
- -t, --time-limit=MINUTES|FSD
Set a time limit for the job in either minutes or Flux standard duration (RFC 23). FSD is a floating point number with a single character units suffix ("s", "m", "h", or "d"). The default unit for the
--time-limitoption is minutes when no units are otherwise specified. If the time limit is unspecified, the job is subject to the system default time limit.
- --job-name=NAME
Set an alternate job name for the job. If not specified, the job name will default to the command or script executed for the job.
- --flags=FLAGS
Set comma separated list of job submission flags. The possible flags are
waitable,novalidate, anddebug. Thewaitableflag will allow the job to be waited on viaflux job waitand similar API calls. Thenovalidateflag will inform flux to skip validation of a job's specification. This may be useful for high throughput ingest of a large number of jobs. Bothwaitableandnovalidaterequire instance owner privileges.debugwill output additional debugging into the job eventlog.
CONSTRAINTS
- --requires=CONSTRAINT
Specify a set of allowable properties and other attributes to consider when matching resources for a job. The CONSTRAINT is expressed in a simple syntax described in RFC 35 (Constraint Query Syntax) which is then converted into a JSON object compliant with RFC 31 (Job Constraints Specification).
A constraint query string is formed by a series of terms.
A term has the form
operator:operand, e.g.hosts:compute[1-10].Terms may optionally be joined with boolean operators and parenthesis to allow the formation of more complex constraints or queries.
Boolean operators include logical AND (
&,&&, orand), logical OR (|,||, oror), and logical negation (not).Terms separated by whitespace are joined with logical AND by default.
Quoting of terms is supported to allow whitespace and other reserved characters in operand, e.g.
foo:'this is args'.Negation is supported in front of terms such that
-op:operandis equivalent tonot op:operand. Negation is not supported in front of general expressions, e.g.-(a|b)is a syntax error.The full specification of Constraint Query Syntax can be found in RFC 35.
Currently,
--requiressupports the following operators:- properties
Require the set of specified properties. Properties may be comma-separated, in which case all specified properties are required. As a convenience, if a property starts with
^then a matching resource must not have the specified property. In these commands, thepropertiesoperator is the default, so thata,bis equivalent toproperties:a,b.- hostlist
Require matching resources to be in the specified hostlist (in RFC 29 format).
hostorhostsis also accepted.- ranks
Require matching resources to be on the specified broker ranks in RFC 22 Idset String Representation.
Examples:
a b c,a&b&c, ora,b,cRequire properties a and b and c.
a|b|c, ora or b or cRequire property a or b or c.
(a and b) or (b and c)Require properties a and b or b and c.
b|-c,b or not cRequire property b or not c.
host:fluke[1-5]Require host in fluke1 through fluke5.
-host:fluke7Exclude host fluke7.
rank:0Require broker rank 0.
DEPENDENCIES
Note
Flux supports a simple but powerful job dependency specification in jobspec. See Flux Framework RFC 26 for more detailed information about the generic dependency specification.
Dependencies may be specified on the command line using the following options:
- --dependency=URI
Specify a dependency of the submitted job using RFC 26 dependency URI format. The URI format is SCHEME:VALUE[?key=val[&key=val...]]. The URI will be converted into RFC 26 JSON object form and appended to the jobspec
attributes.system.dependenciesarray. If the current Flux instance does not support dependency scheme SCHEME, then the submitted job will be rejected with an error message indicating this fact.The
--dependencyoption may be specified multiple times. Each use appends a new dependency object to theattributes.system.dependenciesarray.
The following dependency schemes are built-in:
Note
The after* dependency schemes listed below all require that the
target JOBID be currently active or in the job manager's inactive job
cache. If a target JOBID has been purged by the time the dependent job
has been submitted, then the submission will be rejected with an error
that the target job cannot be found.
Note
Most after* dependency schemes require that the target job enters
the RUN state. Only afterany can be satisfied by a job that is
canceled while pending, since it is satisfied after ANY outcome.
A helpful analogy: dependency chains behave like shell command separators.
afterany is like ; (run regardless of result), while
afternotok and afterexcept are like || (run only on
failure). Just as a chain of || commands terminates when one
succeeds, a chain of afternotok jobs should terminate when canceled,
not continue. Similarly afterok behaves like &&: once any job
fails the rest of the chain is canceled.
Note
The after scheme is deprecated. Use afterstart instead.
- afterstart:JOBID
This dependency is satisfied after JOBID starts. The target job must have entered the RUN state.
- after:JOBID
Deprecated alias for
afterstart. Useafterstartinstead.- afterany:JOBID
This dependency is satisfied after JOBID enters the INACTIVE state, regardless of the result. This is the only
after*dependency that can be satisfied even if the target job is canceled before starting.- afterok:JOBID
This dependency is satisfied after JOBID enters the INACTIVE state with a successful result. The target job must have entered the RUN state.
- afternotok:JOBID
This dependency is satisfied after JOBID enters the INACTIVE state with an unsuccessful result. The target job must have entered the RUN state.
- afterexcept:JOBID
This dependency is satisfied when JOBID enters the INACTIVE state and a fatal job exception caused the transition to CLEANUP (e.g., node failure, timeout). The target job must have entered the RUN state.
- singleton
This dependency is satisfied when there are no other active jobs of the same userid and job name which are not already held with a singleton dependency. That is, a singleton can be the only job with the same userid and job name in the SCHED state or later. The singleton scheme requires an explicit job name using the
--job-nameoption.- begin-time:TIMESTAMP
This dependency is satisfied after TIMESTAMP, which is specified in floating point seconds since the UNIX epoch. See the
--begin-timeoption below for a more user-friendly interface to thebegin-timedependency.
In any of the above after* cases, if it is determined that the
dependency cannot be satisfied (e.g. a job fails due to an exception
with afterok), then a fatal exception of type=dependency is raised
on the current job. An example of submitting a job, getting the Flux
job identifier, and then submitting a job that depends on it (meaning
it will wait for completion before starting) is provided below:
# Do some long work
jobid=$(flux submit -N2 sleep 200)
# Submit the dependent job
flux submit --dependency=afterany:$jobid /bin/bash my-script.sh
# Look at your queue
flux jobs -a
# Block and watch output
flux job attach $(flux job last)
ENVIRONMENT
By default, flux-alloc(1) duplicates the current environment when submitting jobs. However, a set of environment manipulation options are provided to give fine control over the requested environment submitted with the job.
Note
The actual environment of the initial program is subject to the caveats described in the INITIAL PROGRAM ENVIRONMENT section of flux-environment(7).
- --env=RULE
Control how environment variables are exported with RULE. See the ENV RULES section below for more information. Rules are applied in the order in which they are used on the command line. This option may be specified multiple times.
- --env-remove=PATTERN
Remove all environment variables matching PATTERN from the current generated environment. If PATTERN starts with a
/character, then it is considered a regex(7), otherwise PATTERN is treated as a shell glob(7). This option is equivalent to--env=-PATTERNand may be used multiple times.
- --env-file=FILE
Read a set of environment RULES from a FILE. This option is equivalent to
--env=^FILEand may be used multiple times.
ENV RULES
The ENVIRONMENT options allow control of the environment exported to jobs via a set of RULE expressions. The currently supported rules are
If a rule begins with
-, then the rest of the rule is a pattern which removes matching environment variables. If the pattern starts with/, it is a regex(7), optionally ending with/, otherwise the pattern is considered a shell glob(7) expression.
- Examples:
-*or-/.*/filter all environment variables creating an empty environment.If a rule begins with
^then the rest of the rule is a filename from which to read more rules, one per line. The~character is expanded to the user's home directory.
- Examples:
~/envfilereads rules from file$HOME/envfileIf a rule is of the form
VAR=VAL, the variableVARis set toVAL. Before being set, however,VALwill undergo simple variable substitution using the Pythonstring.Templateclass. This simple substitution supports the following syntax:
$$is an escape; it is replaced with$
$varwill substitutevarfrom the current environment, falling back to the process environment. An error will be thrown if environment variablevaris not set.
${var}is equivalent to$varAdvanced parameter substitution is not allowed, e.g.
${var:-foo}will raise an error.
VALmay also contain a mustache template, in which case the template will be substituted in the job shell with the corresponding value before launching job tasks. See `MUSTACHE TEMPLATES`_ for more information.
- Examples:
PATH=/bin,PATH=$PATH:/bin,FOO=${BAR}something,PATH=${PATH}:/{{tmpdir}}/binOtherwise, the rule is considered a pattern from which to match variables from the process environment if they do not exist in the generated environment. E.g.
PATHwill exportPATHfrom the current environment (if it has not already been set in the generated environment), andOMP*would copy all environment variables that start withOMPand are not already set in the generated environment. It is important to note that if the pattern does not match any variables, then the rule is a no-op, i.e. an error is not generated.
- Examples:
PATH,FLUX_*_PATH,/^OMP.*/
Since we always starts with a copy of the current environment,
the default implicit rule is * (or --env=*). To start with an
empty environment instead, the -* rule or --env-remove=* option
should be used. For example, the following will only export the current
PATH to a job:
flux run --env-remove=* --env=PATH ...
Since variables can be expanded from the currently built environment, and
--env options are applied in the order they are used, variables can
be composed on the command line by multiple invocations of --env,
e.g.:
flux run --env-remove=* \
--env=PATH=/bin --env='PATH=$PATH:/usr/bin' ...
Note that care must be taken to quote arguments so that $PATH is not
expanded by the shell.
This works particularly well when specifying rules in a file:
-*
OMP*
FOO=bar
BAR=${FOO}/baz
The above file would first clear the environment, then copy all variables
starting with OMP from the current environment, set FOO=bar,
and then set BAR=bar/baz.
PROCESS RESOURCE LIMITS
By default these commands propagate some common resource limits (as described
in getrlimit(2)) to the job by setting the rlimit job shell
option in jobspec. The set of resource limits propagated can be controlled
via the --rlimit=RULE option:
- --rlimit=RULE
Control how process resource limits are propagated with RULE. Rules are applied in the order in which they are used on the command line. This option may be used multiple times.
The --rlimit rules work similar to the --env option rules:
If a rule begins with
-, then the rest of the rule is a name or glob(7) pattern which removes matching resource limits from the set to propagate.
- Example:
-*disables propagation of all resource limits.If a rule is of the form
LIMIT=VALUEthen LIMIT is explicitly set to VALUE. If VALUE isunlimited,infinityorinf, then the value is set toRLIM_INFINITY(no limit).
- Example:
nofile=1024overrides the currentRLIMIT_NOFILElimit to 1024.Otherwise, RULE is considered a pattern from which to match resource limits and propagate the current limit to the job, e.g.
--rlimit=memlockwill propagate
RLIMIT_MEMLOCK(which is not in the list of limits that are propagated by default).
We start with a default list of resource limits to propagate,
then applies all rules specified via --rlimit on the command line.
Therefore, to propagate only one limit, -* should first be used to
start with an empty set, e.g. --rlimit=-*,core will only propagate
the core resource limit.
The set of resource limits propagated by default includes all those except
memlock, ofile, msgqueue, nice, rtprio, rttime,
and sigpending. To propagate all possible resource limits, use
--rlimit=*.
EXIT STATUS
The job exit status is normally the batch script exit status. This result is stored in the KVS.
OTHER OPTIONS
- --cwd=DIRECTORY
Set job working directory.
- --urgency=N
Specify job urgency. N has a range of 0 to 16 for guest users, 0 to 31 for instance owners, and a default value of 16. In addition to numerical values, the following special names are accepted:
- hold (0)
Hold the job until the urgency is raised with
flux job urgency.- default (16)
The default urgency for all users.
- expedite (31)
Assign the highest possible priority to the job (restricted to instance owner).
Urgency is one factor used to calculate job priority, which affects the order in which the scheduler considers jobs. By default, priority is calculated from the urgency and the time elapsed since job submission. This calculation may be overridden by configuration. For example, in a multi-user Flux instance with the Flux accounting priority plugin loaded, the calculation includes other factors such as past usage and bank allocations.
A job with an urgency value of 0 is treated specially: it is never considered by the scheduler and is effectively held. Similarly, a job with an urgency of 31 is always assigned the maximum priority, regardless of other factors and is considered expedited.
flux jobs -o depslists jobs with urgency and priority fields.
- -v, --verbose
Increase verbosity on stderr. For example, currently
flux run -vdisplays jobid,-vvdisplays job events, and-vvvdisplays exec events.flux alloc -vforces the command to print the submitted jobid on stderr. The specific output may change in the future.
- -o, --setopt=KEY[=VAL]
Set shell option. Keys may include periods to denote hierarchy. VAL is optional and may be valid JSON (bare values, objects, or arrays), otherwise VAL is interpreted as a string. If VAL is not set, then the default value is 1. See SHELL OPTIONS below.
- -S, --setattr=KEY[=VAL]
Set jobspec attribute. Keys may include periods to denote hierarchy. If KEY does not begin with
system.,user., or., thensystem.is assumed. VAL is optional and may be valid JSON (bare values, objects, or arrays), otherwise VAL is interpreted as a string. If VAL is not set, then the default value is 1. If KEY starts with a^character, then VAL is interpreted as a file, which must be valid JSON, to use as the attribute value.
- --add-file=[NAME[:PERMS]=]ARG
Add a file to the RFC 37 file archive in jobspec before submission. Both the file metadata and content are stored in the archive, so modification or deletion of a file after being processed by this option will have no effect on the job. If no
NAMEis provided, thenARGis assumed to be the path to a local file and the basename of the file will be used asNAME. Otherwise, ifARGcontains a newline, then it is assumed to be the raw file data to encode. IfPERMSis provided and is a valid octal integer, then this will override the default file permissions of 0600. The file will be extracted by the job shell into the job temporary directory and may be referenced as{{tmpdir}}/NAMEon the command line, or$FLUX_JOB_TMPDIR/NAMEin a batch script. This option may be specified multiple times to encode multiple files. Note: As documented in RFC 14, the file namesscriptandconf.jsonare both reserved.Note
This option should only be used for small files such as program input parameters, configuration, scripts, and so on. For broadcast of large files, binaries, and directories, the flux-shell(1)
stage-inplugin will be more appropriate.
- --begin-time=+FSD|DATETIME
Convenience option for setting a
begin-timedependency for a job. The job is guaranteed to start after the specified date and time. If argument begins with a+character, then the remainder is considered to be an offset in Flux standard duration (RFC 23), otherwise, any datetime expression accepted by the Python parsedatetime module is accepted, e.g.2021-06-21 8am,in an hour,tomorrow morning, etc.
- --signal=SIG@TIME
Send signal
SIGto jobTIMEbefore the job time limit.SIGcan specify either an integer signal number or a full or abbreviated signal name, e.g.SIGUSR1orUSR1or10.TIMEis specified in Flux Standard Duration, e.g.30for 30s or1hfor 1 hour. Either parameter may be omitted, with defaults ofSIGUSR1and 60s. For example,--signal=USR2will sendSIGUSR2to the job 60 seconds before expiration, and--signal=@3mwill sendSIGUSR13 minutes before expiration. Note that ifTIMEis greater than the remaining time of a job as it starts, the job will be signaled immediately.Note
A signal sent to a batch job is delivered to both the batch script and any running jobs. If the script does not handle the signal it may exit first, terminating the batch job early. It is recommended to use a
trapin the script to allow running jobs to handle the signal and exit cleanly.The default behavior is to not send any warning signal to jobs.
- --dry-run
Don't actually submit job. Just emit jobspec on stdout and exit for
run,submit,alloc, andbatch. Forbulksubmit, emit a line of output including relevant options for each job which would have been submitted,
- --debug
Enable job debug events, primarily for debugging Flux itself. The specific effects of this option may change in the future.
- --conf=FILE|KEY=VAL|STRING|NAME
The
--confoption allows configuration for a Flux instance started viaflux-batch(1)orflux-alloc(1)to be iteratively built on the command line. On first use, aconf.jsonentry is added to the internal jobspec file archive, and-c{{tmpdir}}/conf.jsonis added to the flux broker command line. Each subsequent use of the--confoption updates this configuration.The argument to
--confmay be in one of several forms:A multiline string, e.g. from a batch directive. In this case the string is parsed as JSON or TOML:
# flux: --conf=""" # flux: [resource] # flux: exclude = "0" # flux: """
A string containing a
=character, in which case the argument is parsed asKEY=VAL, whereVALis parsed as JSON, e.g.:--conf=resource.exclude=\"0\"
A string ending in
.jsonor.toml, in which case configuration is loaded from a JSON or TOML file.If none of the above conditions match, then the argument
NAMEis assumed to refer to a "named" config fileNAME.tomlorNAME.jsonwithin the following search path, in order of precedence:XDG_CONFIG_HOME/flux/configor$HOME/.config/flux/configifXDG_CONFIG_HOMEis not set$XDG_CONFIG_DIRS/flux/configor/etc/xdg/flux/configifXDG_CONFIG_DIRSis not set. Note thatXDG_CONFIG_DIRSmay be a colon-separated path.
- --bg
(alloc only) Do not interactively attach to the instance. Instead, print jobid on stdout once the instance is ready to accept jobs. The instance will run indefinitely until a time limit is reached, the job is canceled, or it is shutdown with
flux shutdown JOBID(preferred). If a COMMAND is given then the job will run until COMMAND completes. Note thatflux job attach JOBIDcannot be used to interactively attach to the job (though it will print any errors or output).
- --broker-opts=OPT
Pass specified options to the Flux brokers of the new instance. This option may be specified multiple times.
- --wrap
(batch only) The
--wrapoption wraps the specified COMMAND and ARGS in a shell script, by prefixing with#!/bin/sh. If no COMMAND is present, then a SCRIPT is read on stdin and wrapped in a /bin/sh script.
- --dump=[FILE]
When the job script is complete, archive the Flux instance's KVS content to
FILE, which should have a suffix known to libarchive(3), and may be a mustache template as described above for--output. The content may be unarchived directly or examined within a test instance started with theflux-start --recoveryoption. IfFILEis unspecified,flux-{{jobid}}-dump.tgzis used.
- --quiet
Suppress logging of jobids to stdout
SHELL OPTIONS
Some options that affect the parallel runtime environment of the Flux instance started by flux alloc are provided by the Flux shell. These options are described in detail in flux-shell-options(7). A list of the most commonly needed options follows.
Usage: flux alloc -o NAME[=ARG].
Name |
Description |
|---|---|
Set task affinity to cores
( |
|
Set task affinity to GPUs ( |
|
Increase shell log verbosity (1 or 2). |
|
Don't run each task in its own process group. |
|
Set PMI service(s) for launched programs ( |
|
Copy files previously mapped with flux-archive(1) to
|
|
Enable a pty on rank 0 for flux job attach. |
|
Start fatal job exception timer after first task exits
( |
|
Raise a fatal job exception immediately if first task exits with nonzero exit code. |
|
Write hwloc XML gathered by job to a file and set |
|
With |
|
Set KVS input limit to SIZE bytes, where SIZE may be a floating point
value including optional SI units: k, K, M, G. If this limit is
exceeded, a fatal job exception is raised. This value is ignored
if input is directed from a file with |
|
Set KVS output limit to SIZE bytes, where SIZE may be a floating point
value including optional SI units: k, K, M, G. This value is ignored
if output is directed to a file with |
|
Set the open mode for output files to either "truncate" or "append". The default is "truncate". |
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
SEE ALSO
flux-run(1), flux-submit(1), flux-batch(1), flux-bulksubmit(1), flux-environment(7)