chore: parallel builder logs

This commit is contained in:
evenyag
2023-11-29 19:44:57 +08:00
parent 4eb7fdc20c
commit 81d1b31d65

View File

@@ -211,6 +211,8 @@ impl SeqScan {
/// Builds a [BoxedBatchReader] that can scan memtables and SSTs in parallel.
async fn build_parallel_reader(&self) -> Result<BoxedBatchReader> {
debug!("Build parallel reader, parallelism: {}", self.parallelism);
assert!(self.parallelism > 1);
let semaphore = Arc::new(Semaphore::new(self.parallelism));