From f08a873f6af893242fe6c391b8fb616ef43b0256 Mon Sep 17 00:00:00 2001 From: JiahuaChen Date: Tue, 14 Mar 2023 13:43:28 +0000 Subject: [PATCH] Shrink slog reserved space to 4GB --- src/storage/slog/ob_storage_logger_manager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/slog/ob_storage_logger_manager.h b/src/storage/slog/ob_storage_logger_manager.h index f97225737b..3bd7021b0c 100644 --- a/src/storage/slog/ob_storage_logger_manager.h +++ b/src/storage/slog/ob_storage_logger_manager.h @@ -71,7 +71,7 @@ private: private: static constexpr int64_t NORMAL_LOG_ITEM_SIZE = 512 * 1024; //512KB - static constexpr int64_t RESERVED_DISK_SIZE = 10 * 1024 * 1024 * 1024L; // 10G + static constexpr int64_t RESERVED_DISK_SIZE = 4 * 1024 * 1024 * 1024L; // 4G common::ObArenaAllocator allocator_; const char *log_dir_; -- GitLab