-
Type:
Bug
-
Status: Resolved
-
Priority:
Low
-
Resolution: Fixed
-
Fix Version/s: 1.1.6
-
Component/s: None
-
Labels:
-
Severity:Low
We have this code in the candidate loop:
. if (SSTable.getTotalBytes(candidates) > maxSSTableSizeInBytes) { // add sstables from L1 that overlap candidates candidates.addAll(overlapping(candidates, generations[1])); break; }
thus, as soon as we have enough to compact to make one L1 sstable's worth of data, we stop collecting candidates.