Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update config for store change to base2 buckets. #742

Merged
merged 1 commit into from
Feb 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 36 additions & 36 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ parser::parser(system::chain::selection context) NOEXCEPT

// database (archive)

configured.database.header_buckets = 566'667;
configured.database.header_bits = 20;
configured.database.header_size = 21'000'000;
configured.database.header_rate = 5;

Expand All @@ -82,7 +82,7 @@ parser::parser(system::chain::selection context) NOEXCEPT
configured.database.output_size = 25'300'000'000;
configured.database.output_rate = 5;

configured.database.point_buckets = 1'750'905'073;
configured.database.point_bits = 31;
configured.database.point_size = 21'100'000'000;
configured.database.point_rate = 5;

Expand All @@ -92,11 +92,11 @@ parser::parser(system::chain::selection context) NOEXCEPT
configured.database.puts_size = 3'700'000'000;
configured.database.puts_rate = 5;

configured.database.tx_buckets = 688'193'037;
configured.database.tx_bits = 30;
configured.database.tx_size = 17'050'000'000;
configured.database.tx_rate = 5;

configured.database.txs_buckets = 566'667;
configured.database.txs_bits = 20;
configured.database.txs_size = 1'050'000'000;
configured.database.txs_rate = 5;

Expand All @@ -108,7 +108,7 @@ parser::parser(system::chain::selection context) NOEXCEPT
configured.database.confirmed_size = 2'575'500;
configured.database.confirmed_rate = 5;

configured.database.strong_tx_buckets = 688'193'037;
configured.database.strong_tx_bits = 30;
configured.database.strong_tx_size = 3'150'000'000;
configured.database.strong_tx_rate = 5;

Expand All @@ -118,22 +118,22 @@ parser::parser(system::chain::selection context) NOEXCEPT
configured.database.prevout_size = 5'250'000'000;
configured.database.prevout_rate = 5;

configured.database.validated_tx_buckets = 0;
configured.database.validated_tx_bits = 0;
configured.database.validated_tx_size = 1;
configured.database.validated_tx_rate = 5;

configured.database.validated_bk_buckets = 566'667;
configured.database.validated_bk_bits = 21;
configured.database.validated_bk_size = 3'400'000;
configured.database.validated_bk_rate = 5;

// database (optionals)

configured.database.address_buckets = 0;
configured.database.address_bits = 0;
configured.database.address_size = 1;
configured.database.address_rate = 5;

configured.database.neutrino_buckets = 0;
configured.database.neutrino_size = 1;
configured.database.neutrino_bits = 0;
configured.database.neutrino_size = 1;
configured.database.neutrino_rate = 5;
}

Expand Down Expand Up @@ -653,9 +653,9 @@ options_metadata parser::load_settings() THROWS

/* header */
(
"database.header_buckets",
value<uint32_t>(&configured.database.header_buckets),
"The number of buckets in the header table head, defaults to '566667'."
"database.header_bits",
value<uint32_t>(&configured.database.header_bits),
"The log2 number of buckets in the header table head, defaults to '20'."
)
(
"database.header_size",
Expand Down Expand Up @@ -694,9 +694,9 @@ options_metadata parser::load_settings() THROWS

/* point */
(
"database.point_buckets",
value<uint32_t>(&configured.database.point_buckets),
"The number of buckets in the spend table head, defaults to '1750905073'."
"database.point_bits",
value<uint32_t>(&configured.database.point_bits),
"The log2 number of buckets in the spend table head, defaults to '31'."
)
(
"database.point_size",
Expand Down Expand Up @@ -735,9 +735,9 @@ options_metadata parser::load_settings() THROWS

/* tx */
(
"database.tx_buckets",
value<uint32_t>(&configured.database.tx_buckets),
"The number of buckets in the tx table head, defaults to '688193037'."
"database.tx_bits",
value<uint32_t>(&configured.database.tx_bits),
"The log2 number of buckets in the tx table head, defaults to '30'."
)
(
"database.tx_size",
Expand All @@ -752,9 +752,9 @@ options_metadata parser::load_settings() THROWS

/* txs */
(
"database.txs_buckets",
value<uint32_t>(&configured.database.txs_buckets),
"The number of buckets in the txs table head, defaults to '566667'."
"database.txs_bits",
value<uint32_t>(&configured.database.txs_bits),
"The log2 number of buckets in the txs table head, defaults to '20'."
)
(
"database.txs_size",
Expand Down Expand Up @@ -793,9 +793,9 @@ options_metadata parser::load_settings() THROWS

/* strong_tx */
(
"database.strong_tx_buckets",
value<uint32_t>(&configured.database.strong_tx_buckets),
"The number of buckets in the strong_tx table head, defaults to '688193037'."
"database.strong_tx_bits",
value<uint32_t>(&configured.database.strong_tx_bits),
"The log2 number of buckets in the strong_tx table head, defaults to '30'."
)
(
"database.strong_tx_size",
Expand Down Expand Up @@ -827,8 +827,8 @@ options_metadata parser::load_settings() THROWS

/* validated_tx */
(
"database.validated_tx_buckets",
value<uint32_t>(&configured.database.validated_tx_buckets),
"database.validated_tx_bits",
value<uint32_t>(&configured.database.validated_tx_bits),
"The number of buckets in the validated_tx table head, defaults to '0' (0 disables)."
)
(
Expand All @@ -844,9 +844,9 @@ options_metadata parser::load_settings() THROWS

/* validated_bk */
(
"database.validated_bk_buckets",
value<uint32_t>(&configured.database.validated_bk_buckets),
"The number of buckets in the validated_bk table head, defaults to '566667'."
"database.validated_bk_bits",
value<uint32_t>(&configured.database.validated_bk_bits),
"The log2 number of buckets in the validated_bk table head, defaults to '21'."
)
(
"database.validated_bk_size",
Expand All @@ -861,9 +861,9 @@ options_metadata parser::load_settings() THROWS

/* address */
(
"database.address_buckets",
value<uint32_t>(&configured.database.address_buckets),
"The number of buckets in the address table head, defaults to '0' (0 disables)."
"database.address_bits",
value<uint32_t>(&configured.database.address_bits),
"The log2 number of buckets in the address table head, defaults to '0' (0 disables)."
)
(
"database.address_size",
Expand All @@ -878,9 +878,9 @@ options_metadata parser::load_settings() THROWS

/* neutrino */
(
"database.neutrino_buckets",
value<uint32_t>(&configured.database.neutrino_buckets),
"The number of buckets in the neutrino table head, defaults to '0' (0 disables)."
"database.neutrino_bits",
value<uint32_t>(&configured.database.neutrino_bits),
"The log2 number of buckets in the neutrino table head, defaults to '0' (0 disables)."
)
(
"database.neutrino_size",
Expand Down
Loading