Skip to content
Snippets Groups Projects
Commit b0bc270b authored by Morris Jette's avatar Morris Jette
Browse files

Disable sstat command on Cray and Bluegene systems

parent 1d90cd35
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,8 @@ have, for instance, the 4th nodeboard populated instead of the 1st.
<p>The normal set of SLURM user tools: <i>sbatch</i>, <i>scancel</i>,
<i>sinfo</i>, <i>squeue</i>, and <i>scontrol</i> provide all of the expected
services except support for job steps, which is detailed later.</p>
services except support for job steps, which is detailed later.
The sstat command is not supported on Cray systems.</p>
<p>Seven job submission options are available exclusively on BlueGene systems:</p>
<table>
......@@ -866,6 +867,6 @@ scheduling logic, etc. </p>
<p class="footer"><a href="#top">top</a></p>
<p style="text-align:center;">Last modified 8 August 2012</p>
<p style="text-align:center;">Last modified 7 November 2012</p>
<!--#include virtual="footer.txt"-->
......@@ -154,12 +154,14 @@ file. This option is set with RPMs from Cray.</p>
<p>Cray/ALPS node ordering is a topic of ongoing work, some information can be found in the CUG-2010 paper
"<i>ALPS, Topology, and Performance</i>" by Carl Albing and Mark Baker.</p>
<h3>The scancel command and signalling jobs</h3>
On Cray systems, all signals <b>except</b>
SIGCHLD, SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, or SIGWINCH
cause the ALPS reservation to be released.
<h3>Other Command Differences</h3>
<p>On Cray systems, all signals sent to the job using the scancel command
<b>except</b> SIGCHLD, SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, or
SIGWINCH cause the ALPS reservation to be released.
The job however will not be terminated except in the case of SIGKILL and
may then be used for post processing.
may then be used for post processing.</p>
<p>The sstat command is not supported on Cray systems.</p>
<h3>GPU Use</h3>
......
......@@ -32,10 +32,14 @@ For the non\-root user, the
output is limited to the user's jobs.
.PP
Note: the
NOTE: The
.BR "sstat "
command requires that the \f3jobacct_gather\fP plugin be installed and
operational.
.PP
NOTE: The
.BR "sstat "
command is not supported on Cray or IBM BlueGene systems.
.TP
\f3\-a\fP\f3,\fP \f3\-\-allsteps\fP
......
......@@ -171,6 +171,15 @@ int main(int argc, char **argv)
uint32_t stepid = 0;
slurmdb_selected_step_t *selected_step = NULL;
#ifdef HAVE_CRAY
error("The sstat command is not supported on Cray systems");
return 1;
#endif
#ifdef HAVE_BG
error("The sstat command is not supported on IBM BlueGene systems");
return 1;
#endif
print_fields_list = list_create(NULL);
print_fields_itr = list_iterator_create(print_fields_list);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment