9945: More changes based on review comments.
[arvados.git] / doc / admin / upgrading.html.textile.liquid
1 ---
2 layout: default
3 navsection: admin
4 title: "Upgrading Arvados and Release notes"
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 What you need to know and do in order to upgrade your Arvados installation.
14
15 h2. General process
16
17 # Wait for the cluster to be idle and stop Arvados services.
18 # Install new packages using @apt-get upgrade@ or @yum upgrade@.
19 # Package installation scripts will perform any necessary data migrations.
20 # Consult upgrade notes below to see if any manual configuration updates are necessary.
21 # Restart Arvados services.
22
23 h2. Upgrade notes
24
25 Some versions introduce changes that require special attention when upgrading: e.g., there is a new service to install, or there is a change to the default configuration that you might need to override in order to preserve the old behavior.
26
27 {% comment %}
28 Note to developers: Add new items at the top. Include the date, issue number, commit, and considerations/instructions for those about to upgrade.
29
30 TODO: extract this information based on git commit messages and generate changelogs / release notes automatically.
31 {% endcomment %}
32
33 h3. current master branch
34
35 h4. Python packaging change
36
37 As part of story "#9945":https://dev.arvados.org/issues/9945, the distribution packaging (deb/rpm) of our Python packages has changed. These packages now include a built-in virtualenv to reduce dependencies on system packages. We have also stopped packaging and publishing backports for all the Python dependencies of our packages, as they are no longer needed.
38
39 One practical consequence of this change is that the use of the Arvados Python SDK (aka "import arvados") will require a tweak if the SDK was installed from a distribution package. It now requires the loading of the virtualenv environment from our packages. The "Install documentation for the Arvados Python SDK":/sdk/python/sdk-python.html reflects this change. This does not affect the use of the command line tools (e.g. arv-get, etc.).
40
41 Python scripts that rely on the distribution Arvados Python SDK packages to import the Arvados SDK will need to be tweaked to load the correct Python environment.
42
43 This can be done by activating the virtualenv outside of the script:
44
45 <notextile>
46 <pre>~$ <code class="userinput">source /usr/share/python2.7/dist/python-arvados-python-client/bin/activate</code>
47 (python-arvados-python-client) ~$ <code class="userinput">path-to-the-python-script</code>
48 </pre>
49 </notextile>
50
51 Or alternatively, by updating the shebang line at the start of the script to:
52
53 <notextile>
54 <pre>
55 #!/usr/share/python2.7/dist/python-arvados-python-client/bin/python
56 </pre>
57 </notextile>
58
59 h3. v1.2.1 (2018-11-26)
60
61 There are no special upgrade notes for this release.
62
63 h3. v1.2.0 (2018-09-05)
64
65 h4. Regenerate Postgres table statistics
66
67 It is recommended to regenerate the table statistics for Postgres after upgrading to v1.2.0. If autovacuum is enabled on your installation, this script would do the trick:
68
69 <pre>
70 #!/bin/bash
71
72 set -e
73 set -u
74
75 tables=`echo "\dt" | psql arvados_production | grep public|awk -e '{print $3}'`
76
77 for t in $tables; do
78     echo "echo 'analyze $t' | psql arvados_production"
79     time echo "analyze $t" | psql arvados_production
80 done
81 </pre>
82
83 If you also need to do the vacuum, you could adapt the script to run 'vacuum analyze' instead of 'analyze'.
84
85 h4. New component: arvados-controller
86
87 Commit "db5107dca":https://dev.arvados.org/projects/arvados/repository/revisions/db5107dca adds a new system service, arvados-controller. More detail is available in story "#13496":https://dev.arvados.org/issues/13497.
88
89 To add the Arvados Controller to your system please refer to the "installation instructions":../install/install-controller.html after upgrading your system to 1.2.0.
90
91 Verify your setup by confirming that API calls appear in the controller's logs (_e.g._, @journalctl -fu arvados-controller@) while loading a workbench page.
92
93 h3. v1.1.4 (2018-04-10)
94
95 h4. arvados-cwl-runner regressions (2018-04-05)
96
97 <strong>Secondary files missing from toplevel workflow inputs</strong>
98
99 This only affects workflows that rely on implicit discovery of secondaryFiles.
100
101 If a workflow input does not declare @secondaryFiles@ corresponding to the @secondaryFiles@ of workflow steps which use the input, the workflow would inconsistently succeed or fail depending on whether the input values were specified as local files or referenced an existing collection (and whether the existing collection contained the secondary files or not).  To ensure consistent behavior, the workflow is now required to declare in the top level workflow inputs any secondaryFiles that are expected by workflow steps.
102
103 As an example, the following workflow will fail because the @toplevel_input@ does not declare the @secondaryFiles@ that are expected by @step_input@:
104
105 <pre>
106 class: Workflow
107 cwlVersion: v1.0
108 inputs:
109   toplevel_input: File
110 outputs: []
111 steps:
112   step1:
113     in:
114       step_input: toplevel_input
115     out: []
116     run:
117       id: sub
118       class: CommandLineTool
119       inputs:
120         step_input:
121           type: File
122           secondaryFiles:
123             - .idx
124       outputs: []
125       baseCommand: echo
126 </pre>
127
128 When run, this produces an error like this:
129
130 <pre>
131 cwltool ERROR: [step step1] Cannot make job: Missing required secondary file 'hello.txt.idx' from file object: {
132     "basename": "hello.txt",
133     "class": "File",
134     "location": "keep:ade9d0e032044bd7f58daaecc0d06bc6+51/hello.txt",
135     "size": 0,
136     "nameroot": "hello",
137     "nameext": ".txt",
138     "secondaryFiles": []
139 }
140 </pre>
141
142 To fix this error, add the appropriate @secondaryFiles@ section to @toplevel_input@
143
144 <notextile>
145 <pre><code>class: Workflow
146 cwlVersion: v1.0
147 inputs:
148   <span class="userinput">toplevel_input:
149     type: File
150     secondaryFiles:
151       - .idx</span>
152 outputs: []
153 steps:
154   step1:
155     in:
156       step_input: toplevel_input
157     out: []
158     run:
159       id: sub
160       class: CommandLineTool
161       inputs:
162         step_input:
163           type: File
164           secondaryFiles:
165             - .idx
166       outputs: []
167       baseCommand: echo
168 </code></pre>
169 </notextile>
170
171 This bug has been fixed in Arvados release v1.2.0.
172
173 <strong>Secondary files on default file inputs</strong>
174
175 @File@ inputs that have default values and also expect @secondaryFiles@ and will fail to upload default @secondaryFiles@.  As an example, the following case will fail:
176
177 <pre>
178 class: CommandLineTool
179 inputs:
180   step_input:
181     type: File
182     secondaryFiles:
183       - .idx
184     default:
185       class: File
186       location: hello.txt
187 outputs: []
188 baseCommand: echo
189 </pre>
190
191 When run, this produces an error like this:
192
193 <pre>
194 2018-05-03 10:58:47 cwltool ERROR: Unhandled error, try again with --debug for more information:
195   [Errno 2] File not found: u'hello.txt.idx'
196 </pre>
197
198 To fix this, manually upload the primary and secondary files to keep and explicitly declare @secondaryFiles@ on the default primary file:
199
200 <notextile>
201 <pre><code>class: CommandLineTool
202 inputs:
203   step_input:
204     type: File
205     secondaryFiles:
206       - .idx
207     <span class="userinput">default:
208       class: File
209       location: keep:4d8a70b1e63b2aad6984e40e338e2373+69/hello.txt
210       secondaryFiles:
211        - class: File
212          location: keep:4d8a70b1e63b2aad6984e40e338e2373+69/hello.txt.idx</span>
213 outputs: []
214 baseCommand: echo
215 </code></pre>
216 </notextile>
217
218 This bug has been fixed in Arvados release v1.2.0.
219
220 h3. v1.1.3 (2018-02-08)
221
222 There are no special upgrade notes for this release.
223
224 h3. v1.1.2 (2017-12-22)
225
226 h4. The minimum version for Postgres is now 9.4 (2017-12-08)
227
228 As part of story "#11908":https://dev.arvados.org/issues/11908, commit "8f987a9271":https://dev.arvados.org/projects/arvados/repository/revisions/8f987a9271 introduces a dependency on Postgres 9.4. Previously, Arvados required Postgres 9.3.
229
230 * Debian 8 (pg 9.4) and Debian 9 (pg 9.6) do not require an upgrade
231 * Ubuntu 16.04 (pg 9.5) does not require an upgrade
232 * Ubuntu 14.04 (pg 9.3) requires upgrade to Postgres 9.4: https://www.postgresql.org/download/linux/ubuntu/
233 * CentOS 7 and RHEL7 (pg 9.2) require upgrade to Postgres 9.4. It is necessary to migrate of the contents of your database: https://www.postgresql.org/docs/9.0/static/migration.html
234 *# Create a database backup using @pg_dump@
235 *# Install the @rh-postgresql94@ backport package from either Software Collections: http://doc.arvados.org/install/install-postgresql.html or the Postgres developers: https://www.postgresql.org/download/linux/redhat/
236 *# Restore from the backup using @psql@
237
238 h3. v1.1.1 (2017-11-30)
239
240 There are no special upgrade notes for this release.
241
242 h3. v1.1.0 (2017-10-24)
243
244 h4. The minimum version for Postgres is now 9.3 (2017-09-25)
245
246 As part of story "#12032":https://dev.arvados.org/issues/12032, commit "68bdf4cbb1":https://dev.arvados.org/projects/arvados/repository/revisions/68bdf4cbb1 introduces a dependency on Postgres 9.3. Previously, Arvados required Postgres 9.1.
247
248 * Debian 8 (pg 9.4) and Debian 9 (pg 9.6) do not require an upgrade
249 * Ubuntu 16.04 (pg 9.5) does not require an upgrade
250 * Ubuntu 14.04 (pg 9.3) is compatible, however upgrading to Postgres 9.4 is recommended: https://www.postgresql.org/download/linux/ubuntu/
251 * CentOS 7 and RHEL7 (pg 9.2) should upgrade to Postgres 9.4. It is necessary to migrate of the contents of your database: https://www.postgresql.org/docs/9.0/static/migration.html
252 *# Create a database backup using @pg_dump@
253 *# Install the @rh-postgresql94@ backport package from either Software Collections: http://doc.arvados.org/install/install-postgresql.html or the Postgres developers: https://www.postgresql.org/download/linux/redhat/
254 *# Restore from the backup using @psql@
255
256 h3. Older versions
257
258 h4. Upgrade slower than usual (2017-06-30)
259
260 As part of story "#11807":https://dev.arvados.org/issues/11807, commit "55aafbb":https://dev.arvados.org/projects/arvados/repository/revisions/55aafbb converts old "jobs" database records from YAML to JSON, making the upgrade process slower than usual.
261
262 * The migration can take some time if your database contains a substantial number of YAML-serialized rows (i.e., you installed Arvados before March 3, 2017 "660a614":https://dev.arvados.org/projects/arvados/repository/revisions/660a614 and used the jobs/pipelines APIs). Otherwise, the upgrade will be no slower than usual.
263 * The conversion runs as a database migration, i.e., during the deb/rpm package upgrade process, while your API server is unavailable.
264 * Expect it to take about 1 minute per 20K jobs that have ever been created/run.
265
266 h4. Service discovery overhead change in keep-web (2017-06-05)
267
268 As part of story "#9005":https://dev.arvados.org/issues/9005, commit "cb230b0":https://dev.arvados.org/projects/arvados/repository/revisions/cb230b0 reduces service discovery overhead in keep-web requests.
269
270 * When upgrading keep-web _or keepproxy_ to/past this version, make sure to update API server as well. Otherwise, a bad token in a request can cause keep-web to fail future requests until either keep-web restarts or API server gets upgraded.
271
272 h4. Node manager now has an http endpoint for management (2017-04-12)
273
274 As part of story "#11349":https://dev.arvados.org/issues/11349, commit "2c094e2":https://dev.arvados.org/projects/arvados/repository/revisions/2c094e2 adds a "management" http server to nodemanager.
275
276 * To enable it, add to your configuration file: <pre>[Manage]
277   address = 127.0.0.1
278   port = 8989</pre> (see example configuration files in source:services/nodemanager/doc or https://doc.arvados.org/install/install-nodemanager.html for more info)
279 * The server responds to @http://{address}:{port}/status.json@ with a summary of how many nodes are in each state (booting, busy, shutdown, etc.)
280
281 h4. New websockets component (2017-03-23)
282
283 As part of story "#10766":https://dev.arvados.org/issues/10766, commit "e8cc0d7":https://dev.arvados.org/projects/arvados/repository/revisions/e8cc0d7 replaces puma with arvados-ws as the recommended websocket server.
284 * See http://doc.arvados.org/install/install-ws.html for install/upgrade instructions.
285 * Remove the old puma server after the upgrade is complete. Example, with runit: <pre>
286 $ sudo sv down /etc/sv/puma
287 $ sudo rm -r /etc/sv/puma
288 </pre> Example, with systemd: <pre>
289 $ systemctl disable puma
290 $ systemctl stop puma
291 </pre>
292
293 h4. Change of database encoding for hashes and arrays (2017-03-06)
294
295 As part of story "#11168":https://dev.arvados.org/issues/11168, commit "660a614":https://dev.arvados.org/projects/arvados/repository/revisions/660a614 uses JSON instead of YAML to encode hashes and arrays in the database.
296
297 * Aside from a slight performance improvement, this should have no externally visible effect.
298 * Downgrading past this version is not supported, and is likely to cause errors. If this happens, the solution is to upgrade past this version.
299 * After upgrading, make sure to restart puma and crunch-dispatch-* processes.
300
301 h4. Docker image format compatibility check (2017-02-03)
302
303 As part of story "#10969":https://dev.arvados.org/issues/10969, commit "74a9dec":https://dev.arvados.org/projects/arvados/repository/revisions/74a9dec introduces a Docker image format compatibility check: the @arv keep docker@ command prevents users from inadvertently saving docker images that compute nodes won't be able to run.
304 * If your compute nodes run a version of *docker older than 1.10* you must override the default by adding to your API server configuration (@/etc/arvados/api/application.yml@): <pre><code class="yaml">docker_image_formats: ["v1"]</code></pre>
305 * Refer to the comments above @docker_image_formats@ in @/var/www/arvados-api/current/config/application.default.yml@ or source:services/api/config/application.default.yml or issue "#10969":https://dev.arvados.org/issues/10969 for more detail.
306 * *NOTE:* This does *not* include any support for migrating existing Docker images from v1 to v2 format. This will come later: for now, sites running Docker 1.9 or earlier should still *avoid upgrading Docker further than 1.9.*
307
308 h4. Debian and RPM packages now have systemd unit files (2016-09-27)
309
310 Several Debian and RPM packages -- keep-balance ("d9eec0b":https://dev.arvados.org/projects/arvados/repository/revisions/d9eec0b), keep-web ("3399e63":https://dev.arvados.org/projects/arvados/repository/revisions/3399e63), keepproxy ("6de67b6":https://dev.arvados.org/projects/arvados/repository/revisions/6de67b6), and arvados-git-httpd ("9e27ddf":https://dev.arvados.org/projects/arvados/repository/revisions/9e27ddf) -- now enable their respective components using systemd. These components prefer YAML configuration files over command line flags ("3bbe1cd":https://dev.arvados.org/projects/arvados/repository/revisions/3bbe1cd).
311
312 * On Debian-based systems using systemd, services are enabled automatically when packages are installed.
313 * On RedHat-based systems using systemd, unit files are installed but services must be enabled explicitly: e.g., <code>"sudo systemctl enable keep-web; sudo systemctl start keep-web"</code>.
314 * The new systemd-supervised services will not start up successfully until configuration files are installed in /etc/arvados/: e.g., <code>"Sep 26 18:23:55 62751f5bb946 keep-web[74]: 2016/09/26 18:23:55 open /etc/arvados/keep-web/keep-web.yml: no such file or directory"</code>
315 * To migrate from runit to systemd after installing the new packages, we recommend the following procedure:
316 *# Bring down the runit service: "sv down /etc/sv/keep-web"
317 *# Create a JSON configuration file (e.g., /etc/arvados/keep-web/keep-web.yml -- see "keep-web -help")
318 *# Ensure the service is running correctly under systemd: "systemctl status keep-web" / "journalctl -u keep-web"
319 *# Remove the runit service so it doesn't start at next boot
320 * Affected services:
321 ** keep-balance - /etc/arvados/keep-balance/keep-balance.yml
322 ** keep-web - /etc/arvados/keep-web/keep-web.yml
323 ** keepproxy - /etc/arvados/keepproxy/keepproxy.yml
324 ** arvados-git-httpd - /etc/arvados/arv-git-httpd/arv-git-httpd.yml
325
326 h4. Installation paths for Python modules and script changed (2016-05-31)
327
328 Commits "ae72b172c8":https://dev.arvados.org/projects/arvados/repository/revisions/ae72b172c8 and "3aae316c25":https://dev.arvados.org/projects/arvados/repository/revisions/3aae316c25 change the filesystem location where Python modules and scripts are installed.
329
330 * Previous packages installed these files to the distribution's preferred path under @/usr/local@ (or the equivalent location in a Software Collection).  Now they get installed to a path under @/usr@.  This improves compatibility with other Python packages provided by the distribution.  See "#9242":https://dev.arvados.org/issues/9242 for more background.
331 * If you simply import Python modules from scripts, or call Python tools relying on $PATH, you don't need to make any changes.  If you have hardcoded full paths to some of these files (e.g., in symbolic links or configuration files), you will need to update those paths after this upgrade.
332
333 h4. Crunchrunner package is required on compute and shell nodes (2016-04-25)
334
335 Commit "eebcb5e":https://dev.arvados.org/projects/arvados/repository/revisions/eebcb5e requires the crunchrunner package to be installed on compute nodes and shell nodes in order to run CWL workflows.
336
337 * On each Debian-based compute node and shell node, run: @sudo apt-get install crunchrunner@
338 * On each Red Hat-based compute node and shell node, run: @sudo yum install crunchrunner@
339
340 h4. Keep permission signature algorithm change (2016-04-21)
341
342 Commit "3c88abd":https://dev.arvados.org/projects/arvados/repository/revisions/3c88abd changes the Keep permission signature algorithm.
343
344 * All software components that generate signatures must be upgraded together. These are: keepstore, API server, keep-block-check, and keep-rsync. For example, if keepstore < 0.1.20160421183420 but API server >= 0.1.20160421183420, clients will not be able to read or write data in Keep.
345 * Jobs and client operations that are in progress during the upgrade (including arv-put's "resume cache") will fail.
346
347 h4. Workbench's "Getting Started" popup disabled by default (2015-01-05)
348
349 Commit "e1276d6e":https://dev.arvados.org/projects/arvados/repository/revisions/e1276d6e disables Workbench's "Getting Started" popup by default.
350
351 * If you want new users to continue seeing this popup, set @enable_getting_started_popup: true@ in Workbench's @application.yml@ configuration.
352
353 h4. Crunch jobs now have access to Keep-backed writable scratch storage (2015-12-03)
354
355 Commit "5590c9ac":https://dev.arvados.org/projects/arvados/repository/revisions/5590c9ac makes a Keep-backed writable scratch directory available in crunch jobs (see "#7751":https://dev.arvados.org/issues/7751)
356
357 * All compute nodes must be upgraded to arvados-fuse >= 0.1.2015112518060 because crunch-job uses some new arv-mount flags (--mount-tmp, --mount-by-pdh) introduced in merge "346a558":https://dev.arvados.org/projects/arvados/repository/revisions/346a558
358 * Jobs will fail if the API server (in particular crunch-job from the arvados-cli gem) is upgraded without upgrading arvados-fuse on compute nodes.
359
360 h4. Recommended configuration change for keep-web (2015-11-11)
361
362 Commit "1e2ace5":https://dev.arvados.org/projects/arvados/repository/revisions/1e2ace5 changes recommended config for keep-web (see "#5824":https://dev.arvados.org/issues/5824)
363
364 * proxy/dns/ssl config should be updated to route "https://download.uuid_prefix.arvadosapi.com/" requests to keep-web (alongside the existing "collections" routing)
365 * keep-web command line adds @-attachment-only-host download.uuid_prefix.arvadosapi.com@
366 * Workbench config adds @keep_web_download_url@
367 * More info on the (still beta/non-TOC-linked) "keep-web doc page":http://doc.arvados.org/install/install-keep-web.html
368
369 h4. Stopped containers are now automatically removed on compute nodes (2015-11-04)
370
371 Commit "1d1c6de":https://dev.arvados.org/projects/arvados/repository/revisions/1d1c6de removes stopped containers (see "#7444":https://dev.arvados.org/issues/7444)
372
373 * arvados-docker-cleaner removes _all_ docker containers as soon as they exit, effectively making @docker run@ default to @--rm@. If you run arvados-docker-cleaner on a host that does anything other than run crunch-jobs, and you still want to be able to use @docker start@, read the "new doc page":http://doc.arvados.org/install/install-compute-node.html to learn how to turn this off before upgrading.
374
375 h4. New keep-web service (2015-11-04)
376
377 Commit "21006cf":https://dev.arvados.org/projects/arvados/repository/revisions/21006cf adds a new keep-web service (see "#5824":https://dev.arvados.org/issues/5824).
378
379 * Nothing relies on keep-web yet, but early adopters can install it now by following http://doc.arvados.org/install/install-keep-web.html (it is not yet linked in the TOC).