From b5d120321e57f94e917375be87f2e304cfd50042 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Thu, 9 Jun 2016 11:56:39 +0200 Subject: [PATCH] decrease number of reserve logfiles --- arangod/Wal/LogfileManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangod/Wal/LogfileManager.h b/arangod/Wal/LogfileManager.h index 91ab218124..11a502a99d 100644 --- a/arangod/Wal/LogfileManager.h +++ b/arangod/Wal/LogfileManager.h @@ -462,7 +462,7 @@ class LogfileManager final : public application_features::ApplicationFeature { bool _ignoreRecoveryErrors = false; uint32_t _filesize = 32 * 1024 * 1024; uint32_t _maxOpenLogfiles = 0; - uint32_t _reserveLogfiles = 4; + uint32_t _reserveLogfiles = 3; uint32_t _numberOfSlots = 1048576; uint64_t _syncInterval = 100; uint64_t _throttleWhenPending = 0;