From 27b239cd36a68350f1bcb2c55b9e1632e6f26ee3 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 17 Sep 2025 19:18:44 -0400 Subject: Implemented dynamic insertion rate adjustment The insertion rate will now be updated on the fly to block inserts based on the sum of the predicted runtime and record counts for currently active reconstructions. The scheduling system now also calls into the runtime prediction system and handles this data appropriately. All that remains is to implement the prediction models themselves--then we should be good to test. --- include/framework/scheduling/Task.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/framework/scheduling') diff --git a/include/framework/scheduling/Task.h b/include/framework/scheduling/Task.h index b2884c7..4529b2e 100644 --- a/include/framework/scheduling/Task.h +++ b/include/framework/scheduling/Task.h @@ -38,6 +38,7 @@ struct ReconstructionArgs { void *extension; ReconstructionPriority priority; size_t initial_version; + long predicted_runtime; }; template Q, typename DE> struct QueryArgs { -- cgit v1.2.3