File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ class ConcatFilesSpillMergeStream final : public SpillMergeStream {
277277class SpillPartitionId {
278278 public:
279279 // / Maximum spill level supported by 'SpillPartitionId'.
280- static constexpr uint32_t kMaxSpillLevel {3 };
280+ static constexpr uint32_t kMaxSpillLevel {7 };
281281
282282 // / Maximum number of partition bits per spill level supported by
283283 // / 'SpillPartitionId'.
@@ -355,7 +355,10 @@ class SpillPartitionId {
355355 // (3 ~ 5 bits): Represents the partition number at the 2nd level.
356356 // (6 ~ 8 bits): Represents the partition number at the 3rd level.
357357 // (9 ~ 11 bits): Represents the partition number at the 4th level.
358- // (12 ~ 28 bits): Unused
358+ // (12 ~ 14 bits): Represents the partition number at the 5th level.
359+ // (15 ~ 17 bits): Represents the partition number at the 6th level.
360+ // (18 ~ 20 bits): Represents the partition number at the 7th level.
361+ // (21 ~ 28 bits): Unused
359362 // (29 ~ 31 bits): Represents the current spill level.
360363 // <MSB>
361364 uint32_t encodedId_{kInvalidEncodedId };
You can’t perform that action at this time.
0 commit comments