Learn R Programming

nws (version 1.6.2)

lsfcmd: Sleigh Auxiliary Function

Description

This function is used by the sleigh constructor when starting workers on remote nodes using the LSF bsub command. Note that it doesn't actually start any workers directly: it simply returns the program name and arguments to start a worker on the specified node.

Usage

lsfcmd(host, options)

Arguments

host
Name from the nodeList. This is currently ignored.
options
An environment or list. This is currently ignored.

Value

  • The character mode vector c('bsub').

Details

lsfcmd simply returns the value "bsub".

See Also

sleigh

Examples

Run this code
# Create a sleigh with workers on nodes n1 and n2 started via lsf:
s <- sleigh(launch=lsfcmd, nodeList=rep('fake', 10))

Run the code above in your browser using DataLab