X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0ad0ce519da703b3f13c0ad8a74ea8235b7d90e5..40c9b26a39c773e806e0a1430774f1787820376f:/services/keepstore/volume.go diff --git a/services/keepstore/volume.go b/services/keepstore/volume.go index e6a0f27f52..7966c41b92 100644 --- a/services/keepstore/volume.go +++ b/services/keepstore/volume.go @@ -150,7 +150,7 @@ type Volume interface { // loc is as described in Get. // // If the timestamp for the given locator is newer than - // blob_signature_ttl, Delete must not delete the data. + // blobSignatureTTL, Delete must not delete the data. // // If a Delete operation overlaps with any Touch or Put // operations on the same locator, the implementation must @@ -171,7 +171,7 @@ type Volume interface { // reliably or fail outright. // // Corollary: A successful Touch or Put guarantees a block - // will not be deleted for at least blob_signature_ttl + // will not be deleted for at least blobSignatureTTL // seconds. Delete(loc string) error @@ -195,6 +195,11 @@ type Volume interface { // will fail because it is full, but Mtime or Delete can // succeed -- then Writable should return false. Writable() bool + + // Replication returns the storage redundancy of the + // underlying device. It will be passed on to clients in + // responses to PUT requests. + Replication() int } // A VolumeManager tells callers which volumes can read, which volumes