This commit is contained in:
Bojan Serafimov
2022-06-14 15:07:36 -04:00
parent e1a4c06918
commit 36cc6d2928

View File

@@ -1,14 +1,11 @@
//! This module contains functions to serve per-tenant background processes,
//! such as compaction and GC
use std::str::FromStr;
use crate::repository::Repository;
use crate::tenant_mgr::TenantState;
use crate::thread_mgr::ThreadKind;
use crate::{tenant_mgr, thread_mgr};
use anyhow::Result;
use futures::stream::FuturesUnordered;
use futures::StreamExt;
use once_cell::sync::OnceCell;
use tokio::sync::mpsc::{self, Sender};
use tracing::*;