MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / append_timeseries_batch

Method append_timeseries_batch

nodedb/src/wal/manager/append.rs:117–125  ·  view source on GitHub ↗
(
        &self,
        tid: TenantId,
        vs: VShardId,
        db: DatabaseId,
        p: &[u8],
    )

Source from the content-addressed store, hash-verified

115 }
116
117 pub fn append_timeseries_batch(
118 &self,
119 tid: TenantId,
120 vs: VShardId,
121 db: DatabaseId,
122 p: &[u8],
123 ) -> crate::Result<Lsn> {
124 self.append_record(RecordType::TimeseriesBatch, tid, vs, db, p)
125 }
126
127 pub fn append_log_batch(
128 &self,

Callers 4

wal_append_timeseriesFunction · 0.80
write_to_walMethod · 0.80

Calls 1

append_recordMethod · 0.80

Tested by 2

write_to_walMethod · 0.64