From 7f91dd803c7067b0fe2c455cfad34890985b2d2a Mon Sep 17 00:00:00 2001 From: Emilia Hane Date: Wed, 18 Jan 2023 09:04:15 +0100 Subject: [PATCH] Help user choose blobs db --- beacon_node/client/src/config.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/beacon_node/client/src/config.rs b/beacon_node/client/src/config.rs index 4ea59a9da7..10eeb3a481 100644 --- a/beacon_node/client/src/config.rs +++ b/beacon_node/client/src/config.rs @@ -50,6 +50,11 @@ pub struct Config { /// Path where the freezer database will be located. pub freezer_db_path: Option, /// Path where the blobs database will be located if blobs should be in a separate database. + /// + /// The capacity this location should hold varies with the data availability boundary. It + /// should be able to store < 69 GB when [MIN_EPOCHS_FOR_BLOBS_SIDECARS_REQUESTS](types::consts::eip4844::MIN_EPOCHS_FOR_BLOBS_SIDECARS_REQUESTS) is 4096 + /// epochs of 32 slots (up to 131072 bytes data per blob and up to 4 blobs per block, 88 bytes + /// of [BlobsSidecar](types::BlobsSidecar) metadata per block). pub blobs_db_path: Option, pub log_file: PathBuf, /// If true, the node will use co-ordinated junk for eth1 values.