9 // A Volume is an interface representing a Keep back-end storage unit:
10 // for example, a single mounted disk, a RAID array, an Amazon S3 volume,
12 type Volume interface {
13 // Get a block. IFF the returned error is nil, the caller must
14 // put the returned slice back into the buffer pool when it's
15 // finished with it. (Otherwise, the buffer pool will be
16 // depleted and eventually -- when all available buffers are
17 // used and not returned -- operations will reach deadlock.)
19 // loc is guaranteed to consist of 32 or more lowercase hex
22 // Get should not verify the integrity of the returned data:
23 // it should just return whatever was found in its backing
24 // store. (Integrity checking is the caller's responsibility.)
26 // If an error is encountered that prevents it from
27 // retrieving the data, that error should be returned so the
28 // caller can log (and send to the client) a more useful
31 // If the error is "not found", and there's no particular
32 // reason to expect the block to be found (other than that a
33 // caller is asking for it), the returned error should satisfy
34 // os.IsNotExist(err): this is a normal condition and will not
35 // be logged as an error (except that a 404 will appear in the
36 // access log if the block is not found on any other volumes
39 // If the data in the backing store is bigger than BlockSize,
40 // Get is permitted to return an error without reading any of
42 Get(loc string) ([]byte, error)
44 // Compare the given data with the stored data (i.e., what Get
45 // would return). If equal, return nil. If not, return
46 // CollisionError or DiskHashError (depending on whether the
47 // data on disk matches the expected hash), or whatever error
48 // was encountered opening/reading the stored data.
49 Compare(loc string, data []byte) error
51 // Put writes a block to an underlying storage device.
53 // loc is as described in Get.
55 // len(block) is guaranteed to be between 0 and BlockSize.
57 // If a block is already stored under the same name (loc) with
58 // different content, Put must either overwrite the existing
59 // data with the new data or return a non-nil error. When
60 // overwriting existing data, it must never leave the storage
61 // device in an inconsistent state: a subsequent call to Get
62 // must return either the entire old block, the entire new
63 // block, or an error. (An implementation that cannot peform
64 // atomic updates must leave the old data alone and return an
67 // Put also sets the timestamp for the given locator to the
70 // Put must return a non-nil error unless it can guarantee
71 // that the entire block has been written and flushed to
72 // persistent storage, and that its timestamp is current. Of
73 // course, this guarantee is only as good as the underlying
74 // storage device, but it is Put's responsibility to at least
75 // get whatever guarantee is offered by the storage device.
77 // Put should not verify that loc==hash(block): this is the
78 // caller's responsibility.
79 Put(loc string, block []byte) error
81 // Touch sets the timestamp for the given locator to the
84 // loc is as described in Get.
86 // If invoked at time t0, Touch must guarantee that a
87 // subsequent call to Mtime will return a timestamp no older
88 // than {t0 minus one second}. For example, if Touch is called
89 // at 2015-07-07T01:23:45.67890123Z, it is acceptable for a
90 // subsequent Mtime to return any of the following:
92 // - 2015-07-07T01:23:45.00000000Z
93 // - 2015-07-07T01:23:45.67890123Z
94 // - 2015-07-07T01:23:46.67890123Z
95 // - 2015-07-08T00:00:00.00000000Z
97 // It is not acceptable for a subsequente Mtime to return
98 // either of the following:
100 // - 2015-07-07T00:00:00.00000000Z -- ERROR
101 // - 2015-07-07T01:23:44.00000000Z -- ERROR
103 // Touch must return a non-nil error if the timestamp cannot
105 Touch(loc string) error
107 // Mtime returns the stored timestamp for the given locator.
109 // loc is as described in Get.
111 // Mtime must return a non-nil error if the given block is not
112 // found or the timestamp could not be retrieved.
113 Mtime(loc string) (time.Time, error)
115 // IndexTo writes a complete list of locators with the given
116 // prefix for which Get() can retrieve data.
118 // prefix consists of zero or more lowercase hexadecimal
121 // Each locator must be written to the given writer using the
124 // loc "+" size " " timestamp "\n"
128 // - size is the number of bytes of content, given as a
129 // decimal number with one or more digits
131 // - timestamp is the timestamp stored for the locator,
132 // given as a decimal number of seconds after January 1,
135 // IndexTo must not write any other data to writer: for
136 // example, it must not write any blank lines.
138 // If an error makes it impossible to provide a complete
139 // index, IndexTo must return a non-nil error. It is
140 // acceptable to return a non-nil error after writing a
141 // partial index to writer.
143 // The resulting index is not expected to be sorted in any
145 IndexTo(prefix string, writer io.Writer) error
147 // Trash moves the block data from the underlying storage
148 // device to trash area. The block then stays in trash for
149 // -trash-lifetime interval before it is actually deleted.
151 // loc is as described in Get.
153 // If the timestamp for the given locator is newer than
154 // blobSignatureTTL, Trash must not trash the data.
156 // If a Trash operation overlaps with any Touch or Put
157 // operations on the same locator, the implementation must
158 // ensure one of the following outcomes:
160 // - Touch and Put return a non-nil error, or
161 // - Trash does not trash the block, or
162 // - Both of the above.
164 // If it is possible for the storage device to be accessed by
165 // a different process or host, the synchronization mechanism
166 // should also guard against races with other processes and
167 // hosts. If such a mechanism is not available, there must be
168 // a mechanism for detecting unsafe configurations, alerting
169 // the operator, and aborting or falling back to a read-only
170 // state. In other words, running multiple keepstore processes
171 // with the same underlying storage device must either work
172 // reliably or fail outright.
174 // Corollary: A successful Touch or Put guarantees a block
175 // will not be trashed for at least blobSignatureTTL
177 Trash(loc string) error
179 // Untrash moves block from trash back into store
180 Untrash(loc string) error
182 // Status returns a *VolumeStatus representing the current
183 // in-use and available storage capacity and an
184 // implementation-specific volume identifier (e.g., "mount
185 // point" for a UnixVolume).
186 Status() *VolumeStatus
188 // String returns an identifying label for this volume,
189 // suitable for including in log messages. It should contain
190 // enough information to uniquely identify the underlying
191 // storage device, but should not contain any credentials or
195 // Writable returns false if all future Put, Mtime, and Delete
196 // calls are expected to fail.
198 // If the volume is only temporarily unwritable -- or if Put
199 // will fail because it is full, but Mtime or Delete can
200 // succeed -- then Writable should return false.
203 // Replication returns the storage redundancy of the
204 // underlying device. It will be passed on to clients in
205 // responses to PUT requests.
208 // EmptyTrash looks for trashed blocks that exceeded trashLifetime
209 // and deletes them from the volume.
213 // A VolumeManager tells callers which volumes can read, which volumes
214 // can write, and on which volume the next write should be attempted.
215 type VolumeManager interface {
216 // AllReadable returns all volumes.
217 AllReadable() []Volume
219 // AllWritable returns all volumes that aren't known to be in
220 // a read-only state. (There is no guarantee that a write to
221 // one will succeed, though.)
222 AllWritable() []Volume
224 // NextWritable returns the volume where the next new block
225 // should be written. A VolumeManager can select a volume in
226 // order to distribute activity across spindles, fill up disks
227 // with more free space, etc.
228 NextWritable() Volume
230 // Close shuts down the volume manager cleanly.
234 // RRVolumeManager is a round-robin VolumeManager: the Nth call to
235 // NextWritable returns the (N % len(writables))th writable Volume
236 // (where writables are all Volumes v where v.Writable()==true).
237 type RRVolumeManager struct {
243 // MakeRRVolumeManager initializes RRVolumeManager
244 func MakeRRVolumeManager(volumes []Volume) *RRVolumeManager {
245 vm := &RRVolumeManager{}
246 for _, v := range volumes {
247 vm.readables = append(vm.readables, v)
249 vm.writables = append(vm.writables, v)
255 // AllReadable returns an array of all readable volumes
256 func (vm *RRVolumeManager) AllReadable() []Volume {
260 // AllWritable returns an array of all writable volumes
261 func (vm *RRVolumeManager) AllWritable() []Volume {
265 // NextWritable returns the next writable
266 func (vm *RRVolumeManager) NextWritable() Volume {
267 if len(vm.writables) == 0 {
270 i := atomic.AddUint32(&vm.counter, 1)
271 return vm.writables[i%uint32(len(vm.writables))]
274 // Close the RRVolumeManager
275 func (vm *RRVolumeManager) Close() {
278 // VolumeStatus provides status information of the volume consisting of:
280 // * device_num (an integer identifying the underlying storage system)
283 type VolumeStatus struct {
284 MountPoint string `json:"mount_point"`
285 DeviceNum uint64 `json:"device_num"`
286 BytesFree uint64 `json:"bytes_free"`
287 BytesUsed uint64 `json:"bytes_used"`