X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=schema.sql;h=35b2c9d0c2cf16b96579e78d2720eb300ecb4d8c;hp=850e6a9ace316196a494d7a91b77a95f7c21ceb0;hb=f38dd9bcb0caffd3fc9126b05788c936690e8288;hpb=5b346a4689ac2c8458e30fd8752abd6e2f207c56 diff --git a/schema.sql b/schema.sql index 850e6a9..35b2c9d 100644 --- a/schema.sql +++ b/schema.sql @@ -7,7 +7,7 @@ create table snapshots ( snapshotid integer primary key, name text not null, - scheme text, + scheme text not null, timestamp real, intent real ); @@ -36,6 +36,27 @@ create table block_index ( create index block_content_index on block_index(checksum); create unique index block_name_index on block_index(segmentid, object); +-- Checksums for the decomposition of blocks into even smaller chunks +-- (variable-sized, but generally ~4 kB, and maximum 64 kB). Chunk boundaries +-- are determined based on the contents using Rabin fingerprints. These +-- checksums can be used for computing sub-file incrementals. +-- +-- Each block stored in block_index may have an entry in the +-- subblock_signatures table. The signatures field is a binary blob consisting +-- of a packed sequence of (chunk length [16-bit unsigned, big-endian], +-- checksum [20 bytes if SHA-1]) tuples that should cover the entire block. +-- +-- algorithm specifies the method used for computing break points as well as +-- the hash function used, so that signatures can be discarded if the algorithm +-- changes. The current algorithm used is 'lbfs-4096/sha1', which specifies a +-- target 4 kB block size with parameters set to match LBFS, and SHA-1 as the +-- hash algorithm. +create table subblock_signatures ( + blockid integer primary key, + algorithm text not null, + signatures blob not null +); + -- Summary of segment utilization for each snapshots. create table segments_used ( snapshotid integer not null,