From 57e04c591667313631711e5d499bf292a1001903 Mon Sep 17 00:00:00 2001 From: driftluo Date: Tue, 7 Nov 2023 13:47:31 +0800 Subject: [PATCH] chore: change default config --- devtools/chain/config.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devtools/chain/config.toml b/devtools/chain/config.toml index 19e964e1f..1b34f28f6 100644 --- a/devtools/chain/config.toml +++ b/devtools/chain/config.toml @@ -36,7 +36,7 @@ broadcast_txs_size = 200 broadcast_txs_interval = 200 [executor] -triedb_cache_size = 500 +triedb_cache_size = 200 [logger] filter = "info" @@ -44,14 +44,14 @@ log_to_console = true console_show_file_and_line = false log_path = "logs/" log_to_file = true -file_size_limit = 1073741824 # 1 GiB +file_size_limit = 1073741824 # 1 GiB metrics = true # you can specify log level for modules with config below # modules_level = { "overlord::state::process" = "debug", core_consensus = "error" } [rocksdb] max_open_files = 64 -cache_size = 200 +cache_size = 100 # Provide an options file to tune RocksDB for your workload and your system configuration. # More details can be found in [the official tuning guide](https://github.com/facebook/rocksdb/wiki/RocksDB-Tuning-Guide). options_file = "default.db-options"