From 2c4e4dcd6d845320a6d065c7aa1dc0100eefb893 Mon Sep 17 00:00:00 2001 From: Adam Kupczyk Date: Wed, 27 May 2020 16:16:46 +0200 Subject: [PATCH] kv/RocksDBStore: Set size for WALs in sharding mode. This fixes problem in case when sharding is turned on ('bluestore_rocksdb_cf=true'). Default value (0) caused rocksdb to set maximum of 16GB for WALs. Now this is 1GB by setting max_total_wal_size. Signed-off-by: Adam Kupczyk --- src/common/options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/options.cc b/src/common/options.cc index c39095bfde89..f032228b8faa 100644 --- a/src/common/options.cc +++ b/src/common/options.cc @@ -4413,7 +4413,7 @@ std::vector