Merge branch 'master' into 2257-inequality-conditions
[arvados.git] / doc / user / topics / keep.html.textile.liquid
1 ---
2 layout: default
3 navsection: userguide
4 title: "How Keep works"
5 ...
6
7 In Keep, information is stored in *data blocks*.  Data blocks are normally between 1 byte and 64 megabytes in size.  If a file exceeds the maximum size of a single data block, the file will be split across multiple data blocks until the entire file can be stored.  These data blocks may be stored and replicated across multiple disks, servers, or clusters.  Each data block has its own identifier for the contents of that specific data block.
8
9 In order to reassemble the file, Keep stores a *collection* data block which lists in sequence the data blocks that make up the original file.  A collection data block may store the information for multiple files, including a directory structure.
10
11 In this example we will use @c1bad4b39ca5a924e481008009d94e32+210@ which we added to Keep in "the first Keep tutorial":{{ site.baseurl }}/users/tutorial/tutorial-keep.html.  First let us examine the contents of this collection using @arv keep get@:
12
13 <notextile>
14 <pre><code>~$ <span class="userinput">arv keep get c1bad4b39ca5a924e481008009d94e32+210</span>
15 . 204e43b8a1185621ca55a94839582e6f+67108864 b9677abbac956bd3e86b1deb28dfac03+67108864 fc15aff2a762b13f521baf042140acec+67108864 323d2a3ce20370c4ca1d3462a344f8fd+25885655 0:227212247:var-GS000016015-ASM.tsv.bz2
16 </code></pre>
17 </notextile>
18
19 The command @arv keep get@ fetches the contents of the locator @c1bad4b39ca5a924e481008009d94e32+210@.  This is a locator for a collection data block, so it fetches the contents of the collection.  In this example, this collection consists of a single file @var-GS000016015-ASM.tsv.bz2@ which is 227212247 bytes long, and is stored using four sequential data blocks, <code>204e43b8a1185621ca55a94839582e6f+67108864</code>, <code>b9677abbac956bd3e86b1deb28dfac03+67108864</code>, <code>fc15aff2a762b13f521baf042140acec+67108864</code>, <code>323d2a3ce20370c4ca1d3462a344f8fd+25885655</code>.
20
21 Let's use @arv keep get@ to download the first datablock:
22
23 notextile. <pre><code>~$ <span class="userinput">cd /scratch/<b>you</b></span>
24 /scratch/<b>you</b>$ <span class="userinput">arv keep get 204e43b8a1185621ca55a94839582e6f+67108864 &gt; block1</span></code></pre>
25
26 {% include 'notebox_begin' %}
27
28 When you run this command, you may get this API warning:
29
30 notextile. <pre><code>WARNING:root:API lookup failed for collection 204e43b8a1185621ca55a94839582e6f+67108864 (&lt;class 'apiclient.errors.HttpError'&gt;: &lt;HttpError 404 when requesting https://qr1hi.arvadosapi.com/arvados/v1/collections/204e43b8a1185621ca55a94839582e6f%2B67108864?alt=json returned "Not Found"&gt;)</code></pre>
31
32 This happens because @arv keep get@ tries to find a collection with this identifier.  When that fails, it emits this warning, then looks for a datablock instead, which succeeds.
33
34 {% include 'notebox_end' %}
35
36 Let's look at the size and compute the md5 hash of @block1@:
37
38 <notextile>
39 <pre><code>/scratch/<b>you</b>$ <span class="userinput">ls -l block1</span>
40 -rw-r--r-- 1 you group 67108864 Dec  9 20:14 block1
41 /scratch/<b>you</b>$ <span class="userinput">md5sum block1</span>
42 204e43b8a1185621ca55a94839582e6f  block1
43 </code></pre>
44 </notextile>
45
46 Notice that the block identifer <code>204e43b8a1185621ca55a94839582e6f+67108864</code> consists of:
47 * the md5 hash @204e43b8a1185621ca55a94839582e6f@ which matches the md5 hash of @block1@
48 * a size hint @67108864@ which matches the size of @block1@