tape: define useful constants

This commit is contained in:
Dietmar Maurer 2020-12-05 12:20:46 +01:00
parent 1142350e8d
commit c4d2d54a6d
1 changed files with 11 additions and 0 deletions

View File

@ -5,3 +5,14 @@ pub use tape_write::*;
mod tape_read;
pub use tape_read::*;
/// Directory path where we stora all status information
pub const MEDIA_POOL_STATUS_DIR: &str = "/var/lib/proxmox-backup/mediapool";
/// We limit chunk archive size, so that we can faster restore a
/// specific chunk (The catalog only store file numbers, so we
/// need to read the whole archive to restore a single chunk)
pub const MAX_CHUNK_ARCHIVE_SIZE: usize = 4*1024*1024*1024; // 4GB for now
/// To improve performance, we need to avoid tape drive buffer flush.
pub const COMMIT_BLOCK_SIZE: usize = 128*1024*1024*1024; // 128 GiB