/tmp/bitcoin/src/node/caches.cpp
Line | Count | Source |
1 | | // Copyright (c) 2021-present The Bitcoin Core developers |
2 | | // Distributed under the MIT software license, see the accompanying |
3 | | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
4 | | |
5 | | #include <node/caches.h> |
6 | | |
7 | | #include <common/args.h> |
8 | | #include <common/system.h> |
9 | | #include <index/txindex.h> |
10 | | #include <index/txospenderindex.h> |
11 | | #include <kernel/caches.h> |
12 | | #include <node/interface_ui.h> |
13 | | #include <tinyformat.h> |
14 | | #include <util/byte_units.h> |
15 | | #include <util/log.h> |
16 | | #include <util/overflow.h> |
17 | | #include <util/translation.h> |
18 | | |
19 | | #include <algorithm> |
20 | | #include <cstdint> |
21 | | #include <string> |
22 | | |
23 | | // Unlike for the UTXO database, for the txindex scenario the leveldb cache make |
24 | | // a meaningful difference: https://github.com/bitcoin/bitcoin/pull/8273#issuecomment-229601991 |
25 | | //! Max memory allocated to tx index DB specific cache in bytes. |
26 | | static constexpr uint64_t MAX_TX_INDEX_CACHE{1_GiB}; |
27 | | //! Max memory allocated to all block filter index caches combined in bytes. |
28 | | static constexpr uint64_t MAX_FILTER_INDEX_CACHE{1_GiB}; |
29 | | //! Max memory allocated to tx spenderindex DB specific cache in bytes. |
30 | | static constexpr uint64_t MAX_TXOSPENDER_INDEX_CACHE{1_GiB}; |
31 | | //! Larger default dbcache on 64-bit systems with enough RAM. |
32 | | static constexpr uint64_t HIGH_DEFAULT_DBCACHE{1_GiB}; |
33 | | //! Minimum detected RAM required for HIGH_DEFAULT_DBCACHE. |
34 | | static constexpr uint64_t HIGH_DEFAULT_DBCACHE_MIN_TOTAL_RAM{4_GiB}; |
35 | | |
36 | | namespace node { |
37 | | uint64_t GetDefaultDBCache() |
38 | 4.21k | { |
39 | 4.21k | if constexpr (sizeof(void*) >= 8) { |
40 | 4.21k | if (TryGetTotalRam().value_or(0) >= HIGH_DEFAULT_DBCACHE_MIN_TOTAL_RAM) { |
41 | 4.21k | return HIGH_DEFAULT_DBCACHE; |
42 | 4.21k | } |
43 | 4.21k | } |
44 | 0 | return DEFAULT_KERNEL_CACHE; |
45 | 4.21k | } |
46 | | |
47 | | uint64_t CalculateDbCacheBytes(const ArgsManager& args) |
48 | 2.29k | { |
49 | 2.29k | if (auto db_cache{args.GetIntArg("-dbcache")}) { |
50 | 0 | if (*db_cache < 0) db_cache = 0; |
51 | 0 | const uint64_t db_cache_bytes{SaturatingLeftShift<uint64_t>(*db_cache, 20)}; |
52 | 0 | return std::max(MIN_DBCACHE_BYTES, std::min(db_cache_bytes, MAX_DBCACHE_BYTES)); |
53 | 0 | } |
54 | 2.29k | return GetDefaultDBCache(); |
55 | 2.29k | } |
56 | | |
57 | | CacheSizes CalculateCacheSizes(const ArgsManager& args, size_t n_indexes) |
58 | 1.23k | { |
59 | 1.23k | uint64_t total_cache{CalculateDbCacheBytes(args)}; |
60 | | |
61 | | // Allocate proportional to usage pattern benefit: |
62 | | // - txindex (10%): serves getrawtransaction RPCs with mostly unique, |
63 | | // non-repetitive lookups across the entire blockchain. |
64 | | // - blockfilterindex (5%): serves BIP 157 light clients that repeatedly |
65 | | // query recent blocks, benefiting from LevelDB cache, but the |
66 | | // working set for a typical 2-week offline gap is ~200kiB, well within 5% |
67 | | // of the total cache. |
68 | | // - txospenderindex (5%): serves gettxspendingprevout RPCs with very |
69 | | // specific, rarely repeated outpoint queries. |
70 | | // - coinstatsindex: intentionally not included here, since usage pattern |
71 | | // does not seem to suggest it would be necessary to cache. |
72 | 1.23k | IndexCacheSizes index_sizes; |
73 | 1.23k | index_sizes.tx_index = std::min(total_cache * 10 / 100, args.GetBoolArg("-txindex", DEFAULT_TXINDEX) ? MAX_TX_INDEX_CACHE : 0); |
74 | 1.23k | index_sizes.txospender_index = std::min(total_cache * 5 / 100, args.GetBoolArg("-txospenderindex", DEFAULT_TXOSPENDERINDEX) ? MAX_TXOSPENDER_INDEX_CACHE : 0); |
75 | 1.23k | if (n_indexes > 0) { |
76 | 50 | uint64_t max_cache = std::min(total_cache * 5 / 100, MAX_FILTER_INDEX_CACHE); |
77 | 50 | index_sizes.filter_index = max_cache / n_indexes; |
78 | 50 | total_cache -= index_sizes.filter_index * n_indexes; |
79 | 50 | } |
80 | 1.23k | total_cache -= index_sizes.tx_index; |
81 | 1.23k | total_cache -= index_sizes.txospender_index; |
82 | 1.23k | return {index_sizes, kernel::CacheSizes{total_cache}}; |
83 | 1.23k | } |
84 | | |
85 | | void LogOversizedDbCache(const ArgsManager& args) noexcept |
86 | 1.06k | { |
87 | 1.06k | if (const auto total_ram{TryGetTotalRam()}) { |
88 | 1.06k | const uint64_t db_cache{CalculateDbCacheBytes(args)}; |
89 | 1.06k | if (ShouldWarnOversizedDbCache(db_cache, *total_ram)) { |
90 | 0 | InitWarning(bilingual_str{tfm::format(_("A %zu MiB dbcache may be too large for a system memory of only %zu MiB."), |
91 | 0 | db_cache / 1_MiB, *total_ram / 1_MiB)}); |
92 | 0 | } |
93 | 1.06k | } |
94 | 1.06k | } |
95 | | } // namespace node |