aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAva Chow <github@achow101.com>2024-09-16 15:56:02 -0400
committerAva Chow <github@achow101.com>2024-09-16 15:56:02 -0400
commitfce9e065c16c7857606d154316e73f9e01c34c9a (patch)
treef26c7a4791d815c5be1cd73c5970b4c81a1a503a /doc
parent8d000b85dd4b47b149c266271db46143b7692f7d (diff)
parentbb3b980dfd96d9a89e6b04aef2859ce0555c6807 (diff)
downloadbitcoin-fce9e065c16c7857606d154316e73f9e01c34c9a.tar.xz
Merge bitcoin/bitcoin#28358: Drop -dbcache limit
bb3b980dfd96d9a89e6b04aef2859ce0555c6807 validation: drop maximum -dbcache (Sjors Provoost) Pull request description: Due to recent UTXO set growth, the current maximum value for `-dbcache` of 16GB is ~just months away from being~ insufficient (for those who wish to complete IBD with the UTXO set held in RAM). This drops the limit. It also adds a warning that it's up to users to check that they have enough RAM. Fixes #28249. --- A previous version of this PR increased the maximum to 64GB. It also made startup abort if the value provided is too high, rather than quietly round it down. But this didn't get much support. ACKs for top commit: achow101: ACK bb3b980dfd96d9a89e6b04aef2859ce0555c6807 tdb3: ACK bb3b980dfd96d9a89e6b04aef2859ce0555c6807 BenWestgate: crACK bb3b980dfd96d9a89e6b04aef2859ce0555c6807. Tree-SHA512: 8515fff468c2387a0b04bd9523ab1df46d6325738588b7550fabddbb8624817a583d95b95ea246407f9f0ff3e43e760cf7334621bec6af79710176328528a3ef
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes-28358.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release-notes-28358.md b/doc/release-notes-28358.md
new file mode 100644
index 0000000000..336aaa59ed
--- /dev/null
+++ b/doc/release-notes-28358.md
@@ -0,0 +1,6 @@
+Updated settings
+------
+
+- The maximum allowed value for the `-dbcache` configuration option has been
+ dropped due to recent UTXO set growth. Note that before this change, large `-dbcache`
+ values were automatically reduced to 16 GiB (1 GiB on 32 bit systems). (#28358)