risingwave_rpc_client/
hummock_meta_client.rs1use async_trait::async_trait;
16use futures::stream::BoxStream;
17use risingwave_hummock_sdk::version::HummockVersion;
18use risingwave_hummock_sdk::{HummockEpoch, HummockVersionId, SstObjectIdRange, SyncResult};
19use risingwave_pb::hummock::{
20 PbHummockVersion, SubscribeCompactionEventRequest, SubscribeCompactionEventResponse,
21};
22use tokio::sync::mpsc::UnboundedSender;
23
24pub type CompactionEventItem = std::result::Result<SubscribeCompactionEventResponse, tonic::Status>;
25
26use crate::error::Result;
27
28pub type HummockMetaClientChangeLogInfo = Vec<u64>;
29
30#[async_trait]
31pub trait HummockMetaClient: Send + Sync + 'static {
32 async fn unpin_version_before(&self, unpin_version_before: HummockVersionId) -> Result<()>;
33 async fn get_current_version(&self) -> Result<HummockVersion>;
34 async fn get_new_sst_ids(&self, number: u32) -> Result<SstObjectIdRange>;
35 async fn commit_epoch_with_change_log(
37 &self,
38 epoch: HummockEpoch,
39 sync_result: SyncResult,
40 change_log_info: Option<HummockMetaClientChangeLogInfo>,
41 ) -> Result<()>;
42 async fn commit_epoch(&self, epoch: HummockEpoch, sync_result: SyncResult) -> Result<()> {
43 self.commit_epoch_with_change_log(epoch, sync_result, None)
44 .await
45 }
46 async fn trigger_manual_compaction(
47 &self,
48 compaction_group_id: u64,
49 table_id: u32,
50 level: u32,
51 sst_ids: Vec<u64>,
52 ) -> Result<()>;
53 async fn trigger_full_gc(
54 &self,
55 sst_retention_time_sec: u64,
56 prefix: Option<String>,
57 ) -> Result<()>;
58
59 async fn subscribe_compaction_event(
60 &self,
61 ) -> Result<(
62 UnboundedSender<SubscribeCompactionEventRequest>,
63 BoxStream<'static, CompactionEventItem>,
64 )>;
65
66 async fn get_version_by_epoch(
67 &self,
68 epoch: HummockEpoch,
69 table_id: u32,
70 ) -> Result<PbHummockVersion>;
71}