pub struct Segment {
pub id: SegmentUuid,
pub type: SegmentType,
pub scope: SegmentScope,
pub collection: CollectionUuid,
pub metadata: Option<Metadata>,
pub file_path: HashMap<String, Vec<String>>,
}Fields§
§id: SegmentUuid§type: SegmentType§scope: SegmentScope§collection: CollectionUuid§metadata: Option<Metadata>§file_path: HashMap<String, Vec<String>>Implementations§
Source§impl Segment
impl Segment
Sourcepub fn empty_segment(&self) -> Self
pub fn empty_segment(&self) -> Self
Returns this segment with its identity/metadata preserved but without any on-disk file paths.
pub fn historical_segment_for_version( &self, version: &CollectionVersionInfo, segment_id: SegmentUuid, ) -> Result<Self, String>
pub fn get_shards(&self) -> Result<Vec<SegmentShard>, SegmentShardError>
pub fn prefetch_supported(&self) -> bool
Sourcepub fn filepaths_to_prefetch(&self, shard_index: Option<u32>) -> Vec<String>
pub fn filepaths_to_prefetch(&self, shard_index: Option<u32>) -> Vec<String>
Returns the file paths that should be prefetched for this segment. If shard_index is None, returns the active shard’s file paths. If shard_index is Some, returns only the file paths for that shard.
Sourcepub fn num_shards(&self) -> Result<usize, SegmentShardError>
pub fn num_shards(&self) -> Result<usize, SegmentShardError>
Returns the number of shards for this segment. Derives from the length of file_path Vecs (all must be equal per the shard count invariant). Returns 1 if no file paths are present.
Sourcepub fn clear_shard_file_paths(&mut self, shard_index: u32)
pub fn clear_shard_file_paths(&mut self, shard_index: u32)
Clears file paths for a specific shard index. This is useful during shard-specific rebuilds where we want to regenerate only one shard’s files while preserving others.
Sourcepub fn matches_schema(&self, schema: &Schema) -> Result<(), SchemaMismatchError>
pub fn matches_schema(&self, schema: &Schema) -> Result<(), SchemaMismatchError>
Check that the on-disk file_path shape matches what the collection schema
implies. Returns Ok(()) when they agree or the segment is uninitialized
(empty file_path). Returns Err(SchemaMismatchError) on the first
mismatch detected.
Validates that all file_path keys have the same shard count and that the set of keys present is consistent with the schema.
pub fn extract_prefix_and_id(path: &str) -> Result<(&str, Uuid), Error>
pub fn construct_prefix_path( &self, tenant: &str, database_id: &DatabaseUuid, ) -> String
Trait Implementations§
impl StructuralPartialEq for Segment
Auto Trait Implementations§
impl Freeze for Segment
impl RefUnwindSafe for Segment
impl Send for Segment
impl Sync for Segment
impl Unpin for Segment
impl UnsafeUnpin for Segment
impl UnwindSafe for Segment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::RequestSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.