Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / doc / install / crunch2-slurm / install-dispatch.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Install the SLURM dispatcher
5
6 ...
7 {% comment %}
8 Copyright (C) The Arvados Authors. All rights reserved.
9
10 SPDX-License-Identifier: CC-BY-SA-3.0
11 {% endcomment %}
12
13 The SLURM dispatcher can run on any node that can submit requests to both the Arvados API server and the SLURM controller.  It is not resource-intensive, so you can run it on the API server node.
14
15 h2. Install the dispatcher
16
17 First, "add the appropriate package repository for your distribution":{{ site.baseurl }}/install/install-manual-prerequisites.html#repos.
18
19 On Red Hat-based systems:
20
21 <notextile>
22 <pre><code>~$ <span class="userinput">sudo yum install crunch-dispatch-slurm</span>
23 ~$ <span class="userinput">sudo systemctl enable crunch-dispatch-slurm</span>
24 </code></pre>
25 </notextile>
26
27 On Debian-based systems:
28
29 <notextile>
30 <pre><code>~$ <span class="userinput">sudo apt-get install crunch-dispatch-slurm</span>
31 </code></pre>
32 </notextile>
33
34 h2. Create a dispatcher token
35
36 Create an Arvados superuser token for use by the dispatcher. If you have multiple dispatch processes, you should give each one a different token.
37
38 {% include 'create_superuser_token' %}
39
40 h2. Configure the dispatcher
41
42 Set up crunch-dispatch-slurm's configuration directory:
43
44 <notextile>
45 <pre><code>~$ <span class="userinput">sudo mkdir -p /etc/arvados</span>
46 ~$ <span class="userinput">sudo install -d -o root -g <b>crunch</b> -m 0750 /etc/arvados/crunch-dispatch-slurm</span>
47 </code></pre>
48 </notextile>
49
50 Edit @/etc/arvados/crunch-dispatch-slurm/crunch-dispatch-slurm.yml@ to authenticate to your Arvados API server, using the token you generated in the previous step.  Follow this YAML format:
51
52 <notextile>
53 <pre><code class="userinput">Client:
54   APIHost: <b>zzzzz.arvadosapi.com</b>
55   AuthToken: <b>zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz</b>
56 </code></pre>
57 </notextile>
58
59 This is the only configuration required by crunch-dispatch-slurm.  The subsections below describe optional configuration flags you can set inside the main configuration object.
60
61 h3(#KeepServiceURIs). Client::KeepServiceURIs
62
63 Override Keep service discovery with a predefined list of Keep URIs. This can be useful if the compute nodes run a local keepstore that should handle all Keep traffic. Example:
64
65 <notextile>
66 <pre><code class="userinput">Client:
67   APIHost: zzzzz.arvadosapi.com
68   AuthToken: zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
69   KeepServiceURIs:
70   - <b>http://127.0.0.1:25107</b>
71 </code></pre>
72 </notextile>
73
74 h3(#PollPeriod). PollPeriod
75
76 crunch-dispatch-slurm polls the API server periodically for new containers to run.  The @PollPeriod@ option controls how often this poll happens.  Set this to a string of numbers suffixed with one of the time units @ns@, @us@, @ms@, @s@, @m@, or @h@.  For example:
77
78 <notextile>
79 <pre><code class="userinput">PollPeriod: <b>3m30s</b>
80 </code></pre>
81 </notextile>
82
83 h3(#PrioritySpread). PrioritySpread
84
85 crunch-dispatch-slurm adjusts the "nice" values of its SLURM jobs to ensure containers are prioritized correctly relative to one another. This option tunes the adjustment mechanism.
86 * If non-Arvados jobs run on your SLURM cluster, and your Arvados containers are waiting too long in the SLURM queue because their "nice" values are too high for them to compete with other SLURM jobs, you should use a smaller PrioritySpread value.
87 * If you have an older SLURM system that limits nice values to 10000, a smaller @PrioritySpread@ can help avoid reaching that limit.
88 * In other cases, a larger value is beneficial because it reduces the total number of adjustments made by executing @scontrol@.
89
90 The smallest usable value is @1@. The default value of @10@ is used if this option is zero or negative. Example:
91
92 <notextile>
93 <pre><code class="userinput">PrioritySpread: <b>1000</b>
94 </code></pre>
95 </notextile>
96
97 h3(#SbatchArguments). SbatchArguments
98
99 When crunch-dispatch-slurm invokes @sbatch@, you can add arguments to the command by specifying @SbatchArguments@.  You can use this to send the jobs to specific cluster partitions or add resource requests.  Set @SbatchArguments@ to an array of strings.  For example:
100
101 <notextile>
102 <pre><code class="userinput">SbatchArguments:
103 - <b>"--partition=PartitionName"</b>
104 </code></pre>
105 </notextile>
106
107 Note: If an argument is supplied multiple times, @slurm@ uses the value of the last occurrence of the argument on the command line.  Arguments specified through Arvados are added after the arguments listed in SbatchArguments.  This means, for example, an Arvados container with that specifies @partitions@ in @scheduling_parameter@ will override an occurrence of @--partition@ in SbatchArguments.  As a result, for container parameters that can be specified through Arvados, SbatchArguments can be used to specify defaults but not enforce specific policy.
108
109 h3(#CrunchRunCommand-cgroups). CrunchRunCommand: Dispatch to SLURM cgroups
110
111 If your SLURM cluster uses the @task/cgroup@ TaskPlugin, you can configure Crunch's Docker containers to be dispatched inside SLURM's cgroups.  This provides consistent enforcement of resource constraints.  To do this, use a crunch-dispatch-slurm configuration like the following:
112
113 <notextile>
114 <pre><code class="userinput">CrunchRunCommand:
115 - <b>crunch-run</b>
116 - <b>"-cgroup-parent-subsystem=memory"</b>
117 </code></pre>
118 </notextile>
119
120 The choice of subsystem ("memory" in this example) must correspond to one of the resource types enabled in SLURM's @cgroup.conf@. Limits for other resource types will also be respected.  The specified subsystem is singled out only to let Crunch determine the name of the cgroup provided by SLURM.  When doing this, you should also set "ReserveExtraRAM":#ReserveExtraRAM .
121
122 {% include 'notebox_begin' %}
123
124 Some versions of Docker (at least 1.9), when run under systemd, require the cgroup parent to be specified as a systemd slice.  This causes an error when specifying a cgroup parent created outside systemd, such as those created by SLURM.
125
126 You can work around this issue by disabling the Docker daemon's systemd integration.  This makes it more difficult to manage Docker services with systemd, but Crunch does not require that functionality, and it will be able to use SLURM's cgroups as container parents.  To do this, "configure the Docker daemon on all compute nodes":install-compute-node.html#configure_docker_daemon to run with the option @--exec-opt native.cgroupdriver=cgroupfs@.
127
128 {% include 'notebox_end' %}
129
130 h3(#CrunchRunCommand-network). CrunchRunCommand: Using host networking for containers
131
132 Older Linux kernels (prior to 3.18) have bugs in network namespace handling which can lead to compute node lockups.  This by is indicated by blocked kernel tasks in "Workqueue: netns cleanup_net".   If you are experiencing this problem, as a workaround you can disable use of network namespaces by Docker across the cluster.  Be aware this reduces container isolation, which may be a security risk.
133
134 <notextile>
135 <pre><code class="userinput">CrunchRunCommand:
136 - <b>crunch-run</b>
137 - <b>"-container-enable-networking=always"</b>
138 - <b>"-container-network-mode=host"</b>
139 </code></pre>
140 </notextile>
141
142 h3(#MinRetryPeriod). MinRetryPeriod: Rate-limit repeated attempts to start containers
143
144 If SLURM is unable to run a container, the dispatcher will submit it again after the next PollPeriod. If PollPeriod is very short, this can be excessive. If MinRetryPeriod is set, the dispatcher will avoid submitting the same container to SLURM more than once in the given time span.
145
146 <notextile>
147 <pre><code class="userinput">MinRetryPeriod: <b>30s</b>
148 </code></pre>
149 </notextile>
150
151 h3(#ReserveExtraRAM). ReserveExtraRAM: Extra RAM for jobs
152
153 Extra RAM to reserve (in bytes) on each SLURM job submitted by Arvados, which is added to the amount specified in the container's @runtime_constraints@.  If not provided, the default value is zero.  Helpful when using @-cgroup-parent-subsystem@, where @crunch-run@ and @arv-mount@ share the control group memory limit with the user process.  In this situation, at least 256MiB is recommended to accomodate each container's @crunch-run@ and @arv-mount@ processes.
154
155 <notextile>
156 <pre><code class="userinput">ReserveExtraRAM: <b>268435456</b>
157 </code></pre>
158 </notextile>
159
160 h2. Restart the dispatcher
161
162 {% include 'notebox_begin' %}
163
164 The crunch-dispatch-slurm package includes configuration files for systemd.  If you're using a different init system, you'll need to configure a service to start and stop a @crunch-dispatch-slurm@ process as desired.  The process should run from a directory where the @crunch@ user has write permission on all compute nodes, such as its home directory or @/tmp@.  You do not need to specify any additional switches or environment variables.
165
166 {% include 'notebox_end' %}
167
168 Restart the dispatcher to run with your new configuration:
169
170 <notextile>
171 <pre><code>~$ <span class="userinput">sudo systemctl restart crunch-dispatch-slurm</span>
172 </code></pre>
173 </notextile>