Skip to content

Commit 5c93c06

Browse files
committed
Reduce puts and increase tx table default initial sizes.
1 parent d53ea38 commit 5c93c06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/parser.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ parser::parser(system::chain::selection context) NOEXCEPT
8585
configured.database.point_size = 32'000'000'000;
8686
configured.database.point_rate = 5;
8787

88-
configured.database.puts_size = 6'300'000'000;
88+
configured.database.puts_size = 3'700'000'000;
8989
configured.database.puts_rate = 5;
9090

9191
configured.database.spend_buckets = 1'750'905'073;
9292
configured.database.spend_size = 10'000'000'000;
9393
configured.database.spend_rate = 5;
9494

9595
configured.database.tx_buckets = 688'193'037;
96-
configured.database.tx_size = 16'150'000'000;
96+
configured.database.tx_size = 17'050'000'000;
9797
configured.database.tx_rate = 5;
9898

9999
configured.database.txs_buckets = 566'667;
@@ -708,7 +708,7 @@ options_metadata parser::load_settings() THROWS
708708
(
709709
"database.puts_size",
710710
value<uint64_t>(&configured.database.puts_size),
711-
"The minimum allocation of the puts table body, defaults to '6300000000'."
711+
"The minimum allocation of the puts table body, defaults to '3700000000'."
712712
)
713713
(
714714
"database.puts_rate",
@@ -742,7 +742,7 @@ options_metadata parser::load_settings() THROWS
742742
(
743743
"database.tx_size",
744744
value<uint64_t>(&configured.database.tx_size),
745-
"The minimum allocation of the tx table body, defaults to '16150000000'."
745+
"The minimum allocation of the tx table body, defaults to '17050000000'."
746746
)
747747
(
748748
"database.tx_rate",

0 commit comments

Comments
 (0)