Skip to content

Commit bc798c7

Browse files
committedFeb 26, 2025
Update parser for table changes.
1 parent b1564ae commit bc798c7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎src/parser.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -76,24 +76,24 @@ parser::parser(system::chain::selection context) NOEXCEPT
7676
configured.database.header_size = 21'000'000;
7777
configured.database.header_rate = 5;
7878

79-
configured.database.input_size = 93'050'000'000;
79+
configured.database.input_size = 92'500'000'000;
8080
configured.database.input_rate = 5;
8181

8282
configured.database.output_size = 25'300'000'000;
8383
configured.database.output_rate = 5;
8484

8585
configured.database.point_bits = 31;
86-
configured.database.point_size = 21'100'000'000;
86+
configured.database.point_size = 25'700'000'000;
8787
configured.database.point_rate = 5;
8888

89-
configured.database.ins_size = 10'500'000'000;
89+
configured.database.ins_size = 8'550'000'000;
9090
configured.database.ins_rate = 5;
9191

9292
configured.database.puts_size = 3'700'000'000;
9393
configured.database.puts_rate = 5;
9494

9595
configured.database.tx_bits = 30;
96-
configured.database.tx_size = 17'050'000'000;
96+
configured.database.tx_size = 17'000'000'000;
9797
configured.database.tx_rate = 5;
9898

9999
configured.database.txs_bits = 20;
@@ -672,7 +672,7 @@ options_metadata parser::load_settings() THROWS
672672
(
673673
"database.input_size",
674674
value<uint64_t>(&configured.database.input_size),
675-
"The minimum allocation of the input table body, defaults to '93050000000'."
675+
"The minimum allocation of the input table body, defaults to '92500000000'."
676676
)
677677
(
678678
"database.input_rate",
@@ -701,7 +701,7 @@ options_metadata parser::load_settings() THROWS
701701
(
702702
"database.point_size",
703703
value<uint64_t>(&configured.database.point_size),
704-
"The minimum allocation of the point table body, defaults to '21100000000'."
704+
"The minimum allocation of the point table body, defaults to '25700000000'."
705705
)
706706
(
707707
"database.point_rate",
@@ -713,7 +713,7 @@ options_metadata parser::load_settings() THROWS
713713
(
714714
"database.ins_size",
715715
value<uint64_t>(&configured.database.ins_size),
716-
"The minimum allocation of the point table body, defaults to '10500000000'."
716+
"The minimum allocation of the point table body, defaults to '8550000000'."
717717
)
718718
(
719719
"database.ins_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 '17050000000'."
745+
"The minimum allocation of the tx table body, defaults to '17000000000'."
746746
)
747747
(
748748
"database.tx_rate",

0 commit comments

Comments
 (0)