aboutsummaryrefslogtreecommitdiffstats
path: root/searchcommon
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2021-04-09 15:34:00 +0200
committerTor Egge <Tor.Egge@online.no>2021-04-09 15:34:30 +0200
commit42fc83666cb64a4a4420a52dccb072c5767d9fd1 (patch)
tree7325c7b1030b4367873dbb87bfe6d3e060abcbb8 /searchcommon
parentc9b2efce65e3b1206c7c63fed01ed934832a9287 (diff)
Track changed default max dead bytes ratio.
Diffstat (limited to 'searchcommon')
-rw-r--r--searchcommon/src/vespa/searchcommon/common/compaction_strategy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcommon/src/vespa/searchcommon/common/compaction_strategy.h b/searchcommon/src/vespa/searchcommon/common/compaction_strategy.h
index 65a7b5a276c..1c680d91da7 100644
--- a/searchcommon/src/vespa/searchcommon/common/compaction_strategy.h
+++ b/searchcommon/src/vespa/searchcommon/common/compaction_strategy.h
@@ -16,7 +16,7 @@ private:
double _maxDeadAddressSpaceRatio; // Max ratio of dead address space before compaction
public:
CompactionStrategy() noexcept
- : _maxDeadBytesRatio(0.2),
+ : _maxDeadBytesRatio(0.15),
_maxDeadAddressSpaceRatio(0.2)
{
}