ethdb/pebble: fix CompactionDebtConcurrency comment (#33805)

This commit is contained in:
vickkkkkyy 2026-02-10 21:48:23 +08:00 committed by GitHub
parent 986d115da7
commit e2d21d0e9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -307,7 +307,7 @@ func New(file string, cache int, handles int, namespace string, readonly bool) (
// These two settings define the conditions under which compaction concurrency
// is increased. Specifically, one additional compaction job will be enabled when:
// - there is one more overlapping sub-level0;
// - there is an additional 512 MB of compaction debt;
// - there is an additional 256 MB of compaction debt;
//
// The maximum concurrency is still capped by MaxConcurrentCompactions, but with
// these settings compactions can scale up more readily.