We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be76d7 commit 83d56e7Copy full SHA for 83d56e7
1 file changed
crates/lance-context-core/src/store.rs
@@ -234,10 +234,16 @@ impl ContextStore {
234
}
235
236
/// Manually trigger compaction to merge small fragments.
237
- pub async fn compact(&mut self, options: Option<CompactionConfig>) -> LanceResult<CompactionMetrics> {
+ pub async fn compact(
238
+ &mut self,
239
+ options: Option<CompactionConfig>,
240
+ ) -> LanceResult<CompactionMetrics> {
241
let config = options.unwrap_or_else(|| self.compaction_config.clone());
242
- info!("Starting compaction: {} fragments", self.dataset.count_fragments());
243
+ info!(
244
+ "Starting compaction: {} fragments",
245
+ self.dataset.count_fragments()
246
+ );
247
let start = std::time::Instant::now();
248
249
// Mark as compacting
0 commit comments