From 81bbf7e1d4ab79436ea0a5b290432c618dd71716 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Fri, 27 Dec 2024 13:01:28 -0500 Subject: [PATCH] throttle: set default to 0.0 Longer latency testing runs are not showing a consistent gain from a throttle factor of 1.0. Make the default more conservative. Signed-off-by: Zygo Blaxell --- src/bees.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bees.cc b/src/bees.cc index b27d102..079c13d 100644 --- a/src/bees.cc +++ b/src/bees.cc @@ -305,7 +305,7 @@ bees_unreadahead(int const fd, off_t offset, size_t size) BEESCOUNTADD(readahead_unread_ms, unreadahead_timer.age() * 1000); } -static double bees_throttle_factor = 1.0; +static double bees_throttle_factor = 0.0; void bees_throttle(const double time_used, const char *const context)