@@ -82,9 +82,12 @@ parser::parser(system::chain::selection context) NOEXCEPT
8282 configured.database .output_size = 25'300'000'000 ;
8383 configured.database .output_rate = 5 ;
8484
85- configured.database .point_size = 32'000 '000'000 ;
85+ configured.database .point_size = 21'100 '000'000 ;
8686 configured.database .point_rate = 5 ;
8787
88+ configured.database .ins_size = 10'500'000'000 ;
89+ configured.database .ins_rate = 5 ;
90+
8891 configured.database .puts_size = 3'700'000'000 ;
8992 configured.database .puts_rate = 5 ;
9093
@@ -696,14 +699,26 @@ options_metadata parser::load_settings() THROWS
696699 (
697700 " database.point_size" ,
698701 value<uint64_t >(&configured.database .point_size ),
699- " The minimum allocation of the point table body, defaults to '32000000000 '."
702+ " The minimum allocation of the point table body, defaults to '21100000000 '."
700703 )
701704 (
702705 " database.point_rate" ,
703706 value<uint16_t >(&configured.database .point_rate ),
704707 " The percentage expansion of the point table body, defaults to '5'."
705708 )
706709
710+ /* ins */
711+ (
712+ " database.ins_size" ,
713+ value<uint64_t >(&configured.database .ins_size ),
714+ " The minimum allocation of the point table body, defaults to '10500000000'."
715+ )
716+ (
717+ " database.ins_rate" ,
718+ value<uint16_t >(&configured.database .ins_rate ),
719+ " The percentage expansion of the ins table body, defaults to '5'."
720+ )
721+
707722 /* puts */
708723 (
709724 " database.puts_size" ,
0 commit comments