We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c8ecf commit 4e99c55Copy full SHA for 4e99c55
pkg/storage/pebble.go
@@ -456,7 +456,9 @@ var (
456
"storage.value_separation.compaction_garbage_threshold",
457
"the max garbage threshold configures the percentage of unreferenced value "+
458
"bytes that trigger blob-file rewrite compactions; 100 disables these compactions",
459
- 100, /* default; disables blob-file rewrites */
+ int64(metamorphic.ConstantWithTestRange("storage.value_separation.compaction_garbage_threshold",
460
+ 10, /* default */
461
+ 1 /* min */, 80 /* max */)),
462
settings.IntInRange(1, 100),
463
)
464
0 commit comments