From 1957b2dd33b244754cd47db05f831a7627b8031e Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Fri, 25 Apr 2025 12:28:31 -0400 Subject: Scheduler statistics tracking update The current scheme is really inefficient in terms of retreival of the results, but keeps the critical path mostly clear. It's probably worth it to do a more organized tracking of the data as it comes in, to avoid an n^2 statistics generation step at the end. --- include/framework/util/Configuration.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/framework/util') diff --git a/include/framework/util/Configuration.h b/include/framework/util/Configuration.h index 2b8a7fc..dde87fe 100644 --- a/include/framework/util/Configuration.h +++ b/include/framework/util/Configuration.h @@ -44,6 +44,8 @@ class DEConfiguration { size_t minimum_query_threads = 4; size_t maximum_memory_usage = 0; /* o for unbounded */ + size_t physical_core_count = 6; + size_t buffer_flush_query_preemption_trigger = UINT64_MAX; }; -- cgit v1.2.3