Skip to content

Commit b2af357

Browse files
committed
Reduce reserved memory space for flushing
As the maximum amount of data that can be pulled into the cache due to a block validation is much lower now (at most one CCoin entry per input and per output), reduce the conservative estimate used to determine flushing time.
1 parent 41aa5b7 commit b2af357

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/txdb.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ class uint256;
2222
//! Compensate for extra memory peak (x1.5-x1.9) at flush time.
2323
static constexpr int DB_PEAK_USAGE_FACTOR = 2;
2424
//! No need to periodic flush if at least this much space still available.
25-
static constexpr int MAX_BLOCK_COINSDB_USAGE = 200 * DB_PEAK_USAGE_FACTOR;
26-
//! Always periodic flush if less than this much space still available.
27-
static constexpr int MIN_BLOCK_COINSDB_USAGE = 50 * DB_PEAK_USAGE_FACTOR;
25+
static constexpr int MAX_BLOCK_COINSDB_USAGE = 10 * DB_PEAK_USAGE_FACTOR;
2826
//! -dbcache default (MiB)
2927
static const int64_t nDefaultDbCache = 450;
3028
//! max. -dbcache (MiB)

src/validation.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,9 +1719,8 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode, int n
17191719
int64_t nMempoolSizeMax = GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000;
17201720
int64_t cacheSize = pcoinsTip->DynamicMemoryUsage() * DB_PEAK_USAGE_FACTOR;
17211721
int64_t nTotalSpace = nCoinCacheUsage + std::max<int64_t>(nMempoolSizeMax - nMempoolUsage, 0);
1722-
// The cache is large and we're within 10% and 200 MiB or 50% and 50MiB of the limit, but we have time now (not in the middle of a block processing).
1723-
bool fCacheLarge = mode == FLUSH_STATE_PERIODIC && cacheSize > std::min(std::max(nTotalSpace / 2, nTotalSpace - MIN_BLOCK_COINSDB_USAGE * 1024 * 1024),
1724-
std::max((9 * nTotalSpace) / 10, nTotalSpace - MAX_BLOCK_COINSDB_USAGE * 1024 * 1024));
1722+
// The cache is large and we're within 10% and 10 MiB of the limit, but we have time now (not in the middle of a block processing).
1723+
bool fCacheLarge = mode == FLUSH_STATE_PERIODIC && cacheSize > std::max((9 * nTotalSpace) / 10, nTotalSpace - MAX_BLOCK_COINSDB_USAGE * 1024 * 1024);
17251724
// The cache is over the limit, we have to write now.
17261725
bool fCacheCritical = mode == FLUSH_STATE_IF_NEEDED && cacheSize > nTotalSpace;
17271726
// It's been a while since we wrote the block index to disk. Do this frequently, so we don't need to redownload after a crash.

0 commit comments

Comments
 (0)