lsfcmd                  package:nws                  R Documentation

_S_l_e_i_g_h _A_u_x_i_l_i_a_r_y _F_u_n_c_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     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.

_U_s_a_g_e:

     lsfcmd(host, options)

_A_r_g_u_m_e_n_t_s:

    host: Name from the nodeList.  This is currently ignored.

 options: An environment or list.  This is currently ignored.

_D_e_t_a_i_l_s:

     lsfcmd simply returns the value "bsub".

_V_a_l_u_e:

     The character mode vector c('bsub').

_N_o_t_e:

     lsfcmd is not intended to be called by the user. It is called by
     the sleigh constructor when specified via the sleigh launch
     argument.  You may want to execute it when debugging your sleigh
     option settings, but that can also be accomplished by setting the
     sleigh verbose argument to TRUE.

_S_e_e _A_l_s_o:

     'sleigh'

_E_x_a_m_p_l_e_s:

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

