pub struct LiveFile {
pub column_family_name: String,
pub name: String,
pub size: usize,
pub level: i32,
pub start_key: Option<Vec<u8>>,
pub end_key: Option<Vec<u8>>,
pub num_entries: u64,
pub num_deletions: u64,
}
Expand description
The metadata that describes a SST file
Fields§
§column_family_name: String
Name of the column family the file belongs to
name: String
Name of the file
size: usize
Size of the file
level: i32
Level at which this file resides
start_key: Option<Vec<u8>>
Smallest user defined key in the file
end_key: Option<Vec<u8>>
Largest user defined key in the file
num_entries: u64
Number of entries/alive keys in the file
num_deletions: u64
Number of deletions/tomb key(s) in the file