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

Update burst buffer web page for pools

parent 1ee79524
No related branches found
No related tags found
No related merge requests found
...@@ -160,13 +160,20 @@ SLURM Job_id=12 Name=my_app Staged Out, StageOut time 00:05:07 ...@@ -160,13 +160,20 @@ SLURM Job_id=12 Name=my_app Staged Out, StageOut time 00:05:07
<u>burst_buffer/generic</u> plugins to create and delete persistent burst <u>burst_buffer/generic</u> plugins to create and delete persistent burst
buffers, which have a lifetime independent of the job.</p> buffers, which have a lifetime independent of the job.</p>
<ul> <ul>
<li>#BB create_persistent name=&lt;name&gt; capacity=&lt;number&gt; [access=&lt;access&gt;] [type=&lt;type&gt;]</li> <li>#BB create_persistent name=&lt;name&gt; capacity=&lt;number&gt;
[access=&lt;access&gt;] [pool=&lt;pool&gt; [type=&lt;type&gt;]</li>
<li>#BB destroy_persistent name=&lt;name&gt; [hurry]</li> <li>#BB destroy_persistent name=&lt;name&gt; [hurry]</li>
</ul> </ul>
<p>The persistent burst buffer name may not start with a numeric value (numeric <p>The persistent burst buffer name may not start with a numeric value (numeric
names are reserved for job-specific burst buffers). names are reserved for job-specific burst buffers).
The size specification can include a suffix of M, G, T, P, etc. for megabytes, The <b>capacity</b> (size) specification can include a suffix of M, G, T, P, etc.
gigabytes, terabytes, petabytes, etc. for megabytes, gigabytes, terabytes, petabytes, etc.
The <b>access</b> parameter identifies the buffer access mode. Supported access
modes for the burst_buffer/cray plugin include: striped, private, and ldbalance.
The <b>pool</b> parameter identifies the resource pool from in the burst buffer
should be created. The default and available pools are configuration dependent.
The <b>type</b> parameter identifies the buffer type. Supported type
modes for the burst_buffer/cray plugin include: cache and scratch.
Multiple persistent burst buffers may be created or deleted within a single Multiple persistent burst buffers may be created or deleted within a single
job. job.
A sample batch script follows:</p> A sample batch script follows:</p>
...@@ -205,6 +212,7 @@ Multiple directives should be space separated.</p> ...@@ -205,6 +212,7 @@ Multiple directives should be space separated.</p>
<li>capacity=&lt;number&gt;</li> <li>capacity=&lt;number&gt;</li>
<li>swap=&lt;number&gt;</li> <li>swap=&lt;number&gt;</li>
<li>type=&lt;type&gt;</li> <li>type=&lt;type&gt;</li>
<li>pool=&lt;name&gt;</li>
</ul> </ul>
<p>If a swap option is specified, the job must also specify the required <p>If a swap option is specified, the job must also specify the required
node count. node count.
...@@ -240,9 +248,9 @@ Name=generic DefaultPool=ssd Granularity=100G TotalSpace=50T UsedSpace=42T ...@@ -240,9 +248,9 @@ Name=generic DefaultPool=ssd Granularity=100G TotalSpace=50T UsedSpace=42T
StopStageIn=/usr/local/slurm/15.08/sbin/PSI StopStageIn=/usr/local/slurm/15.08/sbin/PSI
StopStageIn=/usr/local/slurm/15.08/sbin/PSO StopStageIn=/usr/local/slurm/15.08/sbin/PSO
Allocated Buffers: Allocated Buffers:
JobID=18 CreateTime=2015-08-19T16:46:05 Size=10T State=allocated UserID=alan(1000) JobID=18 CreateTime=2015-08-19T16:46:05 Pool=dwcache Size=10T State=allocated UserID=alan(1000)
JobID=20 CreateTime=2015-08-19T16:46:45 Size=10T State=allocated UserID=alan(1000) JobID=20 CreateTime=2015-08-19T16:46:45 Pool=dwcache Size=10T State=allocated UserID=alan(1000)
Name=DB1 CreateTime=2015-08-19T16:46:45 Size=22T State=allocated UserID=brenda(1001) Name=DB1 CreateTime=2015-08-19T16:46:45 Pool=dwcache Size=22T State=allocated UserID=brenda(1001)
Per User Buffer Use: Per User Buffer Use:
UserID=alan(1000) Used=20T UserID=alan(1000) Used=20T
UserID=brenda(1001) Used=22T UserID=brenda(1001) Used=22T
...@@ -253,11 +261,11 @@ Name=generic DefaultPool=ssd Granularity=100G TotalSpace=50T UsedSpace=42T ...@@ -253,11 +261,11 @@ Name=generic DefaultPool=ssd Granularity=100G TotalSpace=50T UsedSpace=42T
<p>Burst buffer resources can be placed in an advanced reservation using the <p>Burst buffer resources can be placed in an advanced reservation using the
<i>BurstBuffer</i> option. <i>BurstBuffer</i> option.
The argument consists of four elements:<br> The argument consists of four elements:<br>
[plugin:][type:]#[units]<br><br> [plugin:][pool:]#[units]<br><br>
<i>plugin</i> is the burst buffer plugin name, currently either "cray" or "generic". <i>plugin</i> is the burst buffer plugin name, currently either "cray" or "generic".
If no plugin is specified, the reservation applies to all configured burst If no plugin is specified, the reservation applies to all configured burst
buffer plugins.<br><br> buffer plugins.<br><br>
<i>type</i> specifies a Cray generic burst buffer resource, for example "nodes". <i>pool</i> specifies a Cray generic burst buffer resource pool.
if "type" is not specified, the number is a measure of storage space.<br><br> if "type" is not specified, the number is a measure of storage space.<br><br>
<i>units</i> may be "N" (nodes), "M" (megabytes), "G" (gigabytes), <i>units</i> may be "N" (nodes), "M" (megabytes), "G" (gigabytes),
"T" (terabytes), "P" (petabytes), etc. with the default units being bytes for "T" (terabytes), "P" (petabytes), etc. with the default units being bytes for
...@@ -277,6 +285,6 @@ $ scontrol create reservation StartTime=noon duration=60 \ ...@@ -277,6 +285,6 @@ $ scontrol create reservation StartTime=noon duration=60 \
BurstBuffer=cray:20G BurstBuffer=cray:20G
</pre> </pre>
<p style="text-align:center;">Last modified 28 November 2015</p> <p style="text-align:center;">Last modified 21 December 2015</p>
<!--#include virtual="footer.txt"--> <!--#include virtual="footer.txt"-->
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