// Copyright (c) 2021-2022 The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include #include #include #include #include #include #include #include #include #include // Unlike for the UTXO database, for the txindex scenario the leveldb cache make // a meaningful difference: https://github.com/limenka/limenka/pull/8273#issuecomment-229601991 //! Max memory allocated to tx index DB specific cache in bytes. static constexpr size_t MAX_TX_INDEX_CACHE{1024_MiB}; //! Max memory allocated to all block filter index caches combined in bytes. static constexpr size_t MAX_FILTER_INDEX_CACHE{1024_MiB}; namespace node { size_t CalculateDbCacheBytes(const ArgsManager& args) { if (auto db_cache{args.GetIntArg("-dbcache")}) { if (*db_cache < 0) db_cache = 0; uint64_t db_cache_bytes = SaturatingLeftShift(*db_cache, 20); return std::max(MIN_DBCACHE_BYTES, std::min(db_cache_bytes, MAX_DBCACHE_BYTES)); } return GetDefaultDBCache(); } CacheSizes CalculateCacheSizes(const ArgsManager& args, size_t n_indexes) { size_t total_cache{CalculateDbCacheBytes(args)}; IndexCacheSizes index_sizes; index_sizes.tx_index = std::min(total_cache / 8, args.GetBoolArg("-txindex", DEFAULT_TXINDEX) ? MAX_TX_INDEX_CACHE : 0); total_cache -= index_sizes.tx_index; if (n_indexes > 0) { size_t max_cache = std::min(total_cache / 8, MAX_FILTER_INDEX_CACHE); index_sizes.filter_index = max_cache / n_indexes; total_cache -= index_sizes.filter_index * n_indexes; } return {index_sizes, kernel::CacheSizes{total_cache}}; } void LogOversizedDbCache(const ArgsManager& args) noexcept { if (const auto total_ram{TryGetTotalRam()}) { const size_t db_cache{CalculateDbCacheBytes(args)}; if (ShouldWarnOversizedDbCache(db_cache, *total_ram)) { InitWarning(bilingual_str{tfm::format(_("A %s MiB dbcache may be too large for a system with only %s MiB of memory."), db_cache / 1_MiB, *total_ram / 1_MiB)}); } } } void LogAutoDbCacheSettings() noexcept { LogInfo("Automatically selected -dbcache=%s MiB based on %s system memory of %s MiB.", GetDefaultDBCache(GetTotalRam()) / 1_MiB, TryGetTotalRam() ? "detected" : "assumed", GetTotalRam() / 1_MiB); } } // namespace node