flux-exec(1)

SYNOPSIS

flux exec [--noinput] [--label-io] [—dir=DIR'] [--rank=NODESET] [--verbose] COMMANDS...

DESCRIPTION

flux-exec(1) runs commands across one or more flux-broker ranks using the broker.exec service. The commands are executed as direct children of the broker, and the broker handles buffering stdout and stderr and sends the output back to flux-exec(1) which copies output to its own stdout and stderr.

On receipt of SIGINT and SIGTERM signals, flux-exec(1) shall forward the received signal to all currently running remote processes.

In the event subprocesses are hanging or ignoring SIGINT, two SIGINT signals (typically sent via Ctrl+C) in short succession can force flux-exec(1) to exit.

flux-exec(1) is meant as an administrative and test utility, and cannot be used to launch Flux jobs.

EXIT STATUS

In the case that all processes are successfully launched, the exit status of flux-exec(1) is the largest of the remote process exit codes.

If a non-existent rank is targeted, flux-exec(1) will return with code 68 (EX_NOHOST from sysexits.h).

If one or more remote commands are terminated by a signal, then flux-exec(1) exits with exit code 128+signo.

OPTIONS

-l, --label-io

Label lines of output with the source RANK.

-n, --noinput

Do not attempt to forward stdin. Send EOF to remote process stdin.

-d, --dir=DIR

Set the working directory of remote COMMANDS to DIR. The default is to propagate the current working directory of flux-exec(1).

-r, --rank=NODESET

Target specific ranks in NODESET. Default is to target "all" ranks. See NODESET FORMAT below for more information.

-v, --verbose

Run with more verbosity.

-q, --quiet

Suppress extraneous output (e.g. per-rank error exit status).

NODESET FORMAT

A NODESET is a comma separated list of integer ranks. Ranks may be listed individually or as a range in the form l-k where l < k.

Some examples of nodesets.

``1''

rank 1

``0-3''

ranks 0, 1, 2, and 3 listed in a range

``0,1,2,3''

ranks 0, 1, 2, and 3 listed individually

``2,5''

ranks 2 and 5

``2,4-5''

ranks 2, 4, and 5

As a special case, the string ``all'' can be specified to indicate every rank available in the flux instance.

RESOURCES

Flux: http://flux-framework.org