pub trait Memtable:
Send
+ Sync
+ Debug {
// Required methods
fn id(&self) -> MemtableId;
fn write(&self, kvs: &KeyValues) -> Result<()>;
fn write_one(&self, key_value: KeyValue<'_>) -> Result<()>;
fn write_bulk(&self, part: BulkPart) -> Result<()>;
fn iter(
&self,
projection: Option<&[ColumnId]>,
predicate: Option<Predicate>,
sequence: Option<SequenceNumber>,
) -> Result<BoxedBatchIterator>;
fn ranges(
&self,
projection: Option<&[ColumnId]>,
predicate: PredicateGroup,
sequence: Option<SequenceNumber>,
) -> MemtableRanges;
fn is_empty(&self) -> bool;
fn freeze(&self) -> Result<()>;
fn stats(&self) -> MemtableStats;
fn fork(&self, id: MemtableId, metadata: &RegionMetadataRef) -> MemtableRef;
}
Expand description
In memory write buffer.
Required Methods§
Sourcefn id(&self) -> MemtableId
fn id(&self) -> MemtableId
Returns the id of this memtable.
Sourcefn write_one(&self, key_value: KeyValue<'_>) -> Result<()>
fn write_one(&self, key_value: KeyValue<'_>) -> Result<()>
Writes one key value pair into the memtable.
Sourcefn write_bulk(&self, part: BulkPart) -> Result<()>
fn write_bulk(&self, part: BulkPart) -> Result<()>
Writes an encoded batch of into memtable.
Sourcefn iter(
&self,
projection: Option<&[ColumnId]>,
predicate: Option<Predicate>,
sequence: Option<SequenceNumber>,
) -> Result<BoxedBatchIterator>
fn iter( &self, projection: Option<&[ColumnId]>, predicate: Option<Predicate>, sequence: Option<SequenceNumber>, ) -> Result<BoxedBatchIterator>
Scans the memtable.
projection
selects columns to read, None
means reading all columns.
filters
are the predicates to be pushed down to memtable.
Sourcefn ranges(
&self,
projection: Option<&[ColumnId]>,
predicate: PredicateGroup,
sequence: Option<SequenceNumber>,
) -> MemtableRanges
fn ranges( &self, projection: Option<&[ColumnId]>, predicate: PredicateGroup, sequence: Option<SequenceNumber>, ) -> MemtableRanges
Returns the ranges in the memtable. The returned map contains the range id and the range after applying the predicate.
Sourcefn stats(&self) -> MemtableStats
fn stats(&self) -> MemtableStats
Returns the MemtableStats info of Memtable.
Sourcefn fork(&self, id: MemtableId, metadata: &RegionMetadataRef) -> MemtableRef
fn fork(&self, id: MemtableId, metadata: &RegionMetadataRef) -> MemtableRef
Forks this (immutable) memtable and returns a new mutable memtable with specific memtable id
.
A region must freeze the memtable before invoking this method.