Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
8ec368b0
Commit
8ec368b0
authored
15 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Update power save web page to actually show how to shutdown/restart nodes
parent
f83757ca
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/html/power_save.shtml
+23
-25
23 additions, 25 deletions
doc/html/power_save.shtml
with
23 additions
and
25 deletions
doc/html/power_save.shtml
+
23
−
25
View file @
8ec368b0
...
...
@@ -71,36 +71,34 @@ Multiple partitions may be specified using a comma separator.
By default, no nodes are excluded.</li>
</ul></p>
<p>While <i>SuspendProgram</i> and <i>ResumeProgram</i> execute as
<i>SlurmUser</i>. The program can take advantage of this to execute
programs directly on the nodes as user <i>root</i> through the
SLURM infrastructure.
Example scripts are shown below:
<p>Note that <i>SuspendProgram</i> and <i>ResumeProgram</i> execute as
<i>SlurmUser</i> on the node where the <i>slurmctld</i> daemon runs
(primary and backup server nodes).
Use of <i>sudo</i> may be required for <i>SlurmUser</i>to power down
and restart nodes.
If you need to convert SLURM's hostlist expression into individual node
names, the <i>scontrol show hostnames</i> command may prove useful.
The commands used to boot or shut down nodes will depend upon your
cluster management tools.</p>
<pre>
#!/bin/bash
# Example SuspendProgram for cluster where every node has two CPUs
srun --uid=0 --no-allocate --nodelist=$1 echo powersave >/sys/devices/system/cpu0/cpufreq
srun --uid=0 --no-allocate --nodelist=$1 echo powersave >/sys/devices/system/cpu1/cpufreq
# Example SuspendProgram
hosts=`scontrol show hostnames $1`
for host in "$hosts"
do
sudo node_shutdown $host
done
#!/bin/bash
# Example ResumeProgram for cluster where every node has two CPUs
srun --uid=0 --no-allocate --nodelist=$1 echo performance >/sys/devices/system/cpu0/cpufreq
srun --uid=0 --no-allocate --nodelist=$1 echo performance >/sys/devices/system/cpu1/cpufreq
# Example ResumeProgram
hosts=`scontrol show hostnames $1`
for host in "$hosts"
do
sudo node_startup $host
done
</pre>
<p>The srun --no-allocate option permits SlurmUser and user root only to spawn
tasks directly on the compute nodes without actually creating a SLURM job.
No other users have this permission (their requests will generate an invalid
credential error message and the event will be logged).
The srun --uid option permits SlurmUser and user root only to execute a job
as some other user.
Then SlurmUser uses the srun --uid option, the srun command will try to set
its user ID to that value in order to fully operate as the specified user.
This will fail and srun will report an error to that effect.
This does not prevent the spawned programs from running as user root.
No other users have this permission (their requests will generate an invalid
user id error message and the event will be logged).</p>
<p>The slurmctld daemon will periodically (every 10 minutes) log how many
nodes are in power save mode using messages of this sort:
<pre>
...
...
@@ -114,6 +112,6 @@ nodes are in power save mode using messages of this sort:
You can also configure SLURM without SuspendProgram or ResumeProgram values
to assess the potential impact of power saving mode before enabling it.</p>
<p style="text-align:center;">Last modified
13 November
200
8
</p>
<p style="text-align:center;">Last modified
4 May
200
9
</p>
<!--#include virtual="footer.txt"-->
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment