Skip to content

Commit c529429

Browse files
Matan-Bathanatos
authored andcommitted
crimson/tools/store_bench: bump up blocked_reactor_notify_ms
Signed-off-by: Matan Breizman <[email protected]>
1 parent 7b2c103 commit c529429

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/crimson/tools/store_bench/store-bench.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,9 +532,11 @@ int main(int argc, char **argv) {
532532
return 1;
533533
}
534534

535-
seastar::app_template::config app_cfg;
535+
seastar::app_template::seastar_options app_cfg;
536536
app_cfg.name = "crimson-store-bench";
537-
app_cfg.auto_handle_sigint_sigterm = false;
537+
app_cfg.auto_handle_sigint_sigterm = true;
538+
// Only show "Reactor stalled for" above 200ms
539+
app_cfg.reactor_opts.blocked_reactor_notify_ms.set_default_value(200);
538540
seastar::app_template app(std::move(app_cfg));
539541

540542
std::string work_load_type = "pg_log";

0 commit comments

Comments
 (0)