13647: Merge branch 'master' into 13647-keepstore-config
[arvados.git] / doc / install / install-keepstore.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Install Keepstore servers
5 ...
6 {% comment %}
7 Copyright (C) The Arvados Authors. All rights reserved.
8
9 SPDX-License-Identifier: CC-BY-SA-3.0
10 {% endcomment %}
11
12 Keepstore provides access to underlying storage for reading and writing content-addressed blocks, with enforcement of Arvados permissions.  Keepstore supports a variety of cloud object storage and POSIX filesystems for its backing store.
13
14 We recommend starting off with two Keepstore servers.  Exact server specifications will be site and workload specific, but in general keepstore will be I/O bound and should be set up to maximize aggregate bandwidth with compute nodes.  To increase capacity (either space or throughput) it is straightforward to add additional servers, or (in cloud environments) to increase the machine size of the existing servers.
15
16 By convention, we use the following hostname pattern:
17
18 <div class="offset1">
19 table(table table-bordered table-condensed).
20 |_Hostname_|
21 |keep0.@uuid_prefix@.your.domain|
22 |keep1.@uuid_prefix@.your.domain|
23 </div>
24
25 Keepstore servers should not be directly accessible from the Internet (they are accessed via "keepproxy":install-keepproxy.html), so the hostnames only need to resolve on the private network.
26
27 h2. Install Keepstore
28
29 On Debian-based systems:
30
31 <notextile>
32 <pre><code>~$ <span class="userinput">sudo apt-get install keepstore</span>
33 </code></pre>
34 </notextile>
35
36 On Red Hat-based systems:
37
38 <notextile>
39 <pre><code>~$ <span class="userinput">sudo yum install keepstore</span>
40 </code></pre>
41 </notextile>
42
43 Verify that Keepstore is functional:
44
45 <notextile>
46 <pre><code>~$ <span class="userinput">keepstore --version</span>
47 </code></pre>
48 </notextile>
49
50 h3. Create a superuser token
51
52 If you haven't already done so, create a superuser token.
53
54 {% include 'create_superuser_token' %}
55
56 h3. Update cluster config file
57
58 Add or update the following sections of @/etc/arvados/config.yml@ as needed. Refer to the examples and comments in the "default config.yml file":{{site.baseurl}}/admin/config.html for more information.
59
60 <notextile>
61 <pre><code>Clusters:
62   <span class="userinput">uuid_prefix</span>:
63     SystemRootToken: zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
64     Services:
65       Keepstore:
66         InternalURLs:
67           "http://<span class="userinput">keep0.uuid_prefix.your.domain</span>:25107/": {}
68     API:
69       MaxKeepBlockBuffers: 128
70 </code></pre>
71 </notextile>
72 <pre>
73
74 h3. Notes on storage management
75
76 On its own, a keepstore server never deletes data.  The "keep-balance":install-keep-balance.html service determines which blocks are candidates for deletion and instructs the keepstore to move those blocks to the trash.
77
78 When a block is newly written, it is protected from deletion for the duration in @BlobSignatureTTL@.  During this time, it cannot be trashed.
79
80 If keep-balance instructs keepstore to trash a block which is older than @BlobSignatureTTL@, and @EnableDelete@ is true, the block will be moved to "trash".  A block which is in the trash is no longer accessible by read requests, but has not yet been permanently deleted.  Blocks which are in the trash may be recovered using the "untrash" API endpoint.  Blocks are permanently deleted after they have been in the trash for the duration in @TrashLifetime@.
81
82 Keep-balance is also responsible for balancing the distribution of blocks across keepstore servers by asking servers to pull blocks from other servers (as determined by their "storage class":{{site.baseurl}}/admin/storage-classes.html and "rendezvous hashing order":{{site.baseurl}}/api/storage.html).  Pulling a block makes a copy.  If a block is overreplicated (i.e. there are excess copies) after pulling, it will be subsequently trashed on the original server.
83
84 h3. Configure storage volumes
85
86 Available storage volume types include POSIX filesystems and cloud object storage.
87
88 * To use a POSIX filesystem, including both local filesystems (ext4, xfs) and network file system such as GPFS or Lustre, follow the setup instructions on "Filesystem storage":configure-fs-storage.html
89 * If you are using S3-compatible object storage (including Amazon S3, Google Cloud Storage, and Ceph RADOS), follow the setup instructions on "S3 Object Storage":configure-s3-object-storage.html
90 * If you are using Azure Blob Storage, follow the setup instructions on "Azure Blob Storage":configure-azure-blob-storage.html
91
92 h2. Run keepstore as a supervised service
93
94 h3. Start the service (option 1: systemd)
95
96 If your system does not use systemd, skip this section and follow the "runit instructions":#runit instead.
97
98 If your system uses systemd, the keepstore service should already be set up. Restart it to read the updated configuration, and check its status:
99
100 <notextile>
101 <pre><code>~$ <span class="userinput">sudo systemctl restart keepstore</span>
102 ~$ <span class="userinput">sudo systemctl status keepstore</span>
103 &#x25cf; keepstore.service - Arvados Keep Storage Daemon
104    Loaded: loaded (/etc/systemd/system/keepstore.service; enabled; vendor preset: enabled)
105    Active: active (running) since Tue 2019-09-10 14:16:29 UTC; 1s ago
106      Docs: https://doc.arvados.org/
107  Main PID: 25465 (keepstore)
108     Tasks: 9 (limit: 4915)
109    CGroup: /system.slice/keepstore.service
110            └─25465 /usr/bin/keepstore
111 [...]
112 </code></pre>
113 </notextile>
114
115 h3. Run keepstore as a supervised service
116
117 Install runit to supervise the keepstore daemon.  {% include 'install_runit' %}
118
119 Install this script as the run script @/etc/sv/keepstore/run@ for the keepstore service:
120
121 <notextile>
122 <pre><code>#!/bin/sh
123
124 exec 2>&1
125 GOGC=10 exec keepstore
126 </code></pre>
127 </notextile>
128
129 h3. Set up additional servers
130
131 Repeat the above sections to prepare volumes and bring up supervised services on each Keepstore server you are setting up.
132
133 h3. Restart the API server and controller
134
135 After adding all of your keepstore servers to the Services section, make sure the cluster config file is up to date on the API server host, and restart the API server and controller processes to ensure the changes are applied.
136
137 <pre>
138 sudo systemctl restart nginx arvados-controller
139 </pre>
140
141 h3(#testing). Testing keep
142
143 Install the "Python SDK":{{site.baseurl}}/sdk/python/sdk-python.html
144
145 @ARVADOS_API_HOST@ and @ARVADOS_API_TOKEN@ must be set in the environment.
146
147 You should now be able to use @arv-put@ to upload collections and @arv-get@ to fetch collections:
148
149 <pre>
150 $ echo "hello world!" > hello.txt
151
152 $ arv-put --portable-data-hash hello.txt
153 2018-07-12 13:35:25 arvados.arv_put[28702] INFO: Creating new cache file at /home/example/.cache/arvados/arv-put/1571ec0adb397c6a18d5c74cc95b3a2a
154 0M / 0M 100.0% 2018-07-12 13:35:27 arvados.arv_put[28702] INFO:
155
156 2018-07-12 13:35:27 arvados.arv_put[28702] INFO: Collection saved as 'Saved at 2018-07-12 17:35:25 UTC by example@example'
157 59389a8f9ee9d399be35462a0f92541c+53
158
159 $ arv-get 59389a8f9ee9d399be35462a0f92541c+53/hello.txt
160 hello world!
161 </pre>