From 47c8864758399a83b5a80e2a8a31ea316b06505d Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Tue, 8 Apr 2025 14:18:32 -0400 Subject: BSM bugfixes --- benchmarks/tail-latency/insert_query_threads.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'benchmarks/tail-latency/insert_query_threads.cpp') diff --git a/benchmarks/tail-latency/insert_query_threads.cpp b/benchmarks/tail-latency/insert_query_threads.cpp index fe001ea..0d92fde 100644 --- a/benchmarks/tail-latency/insert_query_threads.cpp +++ b/benchmarks/tail-latency/insert_query_threads.cpp @@ -103,10 +103,10 @@ int main(int argc, char **argv) { std::vector sfs = {8}; //, 4, 8, 16, 32, 64, 128, 256, 512, 1024}; size_t buffer_size = 8000; - std::vector policies = {1, 2, 0}; + std::vector policies = {2}; std::vector thread_counts = {8}; - std::vector modifiers = {0, 1, 2, 3}; + std::vector modifiers = {0}; std::vector scale_factors = {2, 3, 4, 5, 6, 7, 8}; size_t insert_threads = 1; @@ -178,7 +178,8 @@ int main(int argc, char **argv) { size_t query_lat = (double)total_query_time.load() / (double)total_query_count.load(); - fprintf(stdout, "%ld\t%ld\t%ld\t%ld\t%ld\t%ld\n", internal_thread_cnt, pol, sf, mod, + fprintf(stdout, "%ld\t%ld\t%ld\t%ld\t%ld\t%ld\t%ld\t%ld\n", internal_thread_cnt, pol, sf, + mod, extension->get_height(), extension->get_shard_count(), insert_tput, query_lat); fflush(stdout); -- cgit v1.2.3