From 646349c52db2bd43ea01c834c451e246a323229e Mon Sep 17 00:00:00 2001
From: NGA-TRAN <nga-tran@live.com>
Date: Tue, 7 Feb 2023 09:34:40 -0500
Subject: [PATCH] docs: addd comments to explain further the skip

---
 compactor2/src/driver.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/compactor2/src/driver.rs b/compactor2/src/driver.rs
index ab5ae97a97..a25866cc91 100644
--- a/compactor2/src/driver.rs
+++ b/compactor2/src/driver.rs
@@ -231,6 +231,8 @@ async fn try_compact_partition(
             let compaction_plan = build_compaction_plan(branch, Arc::clone(&components))?;
 
             // Cannot run this plan and skip this partition because of over limit input num_files or size
+            // TODO: After https://github.com/influxdata/idpe/issues/17090 is iplemented (aka V3), we will
+            //      split files to smaller branches and aslo compact L0s into fewer L0s, then we can remove this
             if !components
                 .partition_resource_limit_filter
                 .apply(partition_id, &compaction_plan.files_to_compact)