From 1313bf520e23d49635e4bfdde26d0106b990e25f Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Sat, 17 Dec 2022 12:11:00 -0500 Subject: [PATCH 01/49] implemented not tested --- common.h | 3 +- get_traces_by_structure.cc | 122 +++++++++++++++++++------------------ get_traces_by_structure.h | 11 ++++ 3 files changed, 77 insertions(+), 59 deletions(-) diff --git a/common.h b/common.h index ed5ca15..6a0d710 100644 --- a/common.h +++ b/common.h @@ -30,10 +30,11 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-hopefully-final"; +const char BUCKETS_SUFFIX[] = "-quest-test-new-bucket"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; +const char LIST_HASHES_BUCKET_PREFIX[] = "list-hashes"; // regarding the hack of changing buckets to folders const char SERVICES_BUCKET_PREFIX[] = "microservices"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 1e9dcc4..cdd296b 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -9,70 +9,85 @@ StatusOr get_traces_by_structure( boost::posix_time::time_duration dur = stop - start; print_update("Time to initialize thread pool: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); - std::string prefix_to_search = std::string(TRACE_HASHES_BUCKET_PREFIX) + std::string(BUCKETS_SUFFIX); - start_retrieve_prefixes = boost::posix_time::microsec_clock::local_time(); + std::vector>>> response_futures; + StatusOr> data_fulfilling_query = filter_data_by_query( + query_trace, start_time, end_time, client); + if (!data_fulfilling_query.ok()) { + std::cerr << "couldn't get data fulflling query" << std::endl; + return data_fulfilling_query.status(); + } - std::vector>> future_potential_prefixes; - for (auto&& prefix : client->ListObjectsAndPrefixes(prefix_to_search, gcs::Delimiter("/"))) { - if (!prefix) { - std::cerr << "Error in getting prefixes" << std::endl; - return prefix.status(); - } + traces_by_structure to_return; - auto result = *std::move(prefix); - if (false == absl::holds_alternative(result)) { - std::cerr << "Error in getting prefixes" << std::endl; - return Status( - google::cloud::StatusCode::kUnavailable, "error while moving prefix in get_traces_by_structure"); - } + for (int64_t i=0; i < data_fulfilling_query->size(); i++) { + merge_traces_by_struct(data_fulfilling_query.value()[i], &to_return); - // Get mapping from batch name to prefix and trace ID. - future_potential_prefixes.push_back(pool.submit( - get_potential_prefixes, absl::get(result), client)); } + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop - start; + print_update("Time to go through structural filter: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + + return to_return; +} - // Now map from batch name to prefix and trace ID, so you can check - // exemplar validity using the same data. - std::unordered_map>> batch_name_map; - for (int64_t i=0; i < future_potential_prefixes.size(); i++) { - StatusOr p = future_potential_prefixes[i].get(); - if (!p.ok()) { std::cerr << "can't get prefixes" << std::endl; return p.status(); } - batch_name_map[p->batch_name].push_back(std::make_pair(p->prefix, p->trace_id)); +std::string get_root_service_name(const std::string &trace) { + for (const std::string& line : split_by_string(trace, newline)) { + if (line.substr(0, 1) == ":") { + return split_by_string(line, colon)[2]; + } } - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop - start_retrieve_prefixes; - print_update("Time to retrieve prefixes: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + return ""; +} - start_get_batches = boost::posix_time::microsec_clock::local_time(); - std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop - start_get_batches; - print_update("Time to get batches between timestamps: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); - std::vector>>> response_futures; - for (auto& [batch_name, prefix_and_trace_id] : batch_name_map) { - response_futures.push_back(pool.submit( - filter_by_query, batch_name, std::ref(prefix_and_trace_id), - query_trace, start_time, end_time, all_object_names, false, client)); +// Returns empty string if doesn't fit query +StatusOr read_object_and_determine_if_fits_query(trace_structure &query_trace, + std::string &bucket_name, std::string object_name, std::vector &all_object_names, + time_t start_time, time_t end_time, gcs::Client* client) { + traces_by_structure ts; + StatusOr trace = read_object(bucket_name, object_name, client); + auto valid = check_examplar_validity(trace.value(), query_trace, ts); + if (!valid.ok()) { + return valid.status(); + } + if (!valid.value()) { + traces_by_structure empty; + return empty; } + auto root_service_name = get_root_service_name(trace.value()); + for (auto batch_name : all_object_names) { + auto status = get_traces_by_structure_data( + client, object_name, batch_name, + root_service_name, start_time, end_time, ts); - traces_by_structure to_return; + if (!status.ok()) { + return status; + } + } + return ts; +} + +StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client) { + std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; + std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); + std::vector to_return; - for (int64_t i=0; i < response_futures.size(); i++) { - StatusOr> values_to_return = response_futures[i].get(); - if (!values_to_return.ok()) { - std::cerr << "so sad for you, response futures are bad" << std::endl; - return values_to_return.status(); + // here, we list all the objects in the bucket, because there is only one + // object per prefix + for (auto&& object_metadata : client->ListObjects(list_bucket_name, gcs::Delimiter("/"))) { + if (!object_metadata) { + std::cerr << "Error in getting list objects" << std::endl; + return object_metadata.status(); } - for (auto ele : values_to_return.value()) { - merge_traces_by_struct(ele, &to_return); + StatusOr cur_traces_by_structure = read_object_and_determine_if_fits_query( + query_trace, list_bucket_name, object_metadata->name(), all_object_names, start_time, end_time, client); + if (!cur_traces_by_structure.ok()) { + std::cerr << "sad, there's been an error" << std::endl; + return cur_traces_by_structure.status(); } + to_return.push_back(cur_traces_by_structure.value()); } - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop - start; - print_update("Time to go through structural filter: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); - return to_return; } @@ -341,15 +356,6 @@ StatusOr> filter_by_query(std::string batch_nam } -std::string get_root_service_name(const std::string &trace) { - for (const std::string& line : split_by_string(trace, newline)) { - if (line.substr(0, 1) == ":") { - return split_by_string(line, colon)[2]; - } - } - return ""; -} - StatusOr> filter_trace_ids_based_on_query_timestamp_for_given_root_service( std::vector &trace_ids, std::string &batch_name, diff --git a/get_traces_by_structure.h b/get_traces_by_structure.h index 84f3fe6..acc1200 100644 --- a/get_traces_by_structure.h +++ b/get_traces_by_structure.h @@ -142,4 +142,15 @@ StatusOr> filter_by_query(std::string batch_nam std::vector> &prefix_to_trace_ids, trace_structure query_trace, int start_time, int end_time, const std::vector& all_object_names, bool verbose, gcs::Client* client); +StatusOr check_examplar_validity( + std::string examplar, trace_structure query_trace, traces_by_structure& to_return); +Status get_traces_by_structure_data( + gcs::Client* client, + std::string prefix, + std::string batch_name, + std::string root_service_name, + time_t start_time, time_t end_time, + traces_by_structure& to_return +); +StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client); #endif // BY_STRUCT_H_ // NOLINT From 121879cccb84efbcb11b1de1254508dd6db8756c Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Sat, 17 Dec 2022 15:15:26 -0500 Subject: [PATCH 02/49] parallelized for easy testing --- common.cc | 3 +++ common.h | 2 +- get_traces_by_structure.cc | 20 +++++++++++++++++--- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/common.cc b/common.cc index dfafad7..2f5a237 100644 --- a/common.cc +++ b/common.cc @@ -109,6 +109,9 @@ bool is_spans_bucket(std::string bucket) { return false; } + if (true == has_prefix(bucket, LIST_HASHES_BUCKET_PREFIX)) { + return false; + } return true; } diff --git a/common.h b/common.h index 6a0d710..633b8d4 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-test-new-bucket"; +const char BUCKETS_SUFFIX[] = "-quest-with-print"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index cdd296b..d307007 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -47,7 +47,13 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru time_t start_time, time_t end_time, gcs::Client* client) { traces_by_structure ts; StatusOr trace = read_object(bucket_name, object_name, client); - auto valid = check_examplar_validity(trace.value(), query_trace, ts); + if (!trace.ok()) { + std::cout << "could not read trace" << "with bucket name " << bucket_name << "and object name " << object_name << std::endl; + std::cout << "trace status code " << trace.status().code() << std::endl; + return trace.status(); + } + std::string cleaned_trace = strip_from_the_end(trace.value().substr(0, trace->size()), '\n'); + auto valid = check_examplar_validity(cleaned_trace, query_trace, ts); if (!valid.ok()) { return valid.status(); } @@ -55,6 +61,7 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru traces_by_structure empty; return empty; } + std::cout << "fits the query!" << std::endl; auto root_service_name = get_root_service_name(trace.value()); for (auto batch_name : all_object_names) { auto status = get_traces_by_structure_data( @@ -71,17 +78,23 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client) { std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); + BS::thread_pool pool(500); std::vector to_return; // here, we list all the objects in the bucket, because there is only one // object per prefix + std::vector>> future_traces_by_struct; for (auto&& object_metadata : client->ListObjects(list_bucket_name, gcs::Delimiter("/"))) { if (!object_metadata) { std::cerr << "Error in getting list objects" << std::endl; return object_metadata.status(); } - StatusOr cur_traces_by_structure = read_object_and_determine_if_fits_query( - query_trace, list_bucket_name, object_metadata->name(), all_object_names, start_time, end_time, client); + future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, + std::ref(query_trace), std::ref(list_bucket_name), object_metadata->name(), std::ref(all_object_names), start_time, end_time, client + )); + } + for (int64_t i=0; i < future_traces_by_struct.size(); i++) { + StatusOr cur_traces_by_structure = future_traces_by_struct[i].get(); if (!cur_traces_by_structure.ok()) { std::cerr << "sad, there's been an error" << std::endl; return cur_traces_by_structure.status(); @@ -474,6 +487,7 @@ trace_structure morph_trace_object_to_trace_structure(std::string &trace) { std::vector span_info = split_by_string(line, colon); if (span_info.size() != 4) { std::cerr << "Malformed trace found: \n" << trace << std::endl; + std::cerr << "Line was : \n" << line << std::endl; return response; } From 7afd94bcf42398fa1242d6d65c69f39991a51825 Mon Sep 17 00:00:00 2001 From: jessberg Date: Sat, 17 Dec 2022 21:06:15 +0000 Subject: [PATCH 03/49] simpler version done and works on duration query --- get_traces_by_structure.cc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index d307007..1ef7429 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -62,11 +62,13 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return empty; } std::cout << "fits the query!" << std::endl; + std::cout << "len all object names is " << all_object_names.size() << std::endl; auto root_service_name = get_root_service_name(trace.value()); for (auto batch_name : all_object_names) { auto status = get_traces_by_structure_data( client, object_name, batch_name, root_service_name, start_time, end_time, ts); + std::cout << "trace ids: " << ts.trace_ids.size() << std::endl; if (!status.ok()) { return status; @@ -99,6 +101,10 @@ StatusOr> filter_data_by_query(trace_structure std::cerr << "sad, there's been an error" << std::endl; return cur_traces_by_structure.status(); } + traces_by_structure empty; + if (cur_traces_by_structure->trace_ids.size() != 0) { + std::cout << "not empty!" << std::endl; + } to_return.push_back(cur_traces_by_structure.value()); } return to_return; @@ -215,12 +221,14 @@ Status get_traces_by_structure_data( time_t start_time, time_t end_time, traces_by_structure& to_return ) { - auto hashes_bucket_object_name = prefix + batch_name; + std::cout << "prefix is " << prefix << "and batch is " << batch_name << std::endl; + auto hashes_bucket_object_name = prefix + "/" + batch_name; if (false == is_object_within_timespan(extract_batch_timestamps(batch_name), start_time, end_time)) { return Status(); } + std::cout << "calling get trace ids from trace hashes object with arg " << hashes_bucket_object_name << std::endl; auto response_trace_ids_or_status = get_trace_ids_from_trace_hashes_object(hashes_bucket_object_name, client); if (!response_trace_ids_or_status.ok()) { @@ -231,6 +239,7 @@ Status get_traces_by_structure_data( auto response_trace_ids = response_trace_ids_or_status.value(); if (response_trace_ids.size() < 1) { + std::cout << "no trace ids in the trace hashes object" << std::endl; return Status(); } From d2b68217c3035de3cad01da371ff352d95fabfb4 Mon Sep 17 00:00:00 2001 From: jessberg Date: Sat, 17 Dec 2022 21:35:23 +0000 Subject: [PATCH 04/49] doesn't help sadge --- get_traces_by_structure.cc | 55 +++++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 15 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 1ef7429..9e45c6e 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -4,9 +4,7 @@ StatusOr get_traces_by_structure( trace_structure query_trace, int start_time, int end_time, bool verbose, gcs::Client* client) { boost::posix_time::ptime start, stop, start_retrieve_prefixes, start_get_batches; start = boost::posix_time::microsec_clock::local_time(); - BS::thread_pool pool(500); - stop = boost::posix_time::microsec_clock::local_time(); - boost::posix_time::time_duration dur = stop - start; + boost::posix_time::time_duration dur; print_update("Time to initialize thread pool: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); @@ -45,6 +43,12 @@ std::string get_root_service_name(const std::string &trace) { StatusOr read_object_and_determine_if_fits_query(trace_structure &query_trace, std::string &bucket_name, std::string object_name, std::vector &all_object_names, time_t start_time, time_t end_time, gcs::Client* client) { + + bool verbose = false; + boost::posix_time::ptime start, stop, start_batches; + start = boost::posix_time::microsec_clock::local_time(); + boost::posix_time::time_duration dur; + traces_by_structure ts; StatusOr trace = read_object(bucket_name, object_name, client); if (!trace.ok()) { @@ -52,6 +56,8 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru std::cout << "trace status code " << trace.status().code() << std::endl; return trace.status(); } + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; std::string cleaned_trace = strip_from_the_end(trace.value().substr(0, trace->size()), '\n'); auto valid = check_examplar_validity(cleaned_trace, query_trace, ts); if (!valid.ok()) { @@ -61,32 +67,45 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru traces_by_structure empty; return empty; } - std::cout << "fits the query!" << std::endl; - std::cout << "len all object names is " << all_object_names.size() << std::endl; + print_update("Time to retrieve first obj: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); auto root_service_name = get_root_service_name(trace.value()); + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; + print_update("Time for everything except getting data: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + start_batches= boost::posix_time::microsec_clock::local_time(); for (auto batch_name : all_object_names) { auto status = get_traces_by_structure_data( client, object_name, batch_name, root_service_name, start_time, end_time, ts); - std::cout << "trace ids: " << ts.trace_ids.size() << std::endl; if (!status.ok()) { return status; } } + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start_batches; + print_update("Time for batches: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + dur = stop-start; + print_update("Time for read object and get data: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); return ts; } StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client) { + + boost::posix_time::ptime start, stop, start_batches; + start = boost::posix_time::microsec_clock::local_time(); + boost::posix_time::time_duration dur; + + std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); - BS::thread_pool pool(500); + BS::thread_pool pool(700); std::vector to_return; // here, we list all the objects in the bucket, because there is only one // object per prefix std::vector>> future_traces_by_struct; - for (auto&& object_metadata : client->ListObjects(list_bucket_name, gcs::Delimiter("/"))) { + for (auto&& object_metadata : client->ListObjects(list_bucket_name)) { if (!object_metadata) { std::cerr << "Error in getting list objects" << std::endl; return object_metadata.status(); @@ -95,18 +114,27 @@ StatusOr> filter_data_by_query(trace_structure std::ref(query_trace), std::ref(list_bucket_name), object_metadata->name(), std::ref(all_object_names), start_time, end_time, client )); } + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; + print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", true); + /* + for (int i=0; i<5; i++) { + std::cout << "tasks queued: " << pool.get_tasks_queued() << std::endl; + std::cout << "tasks running: " << pool.get_tasks_running() << std::endl; + sleep(1); + } + */ for (int64_t i=0; i < future_traces_by_struct.size(); i++) { StatusOr cur_traces_by_structure = future_traces_by_struct[i].get(); if (!cur_traces_by_structure.ok()) { std::cerr << "sad, there's been an error" << std::endl; return cur_traces_by_structure.status(); } - traces_by_structure empty; - if (cur_traces_by_structure->trace_ids.size() != 0) { - std::cout << "not empty!" << std::endl; - } to_return.push_back(cur_traces_by_structure.value()); } + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; + print_update("Time for filter data by query: " + std::to_string(dur.total_milliseconds()) + "\n", true); return to_return; } @@ -221,14 +249,12 @@ Status get_traces_by_structure_data( time_t start_time, time_t end_time, traces_by_structure& to_return ) { - std::cout << "prefix is " << prefix << "and batch is " << batch_name << std::endl; auto hashes_bucket_object_name = prefix + "/" + batch_name; if (false == is_object_within_timespan(extract_batch_timestamps(batch_name), start_time, end_time)) { return Status(); } - std::cout << "calling get trace ids from trace hashes object with arg " << hashes_bucket_object_name << std::endl; auto response_trace_ids_or_status = get_trace_ids_from_trace_hashes_object(hashes_bucket_object_name, client); if (!response_trace_ids_or_status.ok()) { @@ -239,7 +265,6 @@ Status get_traces_by_structure_data( auto response_trace_ids = response_trace_ids_or_status.value(); if (response_trace_ids.size() < 1) { - std::cout << "no trace ids in the trace hashes object" << std::endl; return Status(); } From 773d8a948143076c0fe900e10be8d84414b3a937 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 13:38:38 -0500 Subject: [PATCH 05/49] forgot a slash --- common.h | 2 +- get_traces_by_structure.cc | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/common.h b/common.h index 633b8d4..7d7d920 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-with-print"; +const char BUCKETS_SUFFIX[] = "-quest-test-parallel"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index d307007..16443cc 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -61,7 +61,6 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru traces_by_structure empty; return empty; } - std::cout << "fits the query!" << std::endl; auto root_service_name = get_root_service_name(trace.value()); for (auto batch_name : all_object_names) { auto status = get_traces_by_structure_data( @@ -215,7 +214,7 @@ Status get_traces_by_structure_data( time_t start_time, time_t end_time, traces_by_structure& to_return ) { - auto hashes_bucket_object_name = prefix + batch_name; + auto hashes_bucket_object_name = prefix + "/" + batch_name; if (false == is_object_within_timespan(extract_batch_timestamps(batch_name), start_time, end_time)) { return Status(); From f296e3837e9b276f30da5885b3d83b25c68f733a Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 14:57:26 -0500 Subject: [PATCH 06/49] parallelized --- common.cc | 29 +++++++++++++++++++++++++++++ common.h | 1 + get_traces_by_structure.cc | 9 +++------ 3 files changed, 33 insertions(+), 6 deletions(-) diff --git a/common.cc b/common.cc index 2f5a237..6843a21 100644 --- a/common.cc +++ b/common.cc @@ -431,6 +431,35 @@ std::vector get_list_result(gcs::Client* client, std::string prefix return to_return; } +std::vector list_objects_in_bucket_by_prefix(gcs::Client* client, + const std::string& bucket_name, const std::string prefix) { + std::vector to_return; + for (auto&& object_metadata : client->ListObjects(bucket_name, gcs::Prefix(prefix))) { + if (!object_metadata) { + throw std::runtime_error(object_metadata.status().message()); + } + to_return.push_back(object_metadata->name()); + } + return to_return; +} + +std::vector list_objects_in_bucket(gcs::Client* client, std::string bucket_name) { + std::vector>> future_object_names; + for (int64_t i = 0; i < 10; i++) { + for (int64_t j = 0; j < 10; j++) { + std::string new_prefix = std::to_string(i) + std::to_string(j); + future_object_names.push_back(std::async(std::launch::async, + list_objects_in_bucket_by_prefix, client, bucket_name, new_prefix)); + } + } + std::vector to_return; + for (int64_t i=0; i < future_object_names.size(); i++) { + auto partial_names = future_object_names[i].get(); + to_return.insert(to_return.end(), partial_names.begin(), partial_names.end()); + } + return to_return; +} + std::vector get_batches_between_timestamps(gcs::Client* client, time_t earliest, time_t latest) { std::vector prefixes = generate_prefixes(earliest, latest); std::vector>> object_names; diff --git a/common.h b/common.h index 7d7d920..542cf5b 100644 --- a/common.h +++ b/common.h @@ -89,6 +89,7 @@ std::map> get_root_service_to_trace_ids_ma std::string extract_any_trace(std::vector& trace_ids, std::string& object_content); std::string extract_trace_from_traces_object(const std::string &trace_id, std::string& object_content); std::vector get_batches_between_timestamps(gcs::Client* client, time_t earliest, time_t latest); +std::vector list_objects_in_bucket(gcs::Client* client, std::string bucket_name); time_t get_lowest_time_val(gcs::Client* client); /// **************** GCS processing ******************************** diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 9e45c6e..3f10ee0 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -105,13 +105,10 @@ StatusOr> filter_data_by_query(trace_structure // here, we list all the objects in the bucket, because there is only one // object per prefix std::vector>> future_traces_by_struct; - for (auto&& object_metadata : client->ListObjects(list_bucket_name)) { - if (!object_metadata) { - std::cerr << "Error in getting list objects" << std::endl; - return object_metadata.status(); - } + std::vector bucket_objs = list_objects_in_bucket(client, list_bucket_name); + for (std::string& prefix : bucket_objs) { future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, - std::ref(query_trace), std::ref(list_bucket_name), object_metadata->name(), std::ref(all_object_names), start_time, end_time, client + std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, client )); } stop = boost::posix_time::microsec_clock::local_time(); From df676f261d483fcb7ffce99ce86e533a84fb0e39 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 15:00:39 -0500 Subject: [PATCH 07/49] better printing --- get_traces_by_structure.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 3f10ee0..c7eddac 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -105,15 +105,16 @@ StatusOr> filter_data_by_query(trace_structure // here, we list all the objects in the bucket, because there is only one // object per prefix std::vector>> future_traces_by_struct; + start = boost::posix_time::microsec_clock::local_time(); std::vector bucket_objs = list_objects_in_bucket(client, list_bucket_name); + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; + print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", true); for (std::string& prefix : bucket_objs) { future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, client )); } - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop-start; - print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", true); /* for (int i=0; i<5; i++) { std::cout << "tasks queued: " << pool.get_tasks_queued() << std::endl; From 363ebce0dfa4a1c62b318f18417e9be92d5507c9 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 15:05:41 -0500 Subject: [PATCH 08/49] thread pool --- common.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common.cc b/common.cc index 6843a21..f75cad0 100644 --- a/common.cc +++ b/common.cc @@ -445,10 +445,11 @@ std::vector list_objects_in_bucket_by_prefix(gcs::Client* client, std::vector list_objects_in_bucket(gcs::Client* client, std::string bucket_name) { std::vector>> future_object_names; + BS::thread_pool pool(500); for (int64_t i = 0; i < 10; i++) { for (int64_t j = 0; j < 10; j++) { std::string new_prefix = std::to_string(i) + std::to_string(j); - future_object_names.push_back(std::async(std::launch::async, + future_object_names.push_back(pool.submit( list_objects_in_bucket_by_prefix, client, bucket_name, new_prefix)); } } From 3e579e4430f296d62edf7a44d89c277932aa78ae Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 15:09:03 -0500 Subject: [PATCH 09/49] better timing --- get_traces_by_structure.cc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index c7eddac..93b5b76 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -92,23 +92,27 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client) { - boost::posix_time::ptime start, stop, start_batches; + boost::posix_time::ptime start, stop, start_batches, start_list_objects; start = boost::posix_time::microsec_clock::local_time(); boost::posix_time::time_duration dur; + start = boost::posix_time::microsec_clock::local_time(); std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; + print_update("Time to get all object names: " + std::to_string(dur.total_milliseconds()) + "\n", true); BS::thread_pool pool(700); std::vector to_return; // here, we list all the objects in the bucket, because there is only one // object per prefix std::vector>> future_traces_by_struct; - start = boost::posix_time::microsec_clock::local_time(); + start_list_objects = boost::posix_time::microsec_clock::local_time(); std::vector bucket_objs = list_objects_in_bucket(client, list_bucket_name); stop = boost::posix_time::microsec_clock::local_time(); - dur = stop-start; + dur = stop-start_list_objects; print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", true); for (std::string& prefix : bucket_objs) { future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, From 948b99619c5643ece56eeb4a9ab97ca06ed2da04 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 15:21:25 -0500 Subject: [PATCH 10/49] more timing info --- get_traces_by_structure.cc | 26 ++++++++------------------ get_traces_by_structure.h | 2 +- graph_query_main.cc | 2 +- 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 93b5b76..7e1b9ec 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -10,7 +10,7 @@ StatusOr get_traces_by_structure( std::vector>>> response_futures; StatusOr> data_fulfilling_query = filter_data_by_query( - query_trace, start_time, end_time, client); + query_trace, start_time, end_time, verbose, client); if (!data_fulfilling_query.ok()) { std::cerr << "couldn't get data fulflling query" << std::endl; return data_fulfilling_query.status(); @@ -42,9 +42,8 @@ std::string get_root_service_name(const std::string &trace) { // Returns empty string if doesn't fit query StatusOr read_object_and_determine_if_fits_query(trace_structure &query_trace, std::string &bucket_name, std::string object_name, std::vector &all_object_names, - time_t start_time, time_t end_time, gcs::Client* client) { + time_t start_time, time_t end_time, bool verbose, gcs::Client* client) { - bool verbose = false; boost::posix_time::ptime start, stop, start_batches; start = boost::posix_time::microsec_clock::local_time(); boost::posix_time::time_duration dur; @@ -69,9 +68,6 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru } print_update("Time to retrieve first obj: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); auto root_service_name = get_root_service_name(trace.value()); - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop-start; - print_update("Time for everything except getting data: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); start_batches= boost::posix_time::microsec_clock::local_time(); for (auto batch_name : all_object_names) { auto status = get_traces_by_structure_data( @@ -82,28 +78,24 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return status; } } - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop-start_batches; - print_update("Time for batches: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); dur = stop-start; print_update("Time for read object and get data: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); return ts; } -StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client) { +StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, bool verbose, gcs::Client* client) { boost::posix_time::ptime start, stop, start_batches, start_list_objects; start = boost::posix_time::microsec_clock::local_time(); boost::posix_time::time_duration dur; - start = boost::posix_time::microsec_clock::local_time(); std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; - print_update("Time to get all object names: " + std::to_string(dur.total_milliseconds()) + "\n", true); - BS::thread_pool pool(700); + print_update("Time to get all object names: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + BS::thread_pool pool(800); std::vector to_return; // here, we list all the objects in the bucket, because there is only one @@ -113,19 +105,17 @@ StatusOr> filter_data_by_query(trace_structure std::vector bucket_objs = list_objects_in_bucket(client, list_bucket_name); stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start_list_objects; - print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", true); + print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); for (std::string& prefix : bucket_objs) { future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, - std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, client + std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, verbose, client )); } - /* for (int i=0; i<5; i++) { std::cout << "tasks queued: " << pool.get_tasks_queued() << std::endl; std::cout << "tasks running: " << pool.get_tasks_running() << std::endl; sleep(1); } - */ for (int64_t i=0; i < future_traces_by_struct.size(); i++) { StatusOr cur_traces_by_structure = future_traces_by_struct[i].get(); if (!cur_traces_by_structure.ok()) { @@ -136,7 +126,7 @@ StatusOr> filter_data_by_query(trace_structure } stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; - print_update("Time for filter data by query: " + std::to_string(dur.total_milliseconds()) + "\n", true); + print_update("Time for filter data by query: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); return to_return; } diff --git a/get_traces_by_structure.h b/get_traces_by_structure.h index acc1200..890e416 100644 --- a/get_traces_by_structure.h +++ b/get_traces_by_structure.h @@ -152,5 +152,5 @@ Status get_traces_by_structure_data( time_t start_time, time_t end_time, traces_by_structure& to_return ); -StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, gcs::Client* client); +StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, bool verbose, gcs::Client* client); #endif // BY_STRUCT_H_ // NOLINT diff --git a/graph_query_main.cc b/graph_query_main.cc index e7bbbd0..ac23522 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -265,7 +265,7 @@ int main(int argc, char* argv[]) { std::vector times(n, 0); for (int i = 0; i < n; i++) { - auto time_taken = perform_query(data, false, 1670796531, 1670829563, &client); + auto time_taken = perform_query(data, true, 1670796531, 1670829563, &client); std::cout << "Time Taken: " << time_taken << " ms\n" << std::endl; times[i] = time_taken; } From 4184dd6c61eda34d42dd2ecc6a4913088b574531 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 15:37:08 -0500 Subject: [PATCH 11/49] better print outs --- get_traces_by_structure.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 7e1b9ec..98cb10e 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -55,8 +55,6 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru std::cout << "trace status code " << trace.status().code() << std::endl; return trace.status(); } - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop-start; std::string cleaned_trace = strip_from_the_end(trace.value().substr(0, trace->size()), '\n'); auto valid = check_examplar_validity(cleaned_trace, query_trace, ts); if (!valid.ok()) { @@ -66,7 +64,6 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru traces_by_structure empty; return empty; } - print_update("Time to retrieve first obj: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); auto root_service_name = get_root_service_name(trace.value()); start_batches= boost::posix_time::microsec_clock::local_time(); for (auto batch_name : all_object_names) { @@ -78,6 +75,7 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return status; } } + stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; print_update("Time for read object and get data: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); return ts; From a6ff6911fe2e1da349d1ccff6ae716b527f71b18 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Fri, 6 Jan 2023 15:59:25 -0500 Subject: [PATCH 12/49] now has pool --- graph_query.cc | 7 ++++++- graph_query_main.cc | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/graph_query.cc b/graph_query.cc index a0fadf1..138f0b9 100644 --- a/graph_query.cc +++ b/graph_query.cc @@ -72,10 +72,15 @@ std::vector query( std::cout << "intersection size is " << intersection.size() << std::endl; + // At this point, we should switch from creating threads by need (per pool) + // to creating threads from a pool, since the number of batches may be + // very large + + BS::thread_pool pool(500); std::vector>> results_futures; results_futures.reserve(intersection.size()); for (auto &map : intersection) { - results_futures.push_back(std::async(std::launch::async, + results_futures.push_back(pool.submit( brute_force_per_batch, map.first, map.second, struct_results.value(), conditions, ret, query_trace, client)); diff --git a/graph_query_main.cc b/graph_query_main.cc index ac23522..994624e 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -240,7 +240,7 @@ int64_t perform_trace_query(std::string trace_id, time_t start_time, time_t end_ int main(int argc, char* argv[]) { auto client = gcs::Client(); - QueryData data = four_fan_out(); + QueryData data = duration_condition(); int n = 1; if (argc > 1) { n = std::stoi(argv[1]); From 2cec2a0bb4ba5d0d65c909d376d1553912be0489 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Mon, 9 Jan 2023 17:06:29 +0000 Subject: [PATCH 13/49] better pool sizes --- common.h | 2 +- get_traces_by_structure.cc | 2 +- graph_query.cc | 2 +- graph_query_main.cc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common.h b/common.h index 542cf5b..2dcea92 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-test-parallel"; +const char BUCKETS_SUFFIX[] = "-quest-test-parallel-2csvs"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 98cb10e..28cbd8c 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -93,7 +93,7 @@ StatusOr> filter_data_by_query(trace_structure stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; print_update("Time to get all object names: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); - BS::thread_pool pool(800); + BS::thread_pool pool(200); std::vector to_return; // here, we list all the objects in the bucket, because there is only one diff --git a/graph_query.cc b/graph_query.cc index 138f0b9..59c730f 100644 --- a/graph_query.cc +++ b/graph_query.cc @@ -76,7 +76,7 @@ std::vector query( // to creating threads from a pool, since the number of batches may be // very large - BS::thread_pool pool(500); + BS::thread_pool pool(100); std::vector>> results_futures; results_futures.reserve(intersection.size()); for (auto &map : intersection) { diff --git a/graph_query_main.cc b/graph_query_main.cc index 994624e..a88f99e 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -265,7 +265,7 @@ int main(int argc, char* argv[]) { std::vector times(n, 0); for (int i = 0; i < n; i++) { - auto time_taken = perform_query(data, true, 1670796531, 1670829563, &client); + auto time_taken = perform_query(data, false, 1670796531, 1670829563, &client); std::cout << "Time Taken: " << time_taken << " ms\n" << std::endl; times[i] = time_taken; } From 747c63198d3fa854f702723c86c42425fc2ceb19 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 18 Jan 2023 11:51:04 -0500 Subject: [PATCH 14/49] implemented not tested --- common.h | 2 ++ get_traces_by_structure.cc | 65 ++++++++++++++++++++++++++++++++++---- 2 files changed, 61 insertions(+), 6 deletions(-) diff --git a/common.h b/common.h index 2dcea92..f9e9386 100644 --- a/common.h +++ b/common.h @@ -35,6 +35,7 @@ const char BUCKETS_SUFFIX[] = "-quest-test-parallel-2csvs"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; const char LIST_HASHES_BUCKET_PREFIX[] = "list-hashes"; +const char HASHES_BY_SERVICE_BUCKET_PREFIX[] = "hashes-by-service"; // regarding the hack of changing buckets to folders const char SERVICES_BUCKET_PREFIX[] = "microservices"; @@ -42,6 +43,7 @@ const int TRACE_ID_LENGTH = 32; const int SPAN_ID_LENGTH = 16; const int element_count = 10000; const char hyphen[] = "-"; +const char slash[] = "/"; const char newline[] = "\n"; const char colon[] = ":"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 28cbd8c..16084c3 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -81,14 +81,67 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return ts; } +std::vector get_potential_prefixes(trace_structure &query_trace, bool verbose, gcs::Client* client) { + boost::posix_time::ptime start, stop, start_batches, start_list_objects; + start = boost::posix_time::microsec_clock::local_time(); + boost::posix_time::time_duration dur; + // If we know one or more microservice names, find their hashes and + // intersect them. + std::vector service_names; + for (auto &pair : query_trace.node_names) { + if (pair.second != "*") { + service_names.push_back(pair.second); + } + } + + if (service_names.size() == 0) { + std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; + // If we do not know any microservice names, simply return all objects + // in the list bucket. + start_list_objects = boost::posix_time::microsec_clock::local_time(); + std::vector bucket_objs = list_objects_in_bucket(client, list_bucket_name); + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start_list_objects; + print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + return bucket_objs; + } + + std::unordered_map hash_to_count; + std::string hash_by_microservice_bucket_name = std::string(HASHES_BY_SERVICE_BUCKET_PREFIX) + BUCKETS_SUFFIX; + for (std::string& service_name : service_names) { + std::vector hashes_for_microservice; + for (auto&& object_metadata : client->ListObjects(hash_by_microservice_bucket_name, gcs::Prefix(service_name))) { + if (!object_metadata) { + throw std::runtime_error(object_metadata.status().message()); + } + // name is service / hash + std::string hash = split_by_string(object_metadata->name(), slash)[1]; + if (hash_to_count.count(hash) == 0) { + hash_to_count[hash] = 1; + } else { + hash_to_count[hash]++; + } + } + } + + std::vector to_return; + // get hashes from hash to count + for (auto & pair : hash_to_count) { + if (pair.second == service_names.size()) { + to_return.push_back(pair.first); + } + } + return to_return; +} + StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, bool verbose, gcs::Client* client) { + std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; boost::posix_time::ptime start, stop, start_batches, start_list_objects; start = boost::posix_time::microsec_clock::local_time(); boost::posix_time::time_duration dur; start = boost::posix_time::microsec_clock::local_time(); - std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::vector all_object_names = get_batches_between_timestamps(client, start_time, end_time); stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; @@ -98,12 +151,12 @@ StatusOr> filter_data_by_query(trace_structure // here, we list all the objects in the bucket, because there is only one // object per prefix + std::vector bucket_objs = get_potential_prefixes(query_trace, verbose, client); std::vector>> future_traces_by_struct; - start_list_objects = boost::posix_time::microsec_clock::local_time(); - std::vector bucket_objs = list_objects_in_bucket(client, list_bucket_name); - stop = boost::posix_time::microsec_clock::local_time(); - dur = stop-start_list_objects; - print_update("Time to list: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + + + // Here, rather than listing all objects in the list bucket, we instead + // find the hashes by the microservice names. for (std::string& prefix : bucket_objs) { future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, verbose, client From c39d57b359aba03c5f9f1a154542c8d07adff25d Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 18 Jan 2023 14:01:29 -0500 Subject: [PATCH 15/49] it compiles --- get_traces_by_structure.cc | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 16084c3..d078f23 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -81,8 +81,22 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return ts; } +std::unordered_set get_hashes_for_microservice(std::string microservice, gcs::Client* client) { + std::string hash_by_microservice_bucket_name = std::string(HASHES_BY_SERVICE_BUCKET_PREFIX) + BUCKETS_SUFFIX; + std::unordered_set to_return; + for (auto&& object_metadata : client->ListObjects(hash_by_microservice_bucket_name, gcs::Prefix(microservice))) { + if (!object_metadata) { + throw std::runtime_error(object_metadata.status().message()); + } + // name is service / hash + std::string hash = split_by_string(object_metadata->name(), slash)[1]; + to_return.insert(hash); + } + return to_return; +} + std::vector get_potential_prefixes(trace_structure &query_trace, bool verbose, gcs::Client* client) { - boost::posix_time::ptime start, stop, start_batches, start_list_objects; + boost::posix_time::ptime start, stop, start_list_objects; start = boost::posix_time::microsec_clock::local_time(); boost::posix_time::time_duration dur; // If we know one or more microservice names, find their hashes and @@ -106,16 +120,14 @@ std::vector get_potential_prefixes(trace_structure &query_trace, bo return bucket_objs; } - std::unordered_map hash_to_count; - std::string hash_by_microservice_bucket_name = std::string(HASHES_BY_SERVICE_BUCKET_PREFIX) + BUCKETS_SUFFIX; + BS::thread_pool pool(20); + std::vector>> future_hashes; for (std::string& service_name : service_names) { - std::vector hashes_for_microservice; - for (auto&& object_metadata : client->ListObjects(hash_by_microservice_bucket_name, gcs::Prefix(service_name))) { - if (!object_metadata) { - throw std::runtime_error(object_metadata.status().message()); - } - // name is service / hash - std::string hash = split_by_string(object_metadata->name(), slash)[1]; + future_hashes.push_back(pool.submit(get_hashes_for_microservice, service_name, client)); + } + std::unordered_map hash_to_count; + for (int64_t i=0; i < future_hashes.size(); i++) { + for (auto & hash : future_hashes[i].get()) { if (hash_to_count.count(hash) == 0) { hash_to_count[hash] = 1; } else { From 031982290ba186a90046aee1e70af168e46f8012 Mon Sep 17 00:00:00 2001 From: jessberg Date: Wed, 18 Jan 2023 19:15:35 +0000 Subject: [PATCH 16/49] issue is parallelization --- common.h | 2 +- get_traces_by_structure.cc | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/common.h b/common.h index f9e9386..d7576f3 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-test-parallel-2csvs"; +const char BUCKETS_SUFFIX[] = "-quest-microservice-by-hash-try2"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index d078f23..62f2b2e 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -84,6 +84,10 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru std::unordered_set get_hashes_for_microservice(std::string microservice, gcs::Client* client) { std::string hash_by_microservice_bucket_name = std::string(HASHES_BY_SERVICE_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::unordered_set to_return; + boost::posix_time::ptime start, stop, start_list_objects; + boost::posix_time::time_duration dur; + + start = boost::posix_time::microsec_clock::local_time(); for (auto&& object_metadata : client->ListObjects(hash_by_microservice_bucket_name, gcs::Prefix(microservice))) { if (!object_metadata) { throw std::runtime_error(object_metadata.status().message()); @@ -92,6 +96,10 @@ std::unordered_set get_hashes_for_microservice(std::string microser std::string hash = split_by_string(object_metadata->name(), slash)[1]; to_return.insert(hash); } + stop = boost::posix_time::microsec_clock::local_time(); + dur = stop-start; + std::cout << "time for listing hashes of microservices : " << dur.total_milliseconds() << std::endl; + //print_update("Time for listing hashes of microservice: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); return to_return; } @@ -174,11 +182,13 @@ StatusOr> filter_data_by_query(trace_structure std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, verbose, client )); } + /* for (int i=0; i<5; i++) { std::cout << "tasks queued: " << pool.get_tasks_queued() << std::endl; std::cout << "tasks running: " << pool.get_tasks_running() << std::endl; sleep(1); } + */ for (int64_t i=0; i < future_traces_by_struct.size(); i++) { StatusOr cur_traces_by_structure = future_traces_by_struct[i].get(); if (!cur_traces_by_structure.ok()) { From a9f9897c0efccbc63d178f4f539141299c5349d0 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 18 Jan 2023 14:22:09 -0500 Subject: [PATCH 17/49] parallelization implemented, hopefully this is better --- get_traces_by_structure.cc | 36 ++++++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 62f2b2e..f60e762 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -81,14 +81,13 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return ts; } -std::unordered_set get_hashes_for_microservice(std::string microservice, gcs::Client* client) { +std::unordered_set get_hashes_for_microservice_with_prefix(std::string microservice, + std::string prefix, gcs::Client* client) { + std::string hash_by_microservice_bucket_name = std::string(HASHES_BY_SERVICE_BUCKET_PREFIX) + BUCKETS_SUFFIX; std::unordered_set to_return; - boost::posix_time::ptime start, stop, start_list_objects; - boost::posix_time::time_duration dur; - - start = boost::posix_time::microsec_clock::local_time(); - for (auto&& object_metadata : client->ListObjects(hash_by_microservice_bucket_name, gcs::Prefix(microservice))) { + for (auto&& object_metadata : client->ListObjects(hash_by_microservice_bucket_name, + gcs::Prefix(microservice+"/"+prefix))) { if (!object_metadata) { throw std::runtime_error(object_metadata.status().message()); } @@ -96,6 +95,31 @@ std::unordered_set get_hashes_for_microservice(std::string microser std::string hash = split_by_string(object_metadata->name(), slash)[1]; to_return.insert(hash); } + return to_return; +} + + +std::unordered_set get_hashes_for_microservice(std::string microservice, gcs::Client* client) { + std::unordered_set to_return; + boost::posix_time::ptime start, stop, start_list_objects; + boost::posix_time::time_duration dur; + + start = boost::posix_time::microsec_clock::local_time(); + BS::thread_pool pool(20); + std::vector>> future_hashes; + for (int64_t i = 0; i < 10; i++) { + for (int64_t j = 0; j < 10; j++) { + std::string new_prefix = std::to_string(i) + std::to_string(j); + future_hashes.push_back(pool.submit(get_hashes_for_microservice_with_prefix, + microservice, new_prefix, client)); + } + } + for (int64_t i=0; i < future_hashes.size(); i++) { + for (auto &hash : future_hashes[i].get()) { + to_return.insert(hash); + } + } + stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; std::cout << "time for listing hashes of microservices : " << dur.total_milliseconds() << std::endl; From f3a8676ed6c7fc25fefac9bdd27a7aa255a6a495 Mon Sep 17 00:00:00 2001 From: jessberg Date: Wed, 18 Jan 2023 19:26:11 +0000 Subject: [PATCH 18/49] proper printing --- get_traces_by_structure.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index f60e762..c97e6f8 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -105,7 +105,7 @@ std::unordered_set get_hashes_for_microservice(std::string microser boost::posix_time::time_duration dur; start = boost::posix_time::microsec_clock::local_time(); - BS::thread_pool pool(20); + BS::thread_pool pool(30); std::vector>> future_hashes; for (int64_t i = 0; i < 10; i++) { for (int64_t j = 0; j < 10; j++) { @@ -122,8 +122,7 @@ std::unordered_set get_hashes_for_microservice(std::string microser stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; - std::cout << "time for listing hashes of microservices : " << dur.total_milliseconds() << std::endl; - //print_update("Time for listing hashes of microservice: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + print_update("Time for listing hashes of microservice: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); return to_return; } @@ -152,7 +151,7 @@ std::vector get_potential_prefixes(trace_structure &query_trace, bo return bucket_objs; } - BS::thread_pool pool(20); + BS::thread_pool pool(10); std::vector>> future_hashes; for (std::string& service_name : service_names) { future_hashes.push_back(pool.submit(get_hashes_for_microservice, service_name, client)); From eeed3c1ffb53145a513a20accee773d32b4b694e Mon Sep 17 00:00:00 2001 From: jessberg Date: Wed, 18 Jan 2023 19:28:21 +0000 Subject: [PATCH 19/49] good now --- get_traces_by_structure.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index c97e6f8..6a0b9bb 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -99,7 +99,8 @@ std::unordered_set get_hashes_for_microservice_with_prefix(std::str } -std::unordered_set get_hashes_for_microservice(std::string microservice, gcs::Client* client) { +std::unordered_set get_hashes_for_microservice(std::string microservice, bool verbose, + gcs::Client* client) { std::unordered_set to_return; boost::posix_time::ptime start, stop, start_list_objects; boost::posix_time::time_duration dur; @@ -154,7 +155,7 @@ std::vector get_potential_prefixes(trace_structure &query_trace, bo BS::thread_pool pool(10); std::vector>> future_hashes; for (std::string& service_name : service_names) { - future_hashes.push_back(pool.submit(get_hashes_for_microservice, service_name, client)); + future_hashes.push_back(pool.submit(get_hashes_for_microservice, service_name, verbose, client)); } std::unordered_map hash_to_count; for (int64_t i=0; i < future_hashes.size(); i++) { From 4c67820438edad33308947b86a19619d249188ef Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Thu, 19 Jan 2023 16:26:55 -0500 Subject: [PATCH 20/49] now should work for batched --- common.h | 2 +- get_traces_by_structure.cc | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/common.h b/common.h index d7576f3..ee43949 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-microservice-by-hash-try2"; +const char BUCKETS_SUFFIX[] = "-quest-test32"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index f60e762..59e7fa2 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -91,9 +91,18 @@ std::unordered_set get_hashes_for_microservice_with_prefix(std::str if (!object_metadata) { throw std::runtime_error(object_metadata.status().message()); } + // Okay, now read everything here. // name is service / hash - std::string hash = split_by_string(object_metadata->name(), slash)[1]; - to_return.insert(hash); + StatusOr hashes = read_object( + hash_by_microservice_bucket_name, object_metadata->name(), client); + if (!hashes) { + std::cerr << "problem" << std::endl; + } + for (auto &hash : split_by_string(hashes.value(), newline)) { + if (hash != "") { + to_return.insert(hash); + } + } } return to_return; } From 322a8b10389ee70fcfdbccb20a2731a041a49300 Mon Sep 17 00:00:00 2001 From: jessberg Date: Thu, 19 Jan 2023 21:36:29 +0000 Subject: [PATCH 21/49] works for batched --- common.cc | 3 +++ get_traces_by_structure.cc | 2 ++ 2 files changed, 5 insertions(+) diff --git a/common.cc b/common.cc index f75cad0..b0caff1 100644 --- a/common.cc +++ b/common.cc @@ -112,6 +112,9 @@ bool is_spans_bucket(std::string bucket) { if (true == has_prefix(bucket, LIST_HASHES_BUCKET_PREFIX)) { return false; } + if (true == has_prefix(bucket, HASHES_BY_SERVICE_BUCKET_PREFIX)) { + return false; + } return true; } diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index e70d64d..f469fa6 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -97,6 +97,8 @@ std::unordered_set get_hashes_for_microservice_with_prefix(std::str hash_by_microservice_bucket_name, object_metadata->name(), client); if (!hashes) { std::cerr << "problem" << std::endl; + std::cerr << "help: status is " << hashes.status() << std::endl; + std::cerr << "when reading from bucket " << hash_by_microservice_bucket_name << "for object " << object_metadata->name() << std::endl; } for (auto &hash : split_by_string(hashes.value(), newline)) { if (hash != "") { From fd6462d68b661ed78f862cc4180245882f410cd3 Mon Sep 17 00:00:00 2001 From: jessberg Date: Thu, 19 Jan 2023 22:52:42 +0000 Subject: [PATCH 22/49] really good latencies this time - I think this is the move --- analyze_results/analyze.sh | 12 +++++++ analyze_results/process_results.py | 30 ++++++++++++++++ analyze_results/processed.csv | 57 ++++++++++++++++++++++++++++++ analyze_results/traces_count.csv | 1 + batched_index/10duration.txt | 55 ++++++++++++++++++++++++++++ batched_index/10fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index/10height.txt | 55 ++++++++++++++++++++++++++++ batched_index/10one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index/15duration.txt | 55 ++++++++++++++++++++++++++++ batched_index/15fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index/15height.txt | 55 ++++++++++++++++++++++++++++ batched_index/15one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index/5duration.txt | 55 ++++++++++++++++++++++++++++ batched_index/5fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index/5height.txt | 55 ++++++++++++++++++++++++++++ batched_index/5one_call.txt | 55 ++++++++++++++++++++++++++++ common.h | 2 +- run.sh | 37 +++++++++++-------- 18 files changed, 783 insertions(+), 16 deletions(-) create mode 100755 analyze_results/analyze.sh create mode 100644 analyze_results/process_results.py create mode 100644 analyze_results/processed.csv create mode 100644 analyze_results/traces_count.csv create mode 100644 batched_index/10duration.txt create mode 100644 batched_index/10fanout.txt create mode 100644 batched_index/10height.txt create mode 100644 batched_index/10one_call.txt create mode 100644 batched_index/15duration.txt create mode 100644 batched_index/15fanout.txt create mode 100644 batched_index/15height.txt create mode 100644 batched_index/15one_call.txt create mode 100644 batched_index/5duration.txt create mode 100644 batched_index/5fanout.txt create mode 100644 batched_index/5height.txt create mode 100644 batched_index/5one_call.txt diff --git a/analyze_results/analyze.sh b/analyze_results/analyze.sh new file mode 100755 index 0000000..8472878 --- /dev/null +++ b/analyze_results/analyze.sh @@ -0,0 +1,12 @@ + +FOLDER='results' +cd ../${FOLDER} +python3 ../analyze_results/process_results.py +cp processed.csv ../analyze_results/ +cd ../../microservices_env/send_alibaba_data_to_gcs +python3 count_traces.py +python3 count_bytes.py +cp traces_count.csv ../../trace_storage/analyze_results/ +cp bytes_count.csv ../../trace_storage/analyze_results/ + +python3 plot_graph.py diff --git a/analyze_results/process_results.py b/analyze_results/process_results.py new file mode 100644 index 0000000..aad7291 --- /dev/null +++ b/analyze_results/process_results.py @@ -0,0 +1,30 @@ + +csv_hdr = ["number_of_csvs", "query", "median_time(ms)"] + +queries = ["duration", "fanout", "height", "one_call"] + +all_files = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] + +results = ",".join(csv_hdr) + "\n" + +for file_num in all_files: + for q in queries: + txt_file = f"{file_num}{q}.txt" + + with open(txt_file) as f: + data = f.readlines()[-1] + print(data) + if not data.startswith("Median: "): + print("Something wrong!") + print(txt_file) + exit(0) + + median = float((data.split(" ")[1]).strip('\n')) + + line_to_insert = f"{file_num},{file_num}{q},{median}" + "\n" + results += line_to_insert + + +with open("processed.csv", "w") as f: + f.write(results) + diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv new file mode 100644 index 0000000..54c3333 --- /dev/null +++ b/analyze_results/processed.csv @@ -0,0 +1,57 @@ +number_of_csvs,query,median_time(ms) +1,1duration,12197.5 +1,1fanout,11776.5 +1,1height,10938.5 +1,1one_call,12756.0 +2,2duration,17004.0 +2,2fanout,16824.0 +2,2height,16516.5 +2,2one_call,18538.0 +3,3duration,24491.0 +3,3fanout,23405.5 +3,3height,23530.5 +3,3one_call,24858.0 +4,4duration,31163.5 +4,4fanout,28889.5 +4,4height,27890.0 +4,4one_call,28644.5 +5,5duration,34814.5 +5,5fanout,33401.0 +5,5height,31384.0 +5,5one_call,33900.5 +6,6duration,40731.5 +6,6fanout,39765.5 +6,6height,38295.5 +6,6one_call,40547.0 +7,7duration,37224.0 +7,7fanout,36738.5 +7,7height,36998.0 +7,7one_call,38768.0 +8,8duration,43378.0 +8,8fanout,43264.0 +8,8height,43794.0 +8,8one_call,46853.0 +9,9duration,51072.0 +9,9fanout,51095.0 +9,9height,50733.5 +9,9one_call,53725.0 +10,10duration,56557.5 +10,10fanout,57170.5 +10,10height,55001.5 +10,10one_call,59108.5 +11,11duration,61402.5 +11,11fanout,59935.5 +11,11height,60158.5 +11,11one_call,63587.0 +12,12duration,65742.0 +12,12fanout,63557.5 +12,12height,68510.5 +12,12one_call,71444.5 +13,13duration,72123.5 +13,13fanout,69155.0 +13,13height,70496.5 +13,13one_call,73361.0 +14,14duration,74665.0 +14,14fanout,71558.0 +14,14height,72417.0 +14,14one_call,75963.5 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv new file mode 100644 index 0000000..2ad432a --- /dev/null +++ b/analyze_results/traces_count.csv @@ -0,0 +1 @@ +105282,212114,318048,423719,530453,637381,746234,856770,969822,1083586,1195872,1306681,1419378 diff --git a/batched_index/10duration.txt b/batched_index/10duration.txt new file mode 100644 index 0000000..7ee86ac --- /dev/null +++ b/batched_index/10duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.256s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 6714 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4268 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4113 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4100 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4305 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4089 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4091 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4046 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4045 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4035 ms + +Median: 4095.5 diff --git a/batched_index/10fanout.txt b/batched_index/10fanout.txt new file mode 100644 index 0000000..93a0dca --- /dev/null +++ b/batched_index/10fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.226s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 9189 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8038 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4393 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4231 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4261 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4321 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4339 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4291 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4200 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4258 ms + +Median: 4306 diff --git a/batched_index/10height.txt b/batched_index/10height.txt new file mode 100644 index 0000000..57d34e3 --- /dev/null +++ b/batched_index/10height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.231s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 8102 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5305 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5593 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5257 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5594 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5179 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5180 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5369 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5190 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5213 ms + +Median: 5281 diff --git a/batched_index/10one_call.txt b/batched_index/10one_call.txt new file mode 100644 index 0000000..79972be --- /dev/null +++ b/batched_index/10one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.228s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 17433 ms + +intersection size is 1 +Total results: 216 +Time Taken: 14491 ms + +intersection size is 1 +Total results: 216 +Time Taken: 13601 ms + +intersection size is 1 +Total results: 216 +Time Taken: 14839 ms + +intersection size is 1 +Total results: 216 +Time Taken: 14864 ms + +intersection size is 1 +Total results: 216 +Time Taken: 14919 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18823 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18966 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19727 ms + +intersection size is 1 +Total results: 216 +Time Taken: 20460 ms + +Median: 16176 diff --git a/batched_index/15duration.txt b/batched_index/15duration.txt new file mode 100644 index 0000000..8d1b5d7 --- /dev/null +++ b/batched_index/15duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.248s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 7638 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4992 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4826 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5298 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4878 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4851 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4815 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4828 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4793 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4792 ms + +Median: 4839.5 diff --git a/batched_index/15fanout.txt b/batched_index/15fanout.txt new file mode 100644 index 0000000..2ead509 --- /dev/null +++ b/batched_index/15fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.279s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 7615 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5488 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5523 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5617 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5393 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5566 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5540 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7833 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8131 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7269 ms + +Median: 5591.5 diff --git a/batched_index/15height.txt b/batched_index/15height.txt new file mode 100644 index 0000000..6582813 --- /dev/null +++ b/batched_index/15height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.534s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 16442 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12325 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10489 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10769 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10758 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10405 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10160 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10695 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10914 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11893 ms + +Median: 10763.5 diff --git a/batched_index/15one_call.txt b/batched_index/15one_call.txt new file mode 100644 index 0000000..ebf1394 --- /dev/null +++ b/batched_index/15one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.509s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 32255 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24016 ms + +intersection size is 1 +Total results: 216 +Time Taken: 23584 ms + +intersection size is 1 +Total results: 216 +Time Taken: 22493 ms + +intersection size is 1 +Total results: 216 +Time Taken: 20540 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19928 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19570 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19817 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19125 ms + +intersection size is 1 +Total results: 216 +Time Taken: 20514 ms + +Median: 20527 diff --git a/batched_index/5duration.txt b/batched_index/5duration.txt new file mode 100644 index 0000000..1a50275 --- /dev/null +++ b/batched_index/5duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.293s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 6369 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3794 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3776 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3580 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3722 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3590 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3496 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3582 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3393 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3372 ms + +Median: 3586 diff --git a/batched_index/5fanout.txt b/batched_index/5fanout.txt new file mode 100644 index 0000000..801aded --- /dev/null +++ b/batched_index/5fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.222s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 5279 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3558 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3560 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3423 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3518 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3519 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3468 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3481 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3603 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3464 ms + +Median: 3518.5 diff --git a/batched_index/5height.txt b/batched_index/5height.txt new file mode 100644 index 0000000..3ec8068 --- /dev/null +++ b/batched_index/5height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.235s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 6894 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4145 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4288 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4084 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4086 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4168 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4186 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4339 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11440 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4101 ms + +Median: 4177 diff --git a/batched_index/5one_call.txt b/batched_index/5one_call.txt new file mode 100644 index 0000000..228fec7 --- /dev/null +++ b/batched_index/5one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.222s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 12370 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8061 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7967 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8024 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8196 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8241 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8246 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8355 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8314 ms + +intersection size is 1 +Total results: 216 +Time Taken: 10282 ms + +Median: 8243.5 diff --git a/common.h b/common.h index ee43949..1032730 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-test32"; +const char BUCKETS_SUFFIX[] = "-quest-batched-index"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/run.sh b/run.sh index d8d6839..197126f 100755 --- a/run.sh +++ b/run.sh @@ -1,34 +1,41 @@ url='http://alitrip.oss-cn-zhangjiakou.aliyuncs.com/TraceData' - -for VAR in 6 7 8 9 10 11 12 13 14 15 16 +FOLDER='batched_index' +mkdir ./${FOLDER} +for VAR in 1 2 3 4 5 6 8 9 10 11 12 13 14 15 do - cd ../microservices_env/send_alibaba_data_to_gcs + if [[ ${VAR} -eq 1 ]] + then + cd ../microservices_env/send_alibaba_data_to_gcs + fi curl ${url}/MSCallGraph/MSCallGraph_${VAR}.tar.gz -o MSCallGraph_${VAR}.tar.gz tar -xvzf MSCallGraph_${VAR}.tar.gz ./alibaba_to_gcs ./MSCallGraph_${VAR}.csv 2>&1 | tee ${VAR}alibaba.txt - echo "\n" - - cd ../../trace_storage + if [[ ${VAR}%5 -eq 0 ]] + then + echo "\n" + + cd ../../trace_storage - bazel run --cxxopt=-std=c++17 :graph_query 10 duration 2>&1 | tee ./results/${VAR}duration.txt + bazel run --cxxopt=-std=c++17 :graph_query 10 duration 2>&1 | tee ./${FOLDER}/${VAR}duration.txt - echo "\n" + echo "\n" - bazel run --cxxopt=-std=c++17 :graph_query 10 fanout 2>&1 | tee ./results/${VAR}fanout.txt + bazel run --cxxopt=-std=c++17 :graph_query 10 fanout 2>&1 | tee ./${FOLDER}/${VAR}fanout.txt - echo "\n" + echo "\n" - bazel run --cxxopt=-std=c++17 :graph_query 10 height 2>&1 | tee ./results/${VAR}height.txt + bazel run --cxxopt=-std=c++17 :graph_query 10 height 2>&1 | tee ./${FOLDER}/${VAR}height.txt - echo "\n" + echo "\n" - bazel run --cxxopt=-std=c++17 :graph_query 10 one_call 2>&1 | tee ./results/${VAR}one_call.txt - + bazel run --cxxopt=-std=c++17 :graph_query 10 one_call 2>&1 | tee ./${FOLDER}/${VAR}one_call.txt + - cd ../microservices_env/send_alibaba_data_to_gcs + cd ../microservices_env/send_alibaba_data_to_gcs + fi rm MSCallGraph_${VAR}.csv rm MSCallGraph_${VAR}.tar.gz done From 910af304038f16b4fa5b8ee67c58efe4b9ce55cd Mon Sep 17 00:00:00 2001 From: jessberg Date: Thu, 19 Jan 2023 23:03:02 +0000 Subject: [PATCH 23/49] preliminary plotting --- analyze_results/plot_graph.py | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 analyze_results/plot_graph.py diff --git a/analyze_results/plot_graph.py b/analyze_results/plot_graph.py new file mode 100644 index 0000000..ecfffd6 --- /dev/null +++ b/analyze_results/plot_graph.py @@ -0,0 +1,52 @@ +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd + +def import_csv(filename): + with open(filename) as csvfile: + spamreader = csv.reader(csvfile) + to_return = [] + + for row in spamreader: + to_return.extend(row) + return to_return + +def import_query_data(query): + with open(filename) as csvfile: + spamreader = csv.reader(csvfile) + latencies = [] + + for row in spamreader: + if query in row[1]: + latencies.append((row[0], row[2])) + + latencies.sort() + to_return_lat = [] + for l in latencies: + to_return_lat.append(l[1]) + import pdb; pdb.set_trace() + return to_return_lat + +# We make two graphs - latency by num traces, latency by bytes. +bytes_count = import_csv("bytes_count.csv") +traces_count = import_csv("traces_count.csv") + + +queries = ["duration", "fanout", "one_call", "height"] +latencies = [] +for query in queries: + latencies.append(import_query_data(query)) + +fig, ax = plt.subplots() + +plt.plot(bytes_count, new_x_duration, label = "duration", linestyle='--', marker='o', color='b') +plt.plot(bytes_count, new_x_fanout, label = "fanout", linestyle='--', marker='o', color='r') +plt.plot(bytes_count, new_x_one_other_call, label = "one other call", linestyle='--', marker='o', color='g') +plt.plot(bytes_count, new_x_height, label = "height", linestyle='--', marker='o', color='c') +plt.title("AliBaba Query Latencies") +plt.ylabel("Latency (s)") +plt.xlabel("Number of AliBaba Traces (in thousands)") +plt.ylim(0, 60) +plt.legend() +plt.show() +plt.savefig('graph.png') From 2a9ef1d5ed3ea602b8bc2afebcce0076fba97c36 Mon Sep 17 00:00:00 2001 From: jessberg Date: Thu, 19 Jan 2023 23:05:57 +0000 Subject: [PATCH 24/49] bytes count --- analyze_results/bytes_count.csv | 1 + 1 file changed, 1 insertion(+) create mode 100644 analyze_results/bytes_count.csv diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv new file mode 100644 index 0000000..f157188 --- /dev/null +++ b/analyze_results/bytes_count.csv @@ -0,0 +1 @@ +424762836,872422956,1287220931,1703937206,2150374650,2575278768,3030952038,3476641610,3919493222,4372690631,4765258042,5164649049,5588010531 From c2561a4982748f55ca34c735a4036ac80140c1a2 Mon Sep 17 00:00:00 2001 From: jessberg Date: Thu, 19 Jan 2023 23:13:58 +0000 Subject: [PATCH 25/49] only a few runs --- analyze_results/analyze.sh | 5 ++- analyze_results/process_results.py | 3 +- analyze_results/processed.csv | 68 ++++++------------------------ 3 files changed, 17 insertions(+), 59 deletions(-) diff --git a/analyze_results/analyze.sh b/analyze_results/analyze.sh index 8472878..77ba488 100755 --- a/analyze_results/analyze.sh +++ b/analyze_results/analyze.sh @@ -1,7 +1,8 @@ -FOLDER='results' +FOLDER='batched_index' cd ../${FOLDER} -python3 ../analyze_results/process_results.py +cp ../analyze_results/process_results.py . +python3 process_results.py cp processed.csv ../analyze_results/ cd ../../microservices_env/send_alibaba_data_to_gcs python3 count_traces.py diff --git a/analyze_results/process_results.py b/analyze_results/process_results.py index aad7291..ee99f5e 100644 --- a/analyze_results/process_results.py +++ b/analyze_results/process_results.py @@ -3,7 +3,8 @@ queries = ["duration", "fanout", "height", "one_call"] -all_files = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] +all_files = [5, 10, 15] +#all_files = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] results = ",".join(csv_hdr) + "\n" diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index 54c3333..a89478c 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -1,57 +1,13 @@ number_of_csvs,query,median_time(ms) -1,1duration,12197.5 -1,1fanout,11776.5 -1,1height,10938.5 -1,1one_call,12756.0 -2,2duration,17004.0 -2,2fanout,16824.0 -2,2height,16516.5 -2,2one_call,18538.0 -3,3duration,24491.0 -3,3fanout,23405.5 -3,3height,23530.5 -3,3one_call,24858.0 -4,4duration,31163.5 -4,4fanout,28889.5 -4,4height,27890.0 -4,4one_call,28644.5 -5,5duration,34814.5 -5,5fanout,33401.0 -5,5height,31384.0 -5,5one_call,33900.5 -6,6duration,40731.5 -6,6fanout,39765.5 -6,6height,38295.5 -6,6one_call,40547.0 -7,7duration,37224.0 -7,7fanout,36738.5 -7,7height,36998.0 -7,7one_call,38768.0 -8,8duration,43378.0 -8,8fanout,43264.0 -8,8height,43794.0 -8,8one_call,46853.0 -9,9duration,51072.0 -9,9fanout,51095.0 -9,9height,50733.5 -9,9one_call,53725.0 -10,10duration,56557.5 -10,10fanout,57170.5 -10,10height,55001.5 -10,10one_call,59108.5 -11,11duration,61402.5 -11,11fanout,59935.5 -11,11height,60158.5 -11,11one_call,63587.0 -12,12duration,65742.0 -12,12fanout,63557.5 -12,12height,68510.5 -12,12one_call,71444.5 -13,13duration,72123.5 -13,13fanout,69155.0 -13,13height,70496.5 -13,13one_call,73361.0 -14,14duration,74665.0 -14,14fanout,71558.0 -14,14height,72417.0 -14,14one_call,75963.5 +5,5duration,3586.0 +5,5fanout,3518.5 +5,5height,4177.0 +5,5one_call,8243.5 +10,10duration,4095.5 +10,10fanout,4306.0 +10,10height,5281.0 +10,10one_call,16176.0 +15,15duration,4839.5 +15,15fanout,5591.5 +15,15height,10763.5 +15,15one_call,20527.0 From 57453a57cc00d0d168c76aba441bb380d5caf2aa Mon Sep 17 00:00:00 2001 From: jessberg Date: Fri, 20 Jan 2023 00:09:51 +0000 Subject: [PATCH 26/49] new data --- analyze_results/analyze.sh | 3 +-- analyze_results/bytes_count.csv | 2 +- analyze_results/processed.csv | 24 ++++++++++++------------ analyze_results/traces_count.csv | 2 +- 4 files changed, 15 insertions(+), 16 deletions(-) diff --git a/analyze_results/analyze.sh b/analyze_results/analyze.sh index 77ba488..d5ba23b 100755 --- a/analyze_results/analyze.sh +++ b/analyze_results/analyze.sh @@ -1,5 +1,5 @@ -FOLDER='batched_index' +FOLDER='batched_index_new' cd ../${FOLDER} cp ../analyze_results/process_results.py . python3 process_results.py @@ -10,4 +10,3 @@ python3 count_bytes.py cp traces_count.csv ../../trace_storage/analyze_results/ cp bytes_count.csv ../../trace_storage/analyze_results/ -python3 plot_graph.py diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv index f157188..5d9ab40 100644 --- a/analyze_results/bytes_count.csv +++ b/analyze_results/bytes_count.csv @@ -1 +1 @@ -424762836,872422956,1287220931,1703937206,2150374650,2575278768,3030952038,3476641610,3919493222,4372690631,4765258042,5164649049,5588010531 +424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5584101236,6007462718 diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index a89478c..dbc5ea5 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -1,13 +1,13 @@ number_of_csvs,query,median_time(ms) -5,5duration,3586.0 -5,5fanout,3518.5 -5,5height,4177.0 -5,5one_call,8243.5 -10,10duration,4095.5 -10,10fanout,4306.0 -10,10height,5281.0 -10,10one_call,16176.0 -15,15duration,4839.5 -15,15fanout,5591.5 -15,15height,10763.5 -15,15one_call,20527.0 +5,5duration,3269.0 +5,5fanout,3552.0 +5,5height,4236.0 +5,5one_call,7914.0 +10,10duration,4379.5 +10,10fanout,4481.5 +10,10height,5197.5 +10,10one_call,14190.5 +15,15duration,4502.0 +15,15fanout,5217.0 +15,15height,6096.5 +15,15one_call,19330.0 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv index 2ad432a..ed23a6c 100644 --- a/analyze_results/traces_count.csv +++ b/analyze_results/traces_count.csv @@ -1 +1 @@ -105282,212114,318048,423719,530453,637381,746234,856770,969822,1083586,1195872,1306681,1419378 +105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660 From 78dd4796ac66dccc5b7a569ed5bee8a84eec5a14 Mon Sep 17 00:00:00 2001 From: jessberg Date: Fri, 20 Jan 2023 00:12:32 +0000 Subject: [PATCH 27/49] new data --- analyze_results/bytes_count.csv | 2 +- analyze_results/traces_count.csv | 2 +- common.h | 2 +- run.sh | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv index 5d9ab40..1444836 100644 --- a/analyze_results/bytes_count.csv +++ b/analyze_results/bytes_count.csv @@ -1 +1 @@ -424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5584101236,6007462718 +0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5584101236,6007462718 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv index ed23a6c..d489989 100644 --- a/analyze_results/traces_count.csv +++ b/analyze_results/traces_count.csv @@ -1 +1 @@ -105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660 +0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660 diff --git a/common.h b/common.h index 1032730..168421c 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-batched-index"; +const char BUCKETS_SUFFIX[] = "-quest-batched-index-new"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/run.sh b/run.sh index 197126f..085a3d8 100755 --- a/run.sh +++ b/run.sh @@ -1,8 +1,8 @@ url='http://alitrip.oss-cn-zhangjiakou.aliyuncs.com/TraceData' -FOLDER='batched_index' +FOLDER='batched_index_new' mkdir ./${FOLDER} -for VAR in 1 2 3 4 5 6 8 9 10 11 12 13 14 15 +for VAR in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 do if [[ ${VAR} -eq 1 ]] then From 94342aefbc84750daf80f6906be7b5779a070796 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Thu, 19 Jan 2023 19:18:15 -0500 Subject: [PATCH 28/49] decent graph plotted --- analyze_results/plot_graph.py | 37 ++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/analyze_results/plot_graph.py b/analyze_results/plot_graph.py index ecfffd6..7475fb4 100644 --- a/analyze_results/plot_graph.py +++ b/analyze_results/plot_graph.py @@ -1,30 +1,36 @@ import matplotlib.pyplot as plt import numpy as np -import pandas as pd +import csv def import_csv(filename): with open(filename) as csvfile: spamreader = csv.reader(csvfile) - to_return = [] + nums = [] for row in spamreader: - to_return.extend(row) + nums.extend(row) + + to_return = [] + for i in range(len(nums)): + if (i+1) % 5 == 0: + print("i is ", i) + to_return.append(int(nums[i])) + return to_return def import_query_data(query): - with open(filename) as csvfile: + with open("processed.csv") as csvfile: spamreader = csv.reader(csvfile) latencies = [] for row in spamreader: if query in row[1]: - latencies.append((row[0], row[2])) + latencies.append((int(row[0]), row[2])) latencies.sort() to_return_lat = [] for l in latencies: - to_return_lat.append(l[1]) - import pdb; pdb.set_trace() + to_return_lat.append(float(l[1])) return to_return_lat # We make two graphs - latency by num traces, latency by bytes. @@ -39,14 +45,17 @@ def import_query_data(query): fig, ax = plt.subplots() -plt.plot(bytes_count, new_x_duration, label = "duration", linestyle='--', marker='o', color='b') -plt.plot(bytes_count, new_x_fanout, label = "fanout", linestyle='--', marker='o', color='r') -plt.plot(bytes_count, new_x_one_other_call, label = "one other call", linestyle='--', marker='o', color='g') -plt.plot(bytes_count, new_x_height, label = "height", linestyle='--', marker='o', color='c') +for query in range(len(queries)): + plt.plot(bytes_count, latencies[query], label = queries[query]) + +#plt.plot(bytes_count, new_x_duration, label = "duration", linestyle='--', marker='o', color='b') +#plt.plot(bytes_count, new_x_fanout, label = "fanout", linestyle='--', marker='o', color='r') +#plt.plot(bytes_count, new_x_one_other_call, label = "one other call", linestyle='--', marker='o', color='g') +#plt.plot(bytes_count, new_x_height, label = "height", linestyle='--', marker='o', color='c') plt.title("AliBaba Query Latencies") -plt.ylabel("Latency (s)") -plt.xlabel("Number of AliBaba Traces (in thousands)") -plt.ylim(0, 60) +plt.ylabel("Latency (ms)") +plt.xlabel("Bytes of AliBaba Data") +#plt.ylim(0, 60) plt.legend() plt.show() plt.savefig('graph.png') From 8375a51f0921ef6b1d12e606f4e9b38aa325d68c Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Thu, 19 Jan 2023 19:30:25 -0500 Subject: [PATCH 29/49] resultsgit add graph.png --- analyze_results/graph.png | Bin 0 -> 2396 bytes analyze_results/plot_graph.py | 17 ++++++++++------- 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 analyze_results/graph.png diff --git a/analyze_results/graph.png b/analyze_results/graph.png new file mode 100644 index 0000000000000000000000000000000000000000..e391a50d0f46f728584657fd5b6418bd82acce4b GIT binary patch literal 2396 zcmeAS@N?(olHy`uVBq!ia0y~yU}|7sV0^&A1{5*9c;^X_vMh0pC<)F_D=AMbN@eg( zEGfvzFUiSFQYcF;D$dN$GuAWJGuBbaC@Co@w$j(ng)7j@FG|-xtG)9Q&=Af7kH}&M z2L414W?W&vJd=Te`7=5U3`XbP19jdr zYG7b6WD{UeIL5%la74m^p+SO~gFzsffsrAJM}fhihmnP$!*Ep5Xb_C1g3*jHS{95J jhod#ZXr)Nkc7dK+CHtP`%Qqzf+bay7u6{1-oD!M Date: Fri, 20 Jan 2023 02:23:38 +0000 Subject: [PATCH 30/49] thirty CSVs results --- batched_index_thirty/10duration.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/10fanout.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/10height.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/10one_call.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/15duration.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/15fanout.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/15height.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/15one_call.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/20duration.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/20fanout.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/20height.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/20one_call.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/25duration.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/25fanout.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/25height.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/25one_call.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/30duration.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/30fanout.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/30height.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/30one_call.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/5duration.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/5fanout.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/5height.txt | 55 +++++++++++++++++++++++++++++ batched_index_thirty/5one_call.txt | 55 +++++++++++++++++++++++++++++ 24 files changed, 1320 insertions(+) create mode 100644 batched_index_thirty/10duration.txt create mode 100644 batched_index_thirty/10fanout.txt create mode 100644 batched_index_thirty/10height.txt create mode 100644 batched_index_thirty/10one_call.txt create mode 100644 batched_index_thirty/15duration.txt create mode 100644 batched_index_thirty/15fanout.txt create mode 100644 batched_index_thirty/15height.txt create mode 100644 batched_index_thirty/15one_call.txt create mode 100644 batched_index_thirty/20duration.txt create mode 100644 batched_index_thirty/20fanout.txt create mode 100644 batched_index_thirty/20height.txt create mode 100644 batched_index_thirty/20one_call.txt create mode 100644 batched_index_thirty/25duration.txt create mode 100644 batched_index_thirty/25fanout.txt create mode 100644 batched_index_thirty/25height.txt create mode 100644 batched_index_thirty/25one_call.txt create mode 100644 batched_index_thirty/30duration.txt create mode 100644 batched_index_thirty/30fanout.txt create mode 100644 batched_index_thirty/30height.txt create mode 100644 batched_index_thirty/30one_call.txt create mode 100644 batched_index_thirty/5duration.txt create mode 100644 batched_index_thirty/5fanout.txt create mode 100644 batched_index_thirty/5height.txt create mode 100644 batched_index_thirty/5one_call.txt diff --git a/batched_index_thirty/10duration.txt b/batched_index_thirty/10duration.txt new file mode 100644 index 0000000..230eda5 --- /dev/null +++ b/batched_index_thirty/10duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.237s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 6138 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3859 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3927 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3871 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3832 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3838 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3820 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3744 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3682 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3747 ms + +Median: 3835 diff --git a/batched_index_thirty/10fanout.txt b/batched_index_thirty/10fanout.txt new file mode 100644 index 0000000..68cb09e --- /dev/null +++ b/batched_index_thirty/10fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.230s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 6009 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4078 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4112 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3984 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4008 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4561 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4388 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3955 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3951 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3979 ms + +Median: 4043 diff --git a/batched_index_thirty/10height.txt b/batched_index_thirty/10height.txt new file mode 100644 index 0000000..5bddca8 --- /dev/null +++ b/batched_index_thirty/10height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 6913 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4718 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4686 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4623 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4625 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4647 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4542 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4568 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4618 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4621 ms + +Median: 4624 diff --git a/batched_index_thirty/10one_call.txt b/batched_index_thirty/10one_call.txt new file mode 100644 index 0000000..a72be49 --- /dev/null +++ b/batched_index_thirty/10one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.221s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 16470 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12685 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12709 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12821 ms + +intersection size is 1 +Total results: 216 +Time Taken: 13075 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12494 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12245 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12289 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12133 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12299 ms + +Median: 12589.5 diff --git a/batched_index_thirty/15duration.txt b/batched_index_thirty/15duration.txt new file mode 100644 index 0000000..2d0e3ef --- /dev/null +++ b/batched_index_thirty/15duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.230s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 7818 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4766 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4652 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4611 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4566 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4523 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4616 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4606 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4523 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4541 ms + +Median: 4608.5 diff --git a/batched_index_thirty/15fanout.txt b/batched_index_thirty/15fanout.txt new file mode 100644 index 0000000..fbd8ee2 --- /dev/null +++ b/batched_index_thirty/15fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.223s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 7847 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5463 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5408 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5320 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5253 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5358 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5322 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5328 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5282 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5342 ms + +Median: 5335 diff --git a/batched_index_thirty/15height.txt b/batched_index_thirty/15height.txt new file mode 100644 index 0000000..4dad7c5 --- /dev/null +++ b/batched_index_thirty/15height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.234s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 9467 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6330 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6360 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6394 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6346 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6424 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6395 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6436 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6425 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6383 ms + +Median: 6394.5 diff --git a/batched_index_thirty/15one_call.txt b/batched_index_thirty/15one_call.txt new file mode 100644 index 0000000..f4897d7 --- /dev/null +++ b/batched_index_thirty/15one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.228s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 22320 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19187 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18102 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18237 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18792 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19570 ms + +intersection size is 1 +Total results: 216 +Time Taken: 20161 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18846 ms + +intersection size is 1 +Total results: 216 +Time Taken: 17501 ms + +intersection size is 1 +Total results: 216 +Time Taken: 17402 ms + +Median: 18819 diff --git a/batched_index_thirty/20duration.txt b/batched_index_thirty/20duration.txt new file mode 100644 index 0000000..26562f5 --- /dev/null +++ b/batched_index_thirty/20duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.230s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 8499 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5614 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5579 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5499 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5506 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5534 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5667 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5517 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5692 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5527 ms + +Median: 5556.5 diff --git a/batched_index_thirty/20fanout.txt b/batched_index_thirty/20fanout.txt new file mode 100644 index 0000000..d2a624b --- /dev/null +++ b/batched_index_thirty/20fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.218s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 8319 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6460 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6432 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6455 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6380 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6364 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6363 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6443 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6362 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6546 ms + +Median: 6437.5 diff --git a/batched_index_thirty/20height.txt b/batched_index_thirty/20height.txt new file mode 100644 index 0000000..317e1d5 --- /dev/null +++ b/batched_index_thirty/20height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.218s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 11913 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8283 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8160 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8113 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8215 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8060 ms + +intersection size is 1 +Total results: 4 +Time Taken: 7998 ms + +intersection size is 1 +Total results: 4 +Time Taken: 7983 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8159 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8134 ms + +Median: 8146.5 diff --git a/batched_index_thirty/20one_call.txt b/batched_index_thirty/20one_call.txt new file mode 100644 index 0000000..589130e --- /dev/null +++ b/batched_index_thirty/20one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.220s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 27874 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24820 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24582 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24064 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24210 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24008 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24144 ms + +intersection size is 1 +Total results: 216 +Time Taken: 23900 ms + +intersection size is 1 +Total results: 216 +Time Taken: 23354 ms + +intersection size is 1 +Total results: 216 +Time Taken: 22751 ms + +Median: 24104 diff --git a/batched_index_thirty/25duration.txt b/batched_index_thirty/25duration.txt new file mode 100644 index 0000000..2aaf944 --- /dev/null +++ b/batched_index_thirty/25duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.248s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 9459 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8535 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6477 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6885 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6860 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6542 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6789 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6924 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7035 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7270 ms + +Median: 6904.5 diff --git a/batched_index_thirty/25fanout.txt b/batched_index_thirty/25fanout.txt new file mode 100644 index 0000000..6ff0e57 --- /dev/null +++ b/batched_index_thirty/25fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.217s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 10809 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7904 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7631 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7529 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7604 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7547 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7590 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7553 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7495 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7624 ms + +Median: 7597 diff --git a/batched_index_thirty/25height.txt b/batched_index_thirty/25height.txt new file mode 100644 index 0000000..bc77403 --- /dev/null +++ b/batched_index_thirty/25height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.219s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 13011 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9333 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9842 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9582 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9538 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9556 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9947 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9647 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9577 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9485 ms + +Median: 9579.5 diff --git a/batched_index_thirty/25one_call.txt b/batched_index_thirty/25one_call.txt new file mode 100644 index 0000000..37e37cc --- /dev/null +++ b/batched_index_thirty/25one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.225s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 32145 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28758 ms + +intersection size is 1 +Total results: 216 +Time Taken: 30311 ms + +intersection size is 1 +Total results: 216 +Time Taken: 31217 ms + +intersection size is 1 +Total results: 216 +Time Taken: 29621 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28775 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28722 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28219 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28636 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28242 ms + +Median: 28766.5 diff --git a/batched_index_thirty/30duration.txt b/batched_index_thirty/30duration.txt new file mode 100644 index 0000000..b431662 --- /dev/null +++ b/batched_index_thirty/30duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.531s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 16540 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11406 ms + +intersection size is 1 +Total results: 1 +Time Taken: 10423 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11907 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7028 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6990 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6994 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6931 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6947 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6911 ms + +Median: 7011 diff --git a/batched_index_thirty/30fanout.txt b/batched_index_thirty/30fanout.txt new file mode 100644 index 0000000..0609361 --- /dev/null +++ b/batched_index_thirty/30fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.238s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 10546 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8525 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8554 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8408 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8459 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8388 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8429 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8504 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8540 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8795 ms + +Median: 8514.5 diff --git a/batched_index_thirty/30height.txt b/batched_index_thirty/30height.txt new file mode 100644 index 0000000..1a22740 --- /dev/null +++ b/batched_index_thirty/30height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.242s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 14456 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10524 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10554 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10501 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10437 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10309 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10283 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10427 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10364 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10377 ms + +Median: 10432 diff --git a/batched_index_thirty/30one_call.txt b/batched_index_thirty/30one_call.txt new file mode 100644 index 0000000..701088e --- /dev/null +++ b/batched_index_thirty/30one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.221s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 54748 ms + +intersection size is 1 +Total results: 216 +Time Taken: 44515 ms + +intersection size is 1 +Total results: 216 +Time Taken: 43584 ms + +intersection size is 1 +Total results: 216 +Time Taken: 42247 ms + +intersection size is 1 +Total results: 216 +Time Taken: 43451 ms + +intersection size is 1 +Total results: 216 +Time Taken: 42572 ms + +intersection size is 1 +Total results: 216 +Time Taken: 33324 ms + +intersection size is 1 +Total results: 216 +Time Taken: 32230 ms + +intersection size is 1 +Total results: 216 +Time Taken: 32326 ms + +intersection size is 1 +Total results: 216 +Time Taken: 32352 ms + +Median: 42409.5 diff --git a/batched_index_thirty/5duration.txt b/batched_index_thirty/5duration.txt new file mode 100644 index 0000000..a7ec05a --- /dev/null +++ b/batched_index_thirty/5duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.287s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 5887 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3828 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3443 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3475 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3257 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3302 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3280 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3321 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3157 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3179 ms + +Median: 3311.5 diff --git a/batched_index_thirty/5fanout.txt b/batched_index_thirty/5fanout.txt new file mode 100644 index 0000000..18fbc9d --- /dev/null +++ b/batched_index_thirty/5fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.224s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 5377 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3436 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3499 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3517 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3508 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3566 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6877 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3466 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3265 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3267 ms + +Median: 3503.5 diff --git a/batched_index_thirty/5height.txt b/batched_index_thirty/5height.txt new file mode 100644 index 0000000..16ea454 --- /dev/null +++ b/batched_index_thirty/5height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.222s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 6163 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3740 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3956 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3787 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3787 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3736 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3815 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3782 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3782 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3802 ms + +Median: 3787 diff --git a/batched_index_thirty/5one_call.txt b/batched_index_thirty/5one_call.txt new file mode 100644 index 0000000..686c04b --- /dev/null +++ b/batched_index_thirty/5one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.243s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 11972 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8358 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8390 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8345 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8317 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8632 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8418 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8229 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8168 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8598 ms + +Median: 8374 From 501b5c0d4ea37233cb468b40f012ccbcd1a1da39 Mon Sep 17 00:00:00 2001 From: jessberg Date: Fri, 20 Jan 2023 02:46:33 +0000 Subject: [PATCH 31/49] 30 CSVs --- analyze_results/analyze.sh | 2 +- analyze_results/bytes_count.csv | 2 +- analyze_results/processed.csv | 24 ++++++++++++------------ analyze_results/traces_count.csv | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/analyze_results/analyze.sh b/analyze_results/analyze.sh index d5ba23b..d2c5fda 100755 --- a/analyze_results/analyze.sh +++ b/analyze_results/analyze.sh @@ -1,5 +1,5 @@ -FOLDER='batched_index_new' +FOLDER='batched_index_thirty' cd ../${FOLDER} cp ../analyze_results/process_results.py . python3 process_results.py diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv index 1444836..a11625f 100644 --- a/analyze_results/bytes_count.csv +++ b/analyze_results/bytes_count.csv @@ -1 +1 @@ -0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5584101236,6007462718 +0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,3896234890,4349432299,4741999710,5141390717,5564752199,5966157401,6370790929,6803572577,7220061874,7629881521,8061868915,8448802904,8838063896,9285312071,9699935014,10101541675,10553746129,10992426268,11442843877 diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index dbc5ea5..23149d6 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -1,13 +1,13 @@ number_of_csvs,query,median_time(ms) -5,5duration,3269.0 -5,5fanout,3552.0 -5,5height,4236.0 -5,5one_call,7914.0 -10,10duration,4379.5 -10,10fanout,4481.5 -10,10height,5197.5 -10,10one_call,14190.5 -15,15duration,4502.0 -15,15fanout,5217.0 -15,15height,6096.5 -15,15one_call,19330.0 +5,5duration,3311.5 +5,5fanout,3503.5 +5,5height,3787.0 +5,5one_call,8374.0 +10,10duration,3835.0 +10,10fanout,4043.0 +10,10height,4624.0 +10,10one_call,12589.5 +15,15duration,4608.5 +15,15fanout,5335.0 +15,15height,6394.5 +15,15one_call,18819.0 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv index d489989..b0607bf 100644 --- a/analyze_results/traces_count.csv +++ b/analyze_results/traces_count.csv @@ -1 +1 @@ -0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660 +0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2414915,2531317,2649274,2769509,2894163,3021409,3148558 From 51464996ff4a87e44f0c383428f11bf9ff02100d Mon Sep 17 00:00:00 2001 From: jessberg Date: Fri, 20 Jan 2023 02:52:02 +0000 Subject: [PATCH 32/49] proper processed --- analyze_results/processed.csv | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index 23149d6..72ceef5 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -11,3 +11,15 @@ number_of_csvs,query,median_time(ms) 15,15fanout,5335.0 15,15height,6394.5 15,15one_call,18819.0 +20,20duration,5556.5 +20,20fanout,6437.5 +20,20height,8146.5 +20,20one_call,24104.0 +25,25duration,6904.5 +25,25fanout,7597.0 +25,25height,9579.5 +25,25one_call,28766.5 +30,30duration,7011.0 +30,30fanout,8514.5 +30,30height,10432.0 +30,30one_call,42409.5 From b6f4e54fd760b091d6aa6d983c2368e0e6ecca8b Mon Sep 17 00:00:00 2001 From: jessberg Date: Fri, 20 Jan 2023 02:54:43 +0000 Subject: [PATCH 33/49] proper count --- analyze_results/bytes_count.csv | 2 +- analyze_results/traces_count.csv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv index a11625f..c7dfba8 100644 --- a/analyze_results/bytes_count.csv +++ b/analyze_results/bytes_count.csv @@ -1 +1 @@ -0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,3896234890,4349432299,4741999710,5141390717,5564752199,5966157401,6370790929,6803572577,7220061874,7629881521,8061868915,8448802904,8838063896,9285312071,9699935014,10101541675,10553746129,10992426268,11442843877 +0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,3896234890,4349432299,4741999710,5141390717,5564752199,5966157401,6370790929,6803572577,7220061874,7629881521,8061868915,8448802904,8838063896,9285312071,9699935014,10101541675,10553746129,10992426268,11442843877,11908740333 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv index b0607bf..36d5915 100644 --- a/analyze_results/traces_count.csv +++ b/analyze_results/traces_count.csv @@ -1 +1 @@ -0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2414915,2531317,2649274,2769509,2894163,3021409,3148558 +0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2414915,2531317,2649274,2769509,2894163,3021409,3148558,3276772 From 9d74972ca8560ae9492754d3f79e6eeb36630f4b Mon Sep 17 00:00:00 2001 From: jessberg Date: Fri, 20 Jan 2023 16:46:22 +0000 Subject: [PATCH 34/49] These are the 30 CSV numbers From 0ad9c71ebd42ead1fc5e47c4d9b52a25e8fdc75e Mon Sep 17 00:00:00 2001 From: jessberg Date: Sat, 21 Jan 2023 00:39:33 +0000 Subject: [PATCH 35/49] 70 csvs --- batched_index_seventy/10duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/10fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/10height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/10one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/15duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/15fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/15height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/15one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/20duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/20fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/20height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/20one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/25duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/25fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/25height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/25one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/30duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/30fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/30height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/30one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/35duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/35fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/35height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/35one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/40duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/40fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/40height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/40one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/45duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/45fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/45height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/45one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/50duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/50fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/50height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/50one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/55duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/55fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/55height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/55one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/5duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/5fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/5height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/5one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/60duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/60fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/60height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/60one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/65duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/65fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/65height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/65one_call.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/70duration.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/70fanout.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/70height.txt | 55 ++++++++++++++++++++++++++++ batched_index_seventy/70one_call.txt | 55 ++++++++++++++++++++++++++++ common.h | 2 +- run.sh | 4 +- 58 files changed, 3083 insertions(+), 3 deletions(-) create mode 100644 batched_index_seventy/10duration.txt create mode 100644 batched_index_seventy/10fanout.txt create mode 100644 batched_index_seventy/10height.txt create mode 100644 batched_index_seventy/10one_call.txt create mode 100644 batched_index_seventy/15duration.txt create mode 100644 batched_index_seventy/15fanout.txt create mode 100644 batched_index_seventy/15height.txt create mode 100644 batched_index_seventy/15one_call.txt create mode 100644 batched_index_seventy/20duration.txt create mode 100644 batched_index_seventy/20fanout.txt create mode 100644 batched_index_seventy/20height.txt create mode 100644 batched_index_seventy/20one_call.txt create mode 100644 batched_index_seventy/25duration.txt create mode 100644 batched_index_seventy/25fanout.txt create mode 100644 batched_index_seventy/25height.txt create mode 100644 batched_index_seventy/25one_call.txt create mode 100644 batched_index_seventy/30duration.txt create mode 100644 batched_index_seventy/30fanout.txt create mode 100644 batched_index_seventy/30height.txt create mode 100644 batched_index_seventy/30one_call.txt create mode 100644 batched_index_seventy/35duration.txt create mode 100644 batched_index_seventy/35fanout.txt create mode 100644 batched_index_seventy/35height.txt create mode 100644 batched_index_seventy/35one_call.txt create mode 100644 batched_index_seventy/40duration.txt create mode 100644 batched_index_seventy/40fanout.txt create mode 100644 batched_index_seventy/40height.txt create mode 100644 batched_index_seventy/40one_call.txt create mode 100644 batched_index_seventy/45duration.txt create mode 100644 batched_index_seventy/45fanout.txt create mode 100644 batched_index_seventy/45height.txt create mode 100644 batched_index_seventy/45one_call.txt create mode 100644 batched_index_seventy/50duration.txt create mode 100644 batched_index_seventy/50fanout.txt create mode 100644 batched_index_seventy/50height.txt create mode 100644 batched_index_seventy/50one_call.txt create mode 100644 batched_index_seventy/55duration.txt create mode 100644 batched_index_seventy/55fanout.txt create mode 100644 batched_index_seventy/55height.txt create mode 100644 batched_index_seventy/55one_call.txt create mode 100644 batched_index_seventy/5duration.txt create mode 100644 batched_index_seventy/5fanout.txt create mode 100644 batched_index_seventy/5height.txt create mode 100644 batched_index_seventy/5one_call.txt create mode 100644 batched_index_seventy/60duration.txt create mode 100644 batched_index_seventy/60fanout.txt create mode 100644 batched_index_seventy/60height.txt create mode 100644 batched_index_seventy/60one_call.txt create mode 100644 batched_index_seventy/65duration.txt create mode 100644 batched_index_seventy/65fanout.txt create mode 100644 batched_index_seventy/65height.txt create mode 100644 batched_index_seventy/65one_call.txt create mode 100644 batched_index_seventy/70duration.txt create mode 100644 batched_index_seventy/70fanout.txt create mode 100644 batched_index_seventy/70height.txt create mode 100644 batched_index_seventy/70one_call.txt diff --git a/batched_index_seventy/10duration.txt b/batched_index_seventy/10duration.txt new file mode 100644 index 0000000..dbd69b7 --- /dev/null +++ b/batched_index_seventy/10duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.281s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 6997 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3972 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3822 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3879 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4353 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3908 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3817 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3955 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3901 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3943 ms + +Median: 3925.5 diff --git a/batched_index_seventy/10fanout.txt b/batched_index_seventy/10fanout.txt new file mode 100644 index 0000000..49fee12 --- /dev/null +++ b/batched_index_seventy/10fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.271s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 6441 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4447 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4519 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4382 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4383 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4720 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4426 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4357 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4746 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4483 ms + +Median: 4465 diff --git a/batched_index_seventy/10height.txt b/batched_index_seventy/10height.txt new file mode 100644 index 0000000..315b33c --- /dev/null +++ b/batched_index_seventy/10height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.368s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 7818 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5226 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4681 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4644 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4651 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5036 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4639 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4665 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4660 ms + +intersection size is 1 +Total results: 4 +Time Taken: 4651 ms + +Median: 4662.5 diff --git a/batched_index_seventy/10one_call.txt b/batched_index_seventy/10one_call.txt new file mode 100644 index 0000000..4fae46f --- /dev/null +++ b/batched_index_seventy/10one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.267s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 18421 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12934 ms + +intersection size is 1 +Total results: 216 +Time Taken: 13637 ms + +intersection size is 1 +Total results: 216 +Time Taken: 13583 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12955 ms + +intersection size is 1 +Total results: 216 +Time Taken: 13110 ms + +intersection size is 1 +Total results: 216 +Time Taken: 13302 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12924 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12972 ms + +intersection size is 1 +Total results: 216 +Time Taken: 12804 ms + +Median: 13041 diff --git a/batched_index_seventy/15duration.txt b/batched_index_seventy/15duration.txt new file mode 100644 index 0000000..dc0243b --- /dev/null +++ b/batched_index_seventy/15duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.283s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 7814 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4895 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4496 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4408 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4393 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4466 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4625 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4523 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4453 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4405 ms + +Median: 4481 diff --git a/batched_index_seventy/15fanout.txt b/batched_index_seventy/15fanout.txt new file mode 100644 index 0000000..a9aa48a --- /dev/null +++ b/batched_index_seventy/15fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.238s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 7159 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5032 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4935 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4942 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4889 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4948 ms + +intersection size is 1 +Total results: 45 +Time Taken: 4933 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5073 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5042 ms + +intersection size is 1 +Total results: 45 +Time Taken: 5001 ms + +Median: 4974.5 diff --git a/batched_index_seventy/15height.txt b/batched_index_seventy/15height.txt new file mode 100644 index 0000000..da09465 --- /dev/null +++ b/batched_index_seventy/15height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.238s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 9083 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5955 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6307 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5967 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5961 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5944 ms + +intersection size is 1 +Total results: 4 +Time Taken: 6015 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5821 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5761 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5818 ms + +Median: 5958 diff --git a/batched_index_seventy/15one_call.txt b/batched_index_seventy/15one_call.txt new file mode 100644 index 0000000..0d68fc9 --- /dev/null +++ b/batched_index_seventy/15one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.243s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 21717 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19084 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19319 ms + +intersection size is 1 +Total results: 216 +Time Taken: 21470 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19364 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19340 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19187 ms + +intersection size is 1 +Total results: 216 +Time Taken: 19965 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18518 ms + +intersection size is 1 +Total results: 216 +Time Taken: 18384 ms + +Median: 19329.5 diff --git a/batched_index_seventy/20duration.txt b/batched_index_seventy/20duration.txt new file mode 100644 index 0000000..c806eef --- /dev/null +++ b/batched_index_seventy/20duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.327s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 8524 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5427 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5182 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11420 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7548 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7744 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7995 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8227 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5118 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5083 ms + +Median: 7646 diff --git a/batched_index_seventy/20fanout.txt b/batched_index_seventy/20fanout.txt new file mode 100644 index 0000000..b64fd1a --- /dev/null +++ b/batched_index_seventy/20fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 8480 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7137 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8334 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8657 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9050 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9350 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8695 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8928 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9062 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9167 ms + +Median: 8811.5 diff --git a/batched_index_seventy/20height.txt b/batched_index_seventy/20height.txt new file mode 100644 index 0000000..174ae69 --- /dev/null +++ b/batched_index_seventy/20height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.496s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 15429 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10690 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10077 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10306 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10152 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10053 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9969 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9948 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9899 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9191 ms + +Median: 10065 diff --git a/batched_index_seventy/20one_call.txt b/batched_index_seventy/20one_call.txt new file mode 100644 index 0000000..b5cff0f --- /dev/null +++ b/batched_index_seventy/20one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.444s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 37589 ms + +intersection size is 1 +Total results: 216 +Time Taken: 29655 ms + +intersection size is 1 +Total results: 216 +Time Taken: 31920 ms + +intersection size is 1 +Total results: 216 +Time Taken: 21860 ms + +intersection size is 1 +Total results: 216 +Time Taken: 21311 ms + +intersection size is 1 +Total results: 216 +Time Taken: 20578 ms + +intersection size is 1 +Total results: 216 +Time Taken: 20660 ms + +intersection size is 1 +Total results: 216 +Time Taken: 21305 ms + +intersection size is 1 +Total results: 216 +Time Taken: 21981 ms + +intersection size is 1 +Total results: 216 +Time Taken: 21479 ms + +Median: 21669.5 diff --git a/batched_index_seventy/25duration.txt b/batched_index_seventy/25duration.txt new file mode 100644 index 0000000..7f56164 --- /dev/null +++ b/batched_index_seventy/25duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.228s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 8865 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5727 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5801 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5700 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5566 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5499 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5664 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5620 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5551 ms + +intersection size is 1 +Total results: 1 +Time Taken: 5644 ms + +Median: 5654 diff --git a/batched_index_seventy/25fanout.txt b/batched_index_seventy/25fanout.txt new file mode 100644 index 0000000..a41ecf9 --- /dev/null +++ b/batched_index_seventy/25fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.238s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 9189 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6865 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6752 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6735 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6723 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6731 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6699 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6615 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6708 ms + +intersection size is 1 +Total results: 45 +Time Taken: 6655 ms + +Median: 6727 diff --git a/batched_index_seventy/25height.txt b/batched_index_seventy/25height.txt new file mode 100644 index 0000000..89b9482 --- /dev/null +++ b/batched_index_seventy/25height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.249s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 12012 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9336 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8514 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8856 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8616 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8530 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8533 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8561 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8692 ms + +intersection size is 1 +Total results: 4 +Time Taken: 8601 ms + +Median: 8608.5 diff --git a/batched_index_seventy/25one_call.txt b/batched_index_seventy/25one_call.txt new file mode 100644 index 0000000..32231c3 --- /dev/null +++ b/batched_index_seventy/25one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.240s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 29654 ms + +intersection size is 1 +Total results: 216 +Time Taken: 25303 ms + +intersection size is 1 +Total results: 216 +Time Taken: 25375 ms + +intersection size is 1 +Total results: 216 +Time Taken: 25713 ms + +intersection size is 1 +Total results: 216 +Time Taken: 25421 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24714 ms + +intersection size is 1 +Total results: 216 +Time Taken: 25620 ms + +intersection size is 1 +Total results: 216 +Time Taken: 24955 ms + +intersection size is 1 +Total results: 216 +Time Taken: 27460 ms + +intersection size is 1 +Total results: 216 +Time Taken: 28993 ms + +Median: 25520.5 diff --git a/batched_index_seventy/30duration.txt b/batched_index_seventy/30duration.txt new file mode 100644 index 0000000..ed7e4a1 --- /dev/null +++ b/batched_index_seventy/30duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.240s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 9020 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6800 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6640 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6788 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6920 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7345 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7364 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7012 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7293 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7254 ms + +Median: 7133 diff --git a/batched_index_seventy/30fanout.txt b/batched_index_seventy/30fanout.txt new file mode 100644 index 0000000..9897a8a --- /dev/null +++ b/batched_index_seventy/30fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.239s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 10945 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8293 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8054 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8092 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8092 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7936 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7694 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7662 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7575 ms + +intersection size is 1 +Total results: 45 +Time Taken: 7587 ms + +Median: 7995 diff --git a/batched_index_seventy/30height.txt b/batched_index_seventy/30height.txt new file mode 100644 index 0000000..afaed8e --- /dev/null +++ b/batched_index_seventy/30height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.234s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 12661 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9970 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10003 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9937 ms + +intersection size is 1 +Total results: 4 +Time Taken: 10011 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11562 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9840 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9886 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9843 ms + +intersection size is 1 +Total results: 4 +Time Taken: 9944 ms + +Median: 9957 diff --git a/batched_index_seventy/30one_call.txt b/batched_index_seventy/30one_call.txt new file mode 100644 index 0000000..f0a6759 --- /dev/null +++ b/batched_index_seventy/30one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.229s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 33565 ms + +intersection size is 1 +Total results: 216 +Time Taken: 31627 ms + +intersection size is 1 +Total results: 216 +Time Taken: 30265 ms + +intersection size is 1 +Total results: 216 +Time Taken: 30022 ms + +intersection size is 1 +Total results: 216 +Time Taken: 29324 ms + +intersection size is 1 +Total results: 216 +Time Taken: 29474 ms + +intersection size is 1 +Total results: 216 +Time Taken: 29181 ms + +intersection size is 1 +Total results: 216 +Time Taken: 29662 ms + +intersection size is 1 +Total results: 216 +Time Taken: 30495 ms + +intersection size is 1 +Total results: 216 +Time Taken: 32840 ms + +Median: 30143.5 diff --git a/batched_index_seventy/35duration.txt b/batched_index_seventy/35duration.txt new file mode 100644 index 0000000..ceceb22 --- /dev/null +++ b/batched_index_seventy/35duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 11209 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7201 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6946 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6864 ms + +intersection size is 1 +Total results: 1 +Time Taken: 6850 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7047 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12853 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7232 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7114 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7395 ms + +Median: 7157.5 diff --git a/batched_index_seventy/35fanout.txt b/batched_index_seventy/35fanout.txt new file mode 100644 index 0000000..bb70bc2 --- /dev/null +++ b/batched_index_seventy/35fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.242s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 11457 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9618 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9324 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9456 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9951 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9722 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9527 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8770 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9112 ms + +intersection size is 1 +Total results: 45 +Time Taken: 8997 ms + +Median: 9491.5 diff --git a/batched_index_seventy/35height.txt b/batched_index_seventy/35height.txt new file mode 100644 index 0000000..3ef1f3f --- /dev/null +++ b/batched_index_seventy/35height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.239s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 14243 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11309 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11641 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12822 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12858 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12520 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12763 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12749 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12321 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11810 ms + +Median: 12634.5 diff --git a/batched_index_seventy/35one_call.txt b/batched_index_seventy/35one_call.txt new file mode 100644 index 0000000..39fda2b --- /dev/null +++ b/batched_index_seventy/35one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.241s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 39878 ms + +intersection size is 1 +Total results: 216 +Time Taken: 35736 ms + +intersection size is 1 +Total results: 216 +Time Taken: 35181 ms + +intersection size is 1 +Total results: 216 +Time Taken: 35520 ms + +intersection size is 1 +Total results: 216 +Time Taken: 37049 ms + +intersection size is 1 +Total results: 216 +Time Taken: 34502 ms + +intersection size is 1 +Total results: 216 +Time Taken: 34410 ms + +intersection size is 1 +Total results: 216 +Time Taken: 36225 ms + +intersection size is 1 +Total results: 216 +Time Taken: 44222 ms + +intersection size is 1 +Total results: 216 +Time Taken: 46503 ms + +Median: 35980.5 diff --git a/batched_index_seventy/40duration.txt b/batched_index_seventy/40duration.txt new file mode 100644 index 0000000..91f08df --- /dev/null +++ b/batched_index_seventy/40duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 1.544s, Critical Path: 0.03s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 18156 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8653 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8422 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8179 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7913 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7769 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7901 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7720 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7577 ms + +intersection size is 1 +Total results: 1 +Time Taken: 7566 ms + +Median: 7907 diff --git a/batched_index_seventy/40fanout.txt b/batched_index_seventy/40fanout.txt new file mode 100644 index 0000000..9ed0e51 --- /dev/null +++ b/batched_index_seventy/40fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.262s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 11514 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9631 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9584 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9487 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9609 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9633 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9794 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9666 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9654 ms + +intersection size is 1 +Total results: 45 +Time Taken: 9623 ms + +Median: 9632 diff --git a/batched_index_seventy/40height.txt b/batched_index_seventy/40height.txt new file mode 100644 index 0000000..5d02ca5 --- /dev/null +++ b/batched_index_seventy/40height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 14756 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12565 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12980 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12498 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12314 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12360 ms + +intersection size is 1 +Total results: 4 +Time Taken: 12340 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11857 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11805 ms + +intersection size is 1 +Total results: 4 +Time Taken: 11757 ms + +Median: 12350 diff --git a/batched_index_seventy/40one_call.txt b/batched_index_seventy/40one_call.txt new file mode 100644 index 0000000..0f16ada --- /dev/null +++ b/batched_index_seventy/40one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 44594 ms + +intersection size is 1 +Total results: 216 +Time Taken: 40895 ms + +intersection size is 1 +Total results: 216 +Time Taken: 40427 ms + +intersection size is 1 +Total results: 216 +Time Taken: 39783 ms + +intersection size is 1 +Total results: 216 +Time Taken: 41292 ms + +intersection size is 1 +Total results: 216 +Time Taken: 40989 ms + +intersection size is 1 +Total results: 216 +Time Taken: 45761 ms + +intersection size is 1 +Total results: 216 +Time Taken: 51821 ms + +intersection size is 1 +Total results: 216 +Time Taken: 51638 ms + +intersection size is 1 +Total results: 216 +Time Taken: 52170 ms + +Median: 42943 diff --git a/batched_index_seventy/45duration.txt b/batched_index_seventy/45duration.txt new file mode 100644 index 0000000..9cc8fbb --- /dev/null +++ b/batched_index_seventy/45duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.272s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 11736 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8699 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9923 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8526 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8410 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8455 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8429 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8553 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8522 ms + +intersection size is 1 +Total results: 1 +Time Taken: 8442 ms + +Median: 8524 diff --git a/batched_index_seventy/45fanout.txt b/batched_index_seventy/45fanout.txt new file mode 100644 index 0000000..a8340ac --- /dev/null +++ b/batched_index_seventy/45fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 13010 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11373 ms + +intersection size is 1 +Total results: 45 +Time Taken: 10635 ms + +intersection size is 1 +Total results: 45 +Time Taken: 10571 ms + +intersection size is 1 +Total results: 45 +Time Taken: 10702 ms + +intersection size is 1 +Total results: 45 +Time Taken: 10621 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11626 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11154 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11697 ms + +intersection size is 1 +Total results: 45 +Time Taken: 10704 ms + +Median: 10929 diff --git a/batched_index_seventy/45height.txt b/batched_index_seventy/45height.txt new file mode 100644 index 0000000..f8a769f --- /dev/null +++ b/batched_index_seventy/45height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.287s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 16868 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14673 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14887 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14281 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14019 ms + +intersection size is 1 +Total results: 4 +Time Taken: 13091 ms + +intersection size is 1 +Total results: 4 +Time Taken: 13002 ms + +intersection size is 1 +Total results: 4 +Time Taken: 13260 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14175 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18350 ms + +Median: 14228 diff --git a/batched_index_seventy/45one_call.txt b/batched_index_seventy/45one_call.txt new file mode 100644 index 0000000..3321706 --- /dev/null +++ b/batched_index_seventy/45one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.276s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 52265 ms + +intersection size is 1 +Total results: 216 +Time Taken: 48124 ms + +intersection size is 1 +Total results: 216 +Time Taken: 46713 ms + +intersection size is 1 +Total results: 216 +Time Taken: 51336 ms + +intersection size is 1 +Total results: 216 +Time Taken: 46804 ms + +intersection size is 1 +Total results: 216 +Time Taken: 56753 ms + +intersection size is 1 +Total results: 216 +Time Taken: 61614 ms + +intersection size is 1 +Total results: 216 +Time Taken: 60846 ms + +intersection size is 1 +Total results: 216 +Time Taken: 67011 ms + +intersection size is 1 +Total results: 216 +Time Taken: 56935 ms + +Median: 54509 diff --git a/batched_index_seventy/50duration.txt b/batched_index_seventy/50duration.txt new file mode 100644 index 0000000..1336de2 --- /dev/null +++ b/batched_index_seventy/50duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.696s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 12705 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9952 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9826 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9513 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9666 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9628 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9382 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9248 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9243 ms + +intersection size is 1 +Total results: 1 +Time Taken: 9034 ms + +Median: 9570.5 diff --git a/batched_index_seventy/50fanout.txt b/batched_index_seventy/50fanout.txt new file mode 100644 index 0000000..360105b --- /dev/null +++ b/batched_index_seventy/50fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.272s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 13172 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11379 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11302 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11318 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11359 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11412 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11415 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11589 ms + +intersection size is 1 +Total results: 45 +Time Taken: 11838 ms + +intersection size is 1 +Total results: 45 +Time Taken: 12098 ms + +Median: 11413.5 diff --git a/batched_index_seventy/50height.txt b/batched_index_seventy/50height.txt new file mode 100644 index 0000000..790f48a --- /dev/null +++ b/batched_index_seventy/50height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.266s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 17731 ms + +intersection size is 1 +Total results: 4 +Time Taken: 15055 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16061 ms + +intersection size is 1 +Total results: 4 +Time Taken: 19010 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18306 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16165 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14054 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14155 ms + +intersection size is 1 +Total results: 4 +Time Taken: 13966 ms + +intersection size is 1 +Total results: 4 +Time Taken: 14180 ms + +Median: 15558 diff --git a/batched_index_seventy/50one_call.txt b/batched_index_seventy/50one_call.txt new file mode 100644 index 0000000..d367f25 --- /dev/null +++ b/batched_index_seventy/50one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.265s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 60020 ms + +intersection size is 1 +Total results: 216 +Time Taken: 53978 ms + +intersection size is 1 +Total results: 216 +Time Taken: 52771 ms + +intersection size is 1 +Total results: 216 +Time Taken: 51347 ms + +intersection size is 1 +Total results: 216 +Time Taken: 64504 ms + +intersection size is 1 +Total results: 216 +Time Taken: 68542 ms + +intersection size is 1 +Total results: 216 +Time Taken: 64507 ms + +intersection size is 1 +Total results: 216 +Time Taken: 63564 ms + +intersection size is 1 +Total results: 216 +Time Taken: 62259 ms + +intersection size is 1 +Total results: 216 +Time Taken: 64267 ms + +Median: 62911.5 diff --git a/batched_index_seventy/55duration.txt b/batched_index_seventy/55duration.txt new file mode 100644 index 0000000..d36c9d5 --- /dev/null +++ b/batched_index_seventy/55duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 1.370s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 18626 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13130 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13172 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13450 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13437 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13042 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13888 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13207 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12763 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12678 ms + +Median: 13189.5 diff --git a/batched_index_seventy/55fanout.txt b/batched_index_seventy/55fanout.txt new file mode 100644 index 0000000..98b3fe6 --- /dev/null +++ b/batched_index_seventy/55fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.520s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 20584 ms + +intersection size is 1 +Total results: 45 +Time Taken: 17451 ms + +intersection size is 1 +Total results: 45 +Time Taken: 17073 ms + +intersection size is 1 +Total results: 45 +Time Taken: 17180 ms + +intersection size is 1 +Total results: 45 +Time Taken: 18251 ms + +intersection size is 1 +Total results: 45 +Time Taken: 18918 ms + +intersection size is 1 +Total results: 45 +Time Taken: 19077 ms + +intersection size is 1 +Total results: 45 +Time Taken: 17355 ms + +intersection size is 1 +Total results: 45 +Time Taken: 16650 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14422 ms + +Median: 17403 diff --git a/batched_index_seventy/55height.txt b/batched_index_seventy/55height.txt new file mode 100644 index 0000000..36511b9 --- /dev/null +++ b/batched_index_seventy/55height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 19137 ms + +intersection size is 1 +Total results: 4 +Time Taken: 15829 ms + +intersection size is 1 +Total results: 4 +Time Taken: 15814 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16908 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16214 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16206 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16078 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16566 ms + +intersection size is 1 +Total results: 4 +Time Taken: 15962 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16059 ms + +Median: 16142 diff --git a/batched_index_seventy/55one_call.txt b/batched_index_seventy/55one_call.txt new file mode 100644 index 0000000..bf14713 --- /dev/null +++ b/batched_index_seventy/55one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.267s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 65481 ms + +intersection size is 1 +Total results: 216 +Time Taken: 59560 ms + +intersection size is 1 +Total results: 216 +Time Taken: 57933 ms + +intersection size is 1 +Total results: 216 +Time Taken: 57874 ms + +intersection size is 1 +Total results: 216 +Time Taken: 59060 ms + +intersection size is 1 +Total results: 216 +Time Taken: 64954 ms + +intersection size is 1 +Total results: 216 +Time Taken: 60871 ms + +intersection size is 1 +Total results: 216 +Time Taken: 58735 ms + +intersection size is 1 +Total results: 216 +Time Taken: 59175 ms + +intersection size is 1 +Total results: 216 +Time Taken: 60463 ms + +Median: 59367.5 diff --git a/batched_index_seventy/5duration.txt b/batched_index_seventy/5duration.txt new file mode 100644 index 0000000..1b1940f --- /dev/null +++ b/batched_index_seventy/5duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.513s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 6493 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3741 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3819 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3739 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3566 ms + +intersection size is 1 +Total results: 1 +Time Taken: 4522 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3541 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3548 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3394 ms + +intersection size is 1 +Total results: 1 +Time Taken: 3390 ms + +Median: 3652.5 diff --git a/batched_index_seventy/5fanout.txt b/batched_index_seventy/5fanout.txt new file mode 100644 index 0000000..5f50814 --- /dev/null +++ b/batched_index_seventy/5fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.429s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 5768 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3843 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3757 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3715 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3626 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3836 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3552 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3876 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3571 ms + +intersection size is 1 +Total results: 45 +Time Taken: 3774 ms + +Median: 3765.5 diff --git a/batched_index_seventy/5height.txt b/batched_index_seventy/5height.txt new file mode 100644 index 0000000..4c8d18b --- /dev/null +++ b/batched_index_seventy/5height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.290s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 5600 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3448 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3418 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3486 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3341 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3374 ms + +intersection size is 1 +Total results: 4 +Time Taken: 5216 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3413 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3406 ms + +intersection size is 1 +Total results: 4 +Time Taken: 3471 ms + +Median: 3433 diff --git a/batched_index_seventy/5one_call.txt b/batched_index_seventy/5one_call.txt new file mode 100644 index 0000000..ce18cbc --- /dev/null +++ b/batched_index_seventy/5one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.297s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 11908 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7810 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7809 ms + +intersection size is 1 +Total results: 216 +Time Taken: 8117 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7685 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7826 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7801 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7878 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7722 ms + +intersection size is 1 +Total results: 216 +Time Taken: 7810 ms + +Median: 7810 diff --git a/batched_index_seventy/60duration.txt b/batched_index_seventy/60duration.txt new file mode 100644 index 0000000..742d6fd --- /dev/null +++ b/batched_index_seventy/60duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 13737 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11219 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11119 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11234 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11292 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11244 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11019 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11107 ms + +intersection size is 1 +Total results: 1 +Time Taken: 10929 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11582 ms + +Median: 11226.5 diff --git a/batched_index_seventy/60fanout.txt b/batched_index_seventy/60fanout.txt new file mode 100644 index 0000000..1637aa9 --- /dev/null +++ b/batched_index_seventy/60fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.253s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 18880 ms + +intersection size is 1 +Total results: 45 +Time Taken: 16322 ms + +intersection size is 1 +Total results: 45 +Time Taken: 16258 ms + +intersection size is 1 +Total results: 45 +Time Taken: 13689 ms + +intersection size is 1 +Total results: 45 +Time Taken: 13402 ms + +intersection size is 1 +Total results: 45 +Time Taken: 13244 ms + +intersection size is 1 +Total results: 45 +Time Taken: 13331 ms + +intersection size is 1 +Total results: 45 +Time Taken: 13253 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14004 ms + +intersection size is 1 +Total results: 45 +Time Taken: 13563 ms + +Median: 13626 diff --git a/batched_index_seventy/60height.txt b/batched_index_seventy/60height.txt new file mode 100644 index 0000000..b390c55 --- /dev/null +++ b/batched_index_seventy/60height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.266s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 19191 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16177 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16023 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16565 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18771 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18834 ms + +intersection size is 1 +Total results: 4 +Time Taken: 17517 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16347 ms + +intersection size is 1 +Total results: 4 +Time Taken: 15793 ms + +intersection size is 1 +Total results: 4 +Time Taken: 16440 ms + +Median: 16502.5 diff --git a/batched_index_seventy/60one_call.txt b/batched_index_seventy/60one_call.txt new file mode 100644 index 0000000..c55fe60 --- /dev/null +++ b/batched_index_seventy/60one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 72269 ms + +intersection size is 1 +Total results: 216 +Time Taken: 65503 ms + +intersection size is 1 +Total results: 216 +Time Taken: 83496 ms + +intersection size is 1 +Total results: 216 +Time Taken: 90180 ms + +intersection size is 1 +Total results: 216 +Time Taken: 84357 ms + +intersection size is 1 +Total results: 216 +Time Taken: 74555 ms + +intersection size is 1 +Total results: 216 +Time Taken: 77938 ms + +intersection size is 1 +Total results: 216 +Time Taken: 72767 ms + +intersection size is 1 +Total results: 216 +Time Taken: 72874 ms + +intersection size is 1 +Total results: 216 +Time Taken: 69894 ms + +Median: 73714.5 diff --git a/batched_index_seventy/65duration.txt b/batched_index_seventy/65duration.txt new file mode 100644 index 0000000..5c0292c --- /dev/null +++ b/batched_index_seventy/65duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.240s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 14213 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11540 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11438 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11457 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11507 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11562 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11582 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12074 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12324 ms + +intersection size is 1 +Total results: 1 +Time Taken: 11760 ms + +Median: 11572 diff --git a/batched_index_seventy/65fanout.txt b/batched_index_seventy/65fanout.txt new file mode 100644 index 0000000..a2d72e8 --- /dev/null +++ b/batched_index_seventy/65fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.249s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 17044 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15298 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15218 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15114 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15119 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14865 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15209 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15033 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14984 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15377 ms + +Median: 15164 diff --git a/batched_index_seventy/65height.txt b/batched_index_seventy/65height.txt new file mode 100644 index 0000000..fad6d99 --- /dev/null +++ b/batched_index_seventy/65height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.237s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 21043 ms + +intersection size is 1 +Total results: 4 +Time Taken: 19877 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18931 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18564 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18338 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18278 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18244 ms + +intersection size is 1 +Total results: 4 +Time Taken: 17924 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18271 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18531 ms + +Median: 18434.5 diff --git a/batched_index_seventy/65one_call.txt b/batched_index_seventy/65one_call.txt new file mode 100644 index 0000000..2d04aec --- /dev/null +++ b/batched_index_seventy/65one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.237s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 85068 ms + +intersection size is 1 +Total results: 216 +Time Taken: 86663 ms + +intersection size is 1 +Total results: 216 +Time Taken: 89646 ms + +intersection size is 1 +Total results: 216 +Time Taken: 83834 ms + +intersection size is 1 +Total results: 216 +Time Taken: 86205 ms + +intersection size is 1 +Total results: 216 +Time Taken: 81368 ms + +intersection size is 1 +Total results: 216 +Time Taken: 81283 ms + +intersection size is 1 +Total results: 216 +Time Taken: 71847 ms + +intersection size is 1 +Total results: 216 +Time Taken: 69675 ms + +intersection size is 1 +Total results: 216 +Time Taken: 76439 ms + +Median: 82601 diff --git a/batched_index_seventy/70duration.txt b/batched_index_seventy/70duration.txt new file mode 100644 index 0000000..0faf914 --- /dev/null +++ b/batched_index_seventy/70duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.242s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 1 +Total results: 1 +Time Taken: 16920 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12629 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12980 ms + +intersection size is 1 +Total results: 1 +Time Taken: 15732 ms + +intersection size is 1 +Total results: 1 +Time Taken: 15487 ms + +intersection size is 1 +Total results: 1 +Time Taken: 14954 ms + +intersection size is 1 +Total results: 1 +Time Taken: 13959 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12183 ms + +intersection size is 1 +Total results: 1 +Time Taken: 16862 ms + +intersection size is 1 +Total results: 1 +Time Taken: 12008 ms + +Median: 14456.5 diff --git a/batched_index_seventy/70fanout.txt b/batched_index_seventy/70fanout.txt new file mode 100644 index 0000000..1ad6219 --- /dev/null +++ b/batched_index_seventy/70fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.252s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 1 +Total results: 45 +Time Taken: 16863 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15047 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15228 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15000 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14888 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15339 ms + +intersection size is 1 +Total results: 45 +Time Taken: 15434 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14824 ms + +intersection size is 1 +Total results: 45 +Time Taken: 14905 ms + +intersection size is 1 +Total results: 45 +Time Taken: 20976 ms + +Median: 15137.5 diff --git a/batched_index_seventy/70height.txt b/batched_index_seventy/70height.txt new file mode 100644 index 0000000..006da23 --- /dev/null +++ b/batched_index_seventy/70height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.248s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 1 +Total results: 4 +Time Taken: 21962 ms + +intersection size is 1 +Total results: 4 +Time Taken: 17733 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18050 ms + +intersection size is 1 +Total results: 4 +Time Taken: 21386 ms + +intersection size is 1 +Total results: 4 +Time Taken: 26092 ms + +intersection size is 1 +Total results: 4 +Time Taken: 25617 ms + +intersection size is 1 +Total results: 4 +Time Taken: 26086 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18479 ms + +intersection size is 1 +Total results: 4 +Time Taken: 18267 ms + +intersection size is 1 +Total results: 4 +Time Taken: 19383 ms + +Median: 20384.5 diff --git a/batched_index_seventy/70one_call.txt b/batched_index_seventy/70one_call.txt new file mode 100644 index 0000000..e1e7112 --- /dev/null +++ b/batched_index_seventy/70one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 1 +Total results: 216 +Time Taken: 92460 ms + +intersection size is 1 +Total results: 216 +Time Taken: 95780 ms + +intersection size is 1 +Total results: 216 +Time Taken: 91420 ms + +intersection size is 1 +Total results: 216 +Time Taken: 88154 ms + +intersection size is 1 +Total results: 216 +Time Taken: 93013 ms + +intersection size is 1 +Total results: 216 +Time Taken: 75664 ms + +intersection size is 1 +Total results: 216 +Time Taken: 74390 ms + +intersection size is 1 +Total results: 216 +Time Taken: 73927 ms + +intersection size is 1 +Total results: 216 +Time Taken: 73728 ms + +intersection size is 1 +Total results: 216 +Time Taken: 74444 ms + +Median: 81909 diff --git a/common.h b/common.h index 168421c..7f3a311 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-batched-index-new"; +const char BUCKETS_SUFFIX[] = "-quest-batched-70csv"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/run.sh b/run.sh index 085a3d8..cd1c5df 100755 --- a/run.sh +++ b/run.sh @@ -1,8 +1,8 @@ url='http://alitrip.oss-cn-zhangjiakou.aliyuncs.com/TraceData' -FOLDER='batched_index_new' +FOLDER='batched_index_seventy' mkdir ./${FOLDER} -for VAR in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +for VAR in {1..70} do if [[ ${VAR} -eq 1 ]] then From 563d660fc4bc696b92443f44bd1937c7c4d83a3e Mon Sep 17 00:00:00 2001 From: jessberg Date: Sat, 21 Jan 2023 00:44:05 +0000 Subject: [PATCH 36/49] 70 preprocessed data --- analyze_results/bytes_count.csv | 2 +- analyze_results/processed.csv | 12 ------------ analyze_results/traces_count.csv | 2 +- 3 files changed, 2 insertions(+), 14 deletions(-) diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv index c7dfba8..3e16ee3 100644 --- a/analyze_results/bytes_count.csv +++ b/analyze_results/bytes_count.csv @@ -1 +1 @@ -0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,3896234890,4349432299,4741999710,5141390717,5564752199,5966157401,6370790929,6803572577,7220061874,7629881521,8061868915,8448802904,8838063896,9285312071,9699935014,10101541675,10553746129,10992426268,11442843877,11908740333 +0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5184849025,5608210507,5608349710,6012983238,6445764886,6862254183,7272073830,7704061224,8090995213,8480256205,8927504380,9342127323,9743733984,10195938438,10634618577,11085036186,11550932642,11982436770,12413169115,12879374235,13289652843,13708973096,14163131784,14595937346,15011783241,15444376859,15893701952,16344624057,16830011344,17276012879,17734817656,18221780960,18663687225,19118049830,19608868119,20090731615,20534509126,20996864568,21455201129,21912290176,22394679174,22814082457,23229286055,23665805972,24099046041,24522469435,24944810021,25345772092,25758609360,26194317327,26637747939,27076055150,27541841695,27956460599,28368970204,28821517647,29278463015 diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index 72ceef5..23149d6 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -11,15 +11,3 @@ number_of_csvs,query,median_time(ms) 15,15fanout,5335.0 15,15height,6394.5 15,15one_call,18819.0 -20,20duration,5556.5 -20,20fanout,6437.5 -20,20height,8146.5 -20,20one_call,24104.0 -25,25duration,6904.5 -25,25fanout,7597.0 -25,25height,9579.5 -25,25one_call,28766.5 -30,30duration,7011.0 -30,30fanout,8514.5 -30,30height,10432.0 -30,30one_call,42409.5 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv index 36d5915..58da541 100644 --- a/analyze_results/traces_count.csv +++ b/analyze_results/traces_count.csv @@ -1 +1 @@ -0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2414915,2531317,2649274,2769509,2894163,3021409,3148558,3276772 +0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2414915,2531317,2649274,2769509,2894163,3021409,3148558,3276772,3399799,3521999,3645953,3764438,3886783,4014204,4144448,4260369,4377097,4496401,4617174,4741122,4864862,4989894,5117844,5243544,5370278,5498916,5630317,5749882,5869008,5988867,6108410,6228266,6341124,6452491,6564025,6678791,6791049,6901924,7016095,7130507,7245494,7363554,7481559,7600484,7718164,7837483,7957486,8080195 From 7fee3df4d14e57ba3e286af889338f7e12a31f90 Mon Sep 17 00:00:00 2001 From: jessberg Date: Mon, 23 Jan 2023 15:28:17 +0000 Subject: [PATCH 37/49] now with more results --- analyze_results/process_results.py | 5 ++- analyze_results/processed.csv | 68 ++++++++++++++++++++++++------ 2 files changed, 60 insertions(+), 13 deletions(-) diff --git a/analyze_results/process_results.py b/analyze_results/process_results.py index ee99f5e..e0fe731 100644 --- a/analyze_results/process_results.py +++ b/analyze_results/process_results.py @@ -3,7 +3,10 @@ queries = ["duration", "fanout", "height", "one_call"] -all_files = [5, 10, 15] +all_files = [] +for i in range(1, 71): + if i%5 == 0: + all_files.append(i) #all_files = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] results = ",".join(csv_hdr) + "\n" diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index 23149d6..d893d7e 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -1,13 +1,57 @@ number_of_csvs,query,median_time(ms) -5,5duration,3311.5 -5,5fanout,3503.5 -5,5height,3787.0 -5,5one_call,8374.0 -10,10duration,3835.0 -10,10fanout,4043.0 -10,10height,4624.0 -10,10one_call,12589.5 -15,15duration,4608.5 -15,15fanout,5335.0 -15,15height,6394.5 -15,15one_call,18819.0 +5,5duration,3652.5 +5,5fanout,3765.5 +5,5height,3433.0 +5,5one_call,7810.0 +10,10duration,3925.5 +10,10fanout,4465.0 +10,10height,4662.5 +10,10one_call,13041.0 +15,15duration,4481.0 +15,15fanout,4974.5 +15,15height,5958.0 +15,15one_call,19329.5 +20,20duration,7646.0 +20,20fanout,8811.5 +20,20height,10065.0 +20,20one_call,21669.5 +25,25duration,5654.0 +25,25fanout,6727.0 +25,25height,8608.5 +25,25one_call,25520.5 +30,30duration,7133.0 +30,30fanout,7995.0 +30,30height,9957.0 +30,30one_call,30143.5 +35,35duration,7157.5 +35,35fanout,9491.5 +35,35height,12634.5 +35,35one_call,35980.5 +40,40duration,7907.0 +40,40fanout,9632.0 +40,40height,12350.0 +40,40one_call,42943.0 +45,45duration,8524.0 +45,45fanout,10929.0 +45,45height,14228.0 +45,45one_call,54509.0 +50,50duration,9570.5 +50,50fanout,11413.5 +50,50height,15558.0 +50,50one_call,62911.5 +55,55duration,13189.5 +55,55fanout,17403.0 +55,55height,16142.0 +55,55one_call,59367.5 +60,60duration,11226.5 +60,60fanout,13626.0 +60,60height,16502.5 +60,60one_call,73714.5 +65,65duration,11572.0 +65,65fanout,15164.0 +65,65height,18434.5 +65,65one_call,82601.0 +70,70duration,14456.5 +70,70fanout,15137.5 +70,70height,20384.5 +70,70one_call,81909.0 From d1c45c342859207c58387163ee60813bf0903a64 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Mon, 23 Jan 2023 10:31:45 -0500 Subject: [PATCH 38/49] 70 csv complete --- analyze_results/plot_graph.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/analyze_results/plot_graph.py b/analyze_results/plot_graph.py index 5780a65..1b3191c 100644 --- a/analyze_results/plot_graph.py +++ b/analyze_results/plot_graph.py @@ -12,7 +12,7 @@ def import_csv(filename): to_return = [] for i in range(len(nums)): - if (i+1) % 5 == 0: + if (i+1) % 5 == 0 or i == 29: to_return.append(int(nums[i])) return to_return @@ -44,7 +44,6 @@ def import_query_data(query): latencies = [] for query in queries: latencies.append(import_query_data(query)) - fig, axs = plt.subplots(2) for query in range(len(queries)): From a16f25b72f9c986f48a60bdc2cb891df52fa78f6 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Mon, 23 Jan 2023 11:24:42 -0500 Subject: [PATCH 39/49] saves properly, in pdf --- analyze_results/plot_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyze_results/plot_graph.py b/analyze_results/plot_graph.py index 1b3191c..cdc8919 100644 --- a/analyze_results/plot_graph.py +++ b/analyze_results/plot_graph.py @@ -59,5 +59,5 @@ def import_query_data(query): fig.tight_layout() #plt.ylim(0, 60) plt.legend() +plt.savefig('graph.pdf') plt.show() -plt.savefig('graph.png') From bd4868630b0bea854bbde434f1e5e7298f33e66c Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Mon, 23 Jan 2023 11:42:24 -0500 Subject: [PATCH 40/49] prettier graph --- analyze_results/graph.pdf | Bin 0 -> 17267 bytes analyze_results/plot_graph.py | 12 ++++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 analyze_results/graph.pdf diff --git a/analyze_results/graph.pdf b/analyze_results/graph.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36399dded63da0c48295c5f551068ea074db9f14 GIT binary patch literal 17267 zcmb_^1yohd7q3#%NQ=}(Kt$s9g-a;i4I-)3C8Xhkh(#(WAswPfDXEkop>($(h=L*@ zp_GV(BD`}z{RDac#d_=Ut#Rh=GqLxcJ+pr^=j@MHOHM%uE{r1Q%^iZ|l#|0DFo?6o z1#$@q2vp152Imez02CbvRPT}t4g!@m$D2Di+dxj8BF8ydffYsnY9Q~0SJcIu<8ctw zb|VF6Cp-kXUDh(k<8f|I5H$Fc9IEB!Y^jUGLyUoO*x48#;*(A*8E{9Ak-oV&A!n0gx90Rd4_lB8RhdwgU90hI6vP+d|;mN(I<<$GhRo9m&0to*TV&8d9LUI(c>} z?dKi+i)X*h_NWvR_ze@YQ8dd|8mKiE=9&p|mFIq_dauhCIb2EE&@3Htf}{VAX`F7U z?ApxDoXz2xC)Zwxo_$|s-`VV7HlO;1*1{(D_~-EhZDQrpE>px-2F7s^Th0@4!3N$6=*Rrc9;N4^^UR5ab_TlX5QbTraE%9^))e2~GO{+3Gz(PvuG zC~lj0>ANBM);;8k3c8d%Z(DDvJhKiYq-3KvTs(fmQD3mBHY1n)a^Z`TRMN9~LFvJ= zw|WYPNrH^Sh+SXy>)gsJOr?8lC_P?Wbbqk^$Ph*#*0SdKR1#ZJj_L!TL9_nd`bL=X zn24ctuR)(3Q>68JASo*~!$2o?^Sjr#2Xm*gMQ+~xI_xa|t!~cs(Yvbe18YA9-1%;j zcLi9rEp(@O*|$VqZdW3uPvRlc;_9krYk3_1^zcZU)8tbd=c`BX%qpNMWS?@w zl1vaSqNRzrM|k)Cem={g2Ng>F9%<$}QpvZN&XlI!)%+Bu(G_2zRa3IvG+4d4` zgSD6ZMbRwrL+ZgY%Ukq&_m=s2#;>*7m-q6-e2ktSmnalt5gTn1qiwZ7-`gy^TvtQQDP3s%n_-MSj zBKO)0t+9wV4<_givL;X;v7oZ8H?U@djb zEypw{MV-5ak)a@XsMVeNWf-I@6RslII~3_@Mc9TNXCtAW2%QRz_X*KB?iNPM!kQ3a zAw#Y$M#zPG-gIR#@3l>ssVJ$~PI|4C9@6gV#l8HLWjaab$2QEvuL8clf z%w87RYO6IqBs219FbkJwG4yjX_y34yyOG&aSyq>-%9{7I0=Mt*M_E zYKU)zK0oL+6!OBbfr_ix05g={dM9kWkjy-UHBo6PGo0UvdeGiK4OK(+`5?*JRwn{B zqa;P;1iKjXz5)*izGs&Pwb(cAjxco}(`k3Cv>!S)PEvGI(}j?SWU^$U?-}pXYBxIk zs0dMjB7+wTB}T`rPpoHpEQLJ<-Do#W(4|O&s53NJGg1zRY-E{?IW=b1V86frQ7| zX1^w-eRw$OWqMt8vwM;M;nT0ppB&nzA1kT~Ec(KytxS3C-%Ms>=NsKOhR1&PZhV=( zc2UbY`SDy;_Si^Ogz2(paa+HtRMQ#zPJ6M=w_+pyB`NXOE7`mR%xaG_dcQLgPM*w@ zI^05-2+z#qnWAc|u#fD(s9vs~d-%Hb-GZQ@iCM1FHAQ_F~F^R_DV-vAz*Ce3M@k!`B`ULk+o zpdWgY&bYW$`Z}*zR&w{po<|99u+OBgn&^j5I9MGNS{O*}{Y0O5v08YPa8P|ZPX9<* zlTVQ%2jLX*Nz~%?(^ofUKb^ zqcqgd<64-@xE%D+BpL7BEQ?9`d=-X*c`rd2baH|zsxe;6^{Yx@_EAat3jGZdC*iAf z?5U#@F;=D`53kfR{d9A3dhR%F@ByTh3Ubw7Cld*8o*O@}(s6V4t3mR0LNpCiTgvBn ztcriZW$y@!mlx~VejIhXnLl#KA+iTwZ=%wm=)%V+Q5h}?Z9<7WxT9fC+@SKdXOYs# zS}Ij}uJJ`*fg4ubqRT$R%3CAssLMOE6cT}I+qn~1PnmjjiYl?8cA3q%VW$s0c{!Dl zp<;7Emdl-CvMw%aNlr~S492ZpPj;xl^^TgX3^hca)Y{5~pwX_gq4WdFdNkX5v;#RJ zYUa)}O3d~E!op-TLZrz~^Q79>4wB1G1s!STm<$uFtR=B(n+OYFcF14%8OAeInneZ7 z;wdX@6;Aqi6Pz;hudZFaf1TMOAgS^GHJaBW#fL91npS^Uo+4Xe;-87vp6@^}<<+xl z6aJj_S~);}B_HltTv5$KMPSdPZgxRYa3%M$4?pp}ylJJ2HT-SEWn)8x8l;%Q49g)x zHGNwv1pAnj+ak-kpLZ0rSiX{F`7!G$Y1Ru7rCqBey%Uprj`~SL>ax_YKol^7lwh zGR!jL!s_X!CqJIL)sjO<#wtqz0IJtctSx{upB|-ugNN`f= zCnYiL^SP9tC2wP)w8C+v5ZEsSC z(r9IrEkHuuh1s6JIr-#@!jlqj#Y&aT^Oxq9?yrBCzP94!e$n_z^WBo{OPi&(9Si5L z&645QL8iG)m+*zTN__Aki2ArN1kJsCPd& z6AK5y=^u=V4ymB3hLOr$e)x=bRn%uCIF(^}!!byRc}Q|P_^X4N)xDeC#bZo`4_$QC zbTl$AQeMaqVHcm`?f8jm@fJS1MC1C6vE(jcq&82)O}V(X7@LphubiTEX0zBsmcP#h z{|gEuFsL0oO6rtF5W*?jO37oZ&+ACOD04MiN#>}Q6o9PdoCqg|ENH z*(i_4t~_vDEKmJJl64p2-s0NAXc4>kjE;v%2zR{SCfk3}mFfcHiv@ZleJ_`CJ)N6Q z__5sZC;kK9*oMxFOs^kh;lw*=d8@2$$%KG9C3 z#^NZR>+{smvR035fvJP5&nT#!Su8JTZG5Pw26g7r(PMQwf&R0SX=szFqjaiuYs!s8 z6IBb}bDJHnZys>5wJG02q5D2t>{jTV8d_N{Qn`8k0$v{6y#**2XT}hF(kI+Yr0N7w)%7)rUX&CEADKs33co)Sd*)HhsT|+6W z`*KCx1_va?+WNH48T|<8v@QP0Hvp}GpW_T@weECM`_?Z?0|I}IF(MxTXg;we?3IL#9S45+#--^8@KMiSB0JZqE?UULI&;Jlwtq z6Mr8i|Cb44VLL52tPNacvh!*+q#tw%e(0T{Y1tUKamBla#<=+z851RE+MB=_LTA4M zJ`Xd~bA*gCOe|L8Z^fB!t5`EtB_7YBf63$ePA)}UUF9B4aqruaz)8Yy)9f>Qa0nhF z_oF5eksTbOLu)_|2{!=_MFX{#v$9XU{8=R=cVz}iI^$jFlCDO-Onb$5BWdZSs8(^a z8jJ0lq8G1u%KYQFqxlkF=2(22l&2ZyY`K4gau24!^ZtIALZHz*xzbj3l7o}Jon$aE zOP5;ZnM}CQCx3a<(eY&|855^v)Ei#iV;?h0GGbNATH?YyOc3hVnh^F@ERh2B4$2Nu zE8Tf?M|zV+N6bv7a}O9MmDSA0RHvBED% zbx@i%sjN^*CMB+SykL>zJvWn_&@+ov$<2_3Z&FRKRb!efBkbRkxOxWkO@}gBJ+GGc zR`3#k(|nw*?wRx8p*1QR?aD%I;D-2t1u?%1eY2eno?!z4@7=HaQyeMyZk3k#iF)~c zLSm8Osy`2|(l{uD#e=l&`SKN~+i`8upH`bMvv5p*Jw!cX`En0Ef_EtU(IXPIa}l6* z#9!W(CjDHcJ4JBc@Lk)bq?Ytm_e~6eIHO>`48co+LkV8NT-n->S9vvI=lB*bK9>kh zZmPIrw4j&H`3&PY_S2x~IC-psVBlcW3r^l~uM6v}1d_~lwION>)I5Z)RsEA)-ckHF z-}|5(H8^>dX;O(RjO)Un6bL16ow~?->-mp~^_f%1+%464xF6|1oLGB}G-;%_2#16JP)IOSQV z{YSqi@ad95~T;z>P8dL zS>HImV}~N9Z#!7juGa1&XsN5q6MOIu27&hPJQhsLOE&6%}xO zdcmdO-lDiem$mhXQEFW9$LPs!MvJ-BD}(I{riOeCp8~AKN~g53%!e@Q*~vMA8N*o8)IlfbGN;5jxieE!hZKX4 zS;jF>j!BbEtJK;W1;t#HCzPIBEN;C_Huv`3h33LTS@E6X{MPxO@jAjz%s06>nin${ zKBm34m+4x~7vNn|dVK@w#y4l%IMLTUdS~NZD3NOTV_UATBTtZLW%{qmoC!C~$(Xmw;Yz zflhWNIEJ1RaRoYsxKfG`Ul1EiaM66`WKxH#Lz)|ph@Wf|KPP*!MCbIqlAn^o+NV^v`C{FS?C zC~w~o5sBEbhS1u|PW3R#iXV*Y)d%|LD)|~7++5xq&}n5LmEtXV#%p28O#p?jVuOZO zBhhKcui3brT^H00RIJS#QD*Rs`*6SsAC_ncf&h*({Hdl%Pet<~=M1 zt03`sZT%+r1=oinZk-N=*xmuUrI#m(T6Ig_Py5k1=6rYmkxSwD;|;xr=jBhzAL)Z8 zV{@x&mDeUtJZ&($wv4sv87#7J+{Ru#FV}u z)Fbbau7M&fg)#tNQWp(z*Gpe&2}4XwiAM0YQ7gA7 z?SYQAOV+7JQ@P34Kb|)c`d44b{h~+&3cJI=B(=oDjV9UQB|s%@||8NXc=? z2OXW@mW<@+*3*uy(d1&*Jw$?ZWg}Mf>Y{BG$~qw|(TGnR4?T}v&6Q|Q6PvP9@66>+ z80^)2o3P5}QhNT4l}1bxo}+y=skqZ0%UHfL7K}Nh9{Of#W`*AFBvhw@-RRym54xD) zBa=ty;%u(7ytmq1JG61r=-3__+%E)1Vs~OWNgY+E2B|G9_u%Ei-L6YIXND_(INQtW zWSy)GhBv~lw%#fGsA@{*8rV{L?y<4N!z;qZMhTaKDsG4Jo+=rNo8u}m#S0gRvMVl9 zAnu)%%k0SRNm-SN4Lo#5VT4M|J6i3hKuS1@-laQ};soy;BAAk0w?sAZyGI)Ap~_H4`5F z=~j6d^~nBMvB9ysPc7s^Z#lS2J}2r|n{UAO*U{HH%-`!zDMTVqa{0X}zj5KSlxNY4 zuP!CYr;$^sj(g1Meh&?B+oA}#cR4G!*tm~`7bV7hWofiUl4p`>vc}GQ@xH^ z=pwyPMqXSLi}SO&xD~}1#|SFNH#%sa&w@SIuJ`l_9QYYHr{}O1|GmED7hNJ z*>3mMZO)~*!V1<4e9I>UnJU$BB{3GOcraRxpk zLZ%$FysC^S%bbYeqSv7GV52rluYG23Q8#MTBM~~}^h3cKcRYY9+)8HXh))pYGeO}I z!DtMI9%0x?I7`(+Wn?yx#j1VVPawLV44HWMqDwQq@D{PrYO0jz)2i){2ZgfAr;FZ zt#GO5AKZjmhKOlg_^!X{)=P@*y=WJqe1?B0o$k^mwaxK6nU{Jj@2yZ+{@|9_gUkIw z?%f9>d0;aF50+KBF1|`1;_iGc&IWO=@m;l79V29B4qk1#53O4B%XqnY2BI~u9+S;| zxQ=q;IreZ>nT*&oCcMdBH8*r7B9kHc&6lx)C54BBj7Hz)dNMjvwL4myvCW55?lYDb zUhbnFT<|tgDxZ(;;9_gr)bbU?4ZD%^N*i}yoS}VB!~WP$z|TD2Uf6#Yhv?h$ z{_2WFldum{?&OOa>I0dN=!=P)S>DWH_-zlIDZi~;o3`lf%dEsNZ9D_InJ0@4BCoztiMO3>-t| zvk7=%KIGqWo4(R~-gt6jsaM+jhzzBLW^KO7Syyv>U3jSwlIpr5%Ut7kgk|L`0|?&~ zA!S5xPEY!G&jyz4rSVr5kJD03pkl}9+9Stuq`0q$6*fhclpufN&vDLh&C_q5JUQuP zeo#1jPHIhu^Gjd&p!TQ4l<<=R_8b@9oDDFgRe5_#_z^;5_&K4`hvzXll5gfub9jm^ z?jh`calgn;pY?HxC>0#MY!gG(X@&8O%lsLj z!u^m=aFXE?>}tzmhgHe+MXbI!D=~xoiTIW?Qw0P$;=1(-_Q4lETjIu_^@@`;uy&ea zv#eaxLOk?5PP(Xd#eCBqUh_1JzN$!#BY&Oi&gL-E>R5M#PvLIf9Q8^tM3YZfv0)Z6 zxNwLs^lD6wfXh9HWWOKBC?fItb4e_q0ERWgdM=!?rdp4c7h-7p>czcLHbJAYeXn;lRT@Zm75-}TYp46WzHbn6@LPZXSCy#!VpTW>xl@&Q#OVmRC}l5eq;Rit6Q1g_M(|@+ zoGo8F=v4O_K>RD{{rcYc1yA|iEa4p{p3ft)v0R_VIHBpri9CGt)5mP1b*`2**u~(# z*karTDDvppt*O1E(^wuH7Gr!jn>z0HaISMr*5%vzZ&en<*t@~LEv@XN9iMcE)-d9! z<>f6K=}kkq1J?v*&Y0U7sdA{)}hzR8h1%}Fk{yoap&MU@EnPP38JDhnk7 z-VK-r9yO@;p3Smhx~=+fb4h7!`B)E=yv|8&(HxTY@+{6|fSIoJN3Y8M{PvrKN zX@Cj3V3d7tO6x11J!PDv#`To=oYHDPg9NL(mEZlQAogcbEmMT^I>rSaQwL`cpW!hr zqO>f?D|eAJCqg%PGfsSiSq4WcCZAFLe2|!a_2t_2Ij4Egs|U>*U|Vn0cD{rIE^797 zod!qmI%J2pQ32w~&L{d&5OsGIN@(7Ca1+02&-;j&G9K2#H^}545hAN*HWP38fmcs6 z?-UPrX}L1?aF&(`k*2L0B{C^pbtGo`1x}*W3!B$ReD6;4u%RPLj-^B5M%tqpMvd=K z_o&Pm794eRuI{i#bE_X?JaeDh`>tnsZYlH}B?5J+;tfG=cUkOKf6k|in4TZf z`u2;W;Fz7$Cw~V^2f%+K_ve0mN+y0QxouBtzHeq7>Q_viCP1;3GpVK7* z@3x;3REd%r3`dh42>OrjUm{hvg_zaP=76!#BNUOgv2WCWkxkb@PlER#9QA14k7F31{u(Peg{ zeT95LwCO9AnxDw$Jp|n^AOWsqckHM_I;w6B5X!gi99ySuTE?>~<>E1mG(RK~qYFSM7y(Cqx0oqhWSaKScAbV5rXq$ep(l!6w53AiMB4O{1_@BcV|`sqQ(~DeD#^ZQ zNlO`6EB%!Z_+MB(#F2r7XiZ8rR#+f(2>p0oyW6>v2D=>(zMfur|2$`4GH*B&IqtH?#heZE>Cvvi|6QsR^%yv1h*6YQ8ue0-84gSWk& zK`g(Cpwc?=)tM=?T8^9iA!jLyGC3R;jp<|3+4II&24U~oV7eA5AM%O&CMnF2HD4`1MCxoI{)?z zc%gl6=*V5ZG+dRM2zYV6l9U=&-NZTRikJ>`-<^DLro;eVUe$o4Ji`Ttg287yOh@-r&-@9e*@J28IYX$`48V@uhwRAY$6vUrJe2nadm}YLTi>fx zHj1hP-o*8l`hFb?naXzwhN^I0diLn%_taD=*UxjLg(P9#5lp0>c4Rz6Jz7+EuFRKF zh1ouGY!1~d9%Q%6X zu2;pLP zNfF4Tf&~W^XGohLA8FwMa^Ihtq z_T4iExr^h`9Hy?qe9X{Xwxw?vLS}8d+(jv+>Yq+D-`oqM-g~J|b~5#jUG8XEtkpAX zxI5q^g?TmlzA|X+N63@O$+dOD^Jd0Dd+2cA@KR)_+g87$Of3r>gjSMjnKJ{B)sqrc z+2ywLRe7?9Jbc&3AubXU-L5>sc&n+9FoC;lW7S0v%h4Xu&6a1U>fzGEsX_*Eo=t=8 zbndkXI6;X*%b-MRHBFNVDVdm-i-zpluE8xPowB92-H%t7KTjKp5 zV(%ArqIXJ-M8kj^h3=<%-Dm{n3=BissudL81ePIz-QBF& ziFG&3?v6FQY_wqNJ8eaz_0{f1nQ~rR zpUb(rc0&(c>Fe3i#Gm*-C8bp!E=$g`d5wx3MioW6KclL;+@(9P`6#EdZH@T(Md6J- zq}ne6M8J2xy+CVYsev=~%nIX%6i*1$OEdLE$3|60NRK{8jmeGTXs(1sov2K%kGiM4 z6NHn>hX&d&peAFBh1`9fl~h9WBCCU~gZyjk;-4K%lsG6m(37bx%goW;m!W$ie~9SR ztx_kNVaun!aV1=n!4QiREP~P%_SR*L_GX&g8}@7hLSm8=q7 zG+ysquvA2H_WQ=cWJSH$fAs@M{hw!)F?Yvph3i0N)U~zc^abQ_7tHlNbj_XIfv_K2 zb2l(x2Z*Hsbqa*<$U6Z6Enqy3gakQM&d%Bz2Sm$&;W5S#;B76`-NoDzhysE^pe|q- zjRVda2=3V`y4l&-;vpze2-F+r<_v*4I{{%a_=`XZZ|jBw%GN-f4LQ`>&J!rR+j#;1 z;5>0o5GZb|AqEYBN<*MB5Dd_R97F^I#MD5b>JX>~L=+BzYD0hnF;o`_CxT$ngZaM|{A=LKW=X-0`4_0M$T29m;G66$!y%KrEb7144w~AC>;S14+AE zg27K%1Qv|>a#7k=J|G^*H~2&d0lXaoW1DQ;fe8n6us^Z?uN*4_abAi(t2MEa2WT038EI00M50ivq?)14{~t1>2z@Xdo8_lm+Hn2?5r_Y$*ZE z!SS~y4OAe&1E5fHa7;ANW=ko*nFI4JO9Mwjfj?lNia@qO(ZC!?Tk`=9x1Gq*zvk>u zSK9@E!R;;(fW$yEG{_aeIoKRDgWuEjI|rtW{5K<8J)lH@O2Eh9Ap4*l{OKR81roQ6 z3Fry@{ihd@DHx1=>)Edkuox`lcLEJz+Xg^8*qOF;4cG-}6Mv;GdjM_XciOU*Up4{S z!`}(yYwI`A2WT6=6DT6V`QMD4gqF% zi>3iVfJh&pX+wZX21>w|3qfq{C1_ zPgQ_kw)a_Js@x$431c@NdWcYgji3>esODz`nNK$+n{g zUNLQT1Nv^jR<^qT1qXgHfCmh9o4)Pxfy2;NEf56&t8=UD0YU##>|Z_{z`k1#F9FuF zUE0DBz>Woy|J(b)mVds81lG@X<^P_8-TZzo4F@0$;N+wM+HdFnCyW_tX%5^U0S%$j zh~L!!Ah7L){)=}0s~YlmHJC8qp!cc>J~(yiFK$8ZesS|3i=asV5JAoULj)D}TNqhq z55PAA9IDz`flv%sd!S|j;IPffc0~7oqX7H-UyXrCWW1fTlN=bpeL_wQ0Ye~R0A>NO z5CVn;;t%;?Fg|{As4Q3yz%3^Lu;Sw2jCZiJfOsN>(ZWbUh%FxP;w}b-I{tYi?CfR( zGy>40m4_t|5B+y57b|Osg}J3YfIxor!2g$CyxefsZ4;T(RKafAS(l{}}_0ME=ts@Hz&-pgY^b5Lf^g@1h~W zoB!Q3)E@Oj{uvjB6vh109|{;{cYi22;O=*gfkMM}%L_wc!QB`9`y($54FldL@1~)^ zeQsAh5pb8-NyEVYl@0Kq|L6q+LZw}8Md0B6v$H=DBmk3k(?HCyngO{2HR~{a0Ci;k~{fBU;v!GnmLKeky3e literal 0 HcmV?d00001 diff --git a/analyze_results/plot_graph.py b/analyze_results/plot_graph.py index cdc8919..ae2e5f7 100644 --- a/analyze_results/plot_graph.py +++ b/analyze_results/plot_graph.py @@ -56,8 +56,16 @@ def import_query_data(query): #plt.plot(bytes_count, new_x_height, label = "height", linestyle='--', marker='o', color='c') axs[0].set(xlabel='Bytes of AliBaba Data (MB)', ylabel='Latency (s)') axs[1].set(xlabel='Number of Traces (Thousands)', ylabel='Latency (s)') -fig.tight_layout() +#fig.tight_layout() #plt.ylim(0, 60) -plt.legend() + +for ax in axs: + box = ax.get_position() + ax.set_position([box.x0, box.y0 + box.height * 0.15, + box.width, box.height * 0.85]) + +axs[0].set_title("Structural Query Latencies on AliBaba Data") +axs[1].legend(loc='upper center', ncol=4, bbox_to_anchor=(0.5, -0.3), fancybox=True, shadow=True) + plt.savefig('graph.pdf') plt.show() From 0faff7d3bf424f2d311b47d26222a8d658aa2bee Mon Sep 17 00:00:00 2001 From: jessberg Date: Tue, 24 Jan 2023 17:07:16 +0000 Subject: [PATCH 41/49] did all of the data set --- batched_index_all/100duration.txt | 55 + batched_index_all/100fanout.txt | 55 + batched_index_all/100height.txt | 55 + batched_index_all/100one_call.txt | 55 + batched_index_all/105duration.txt | 55 + batched_index_all/105fanout.txt | 55 + batched_index_all/105height.txt | 55 + batched_index_all/105one_call.txt | 55 + batched_index_all/10duration.txt | 55 + batched_index_all/10fanout.txt | 55 + batched_index_all/10height.txt | 55 + batched_index_all/10one_call.txt | 55 + batched_index_all/110duration.txt | 55 + batched_index_all/110fanout.txt | 55 + batched_index_all/110height.txt | 55 + batched_index_all/110one_call.txt | 55 + batched_index_all/115duration.txt | 55 + batched_index_all/115fanout.txt | 55 + batched_index_all/115height.txt | 55 + batched_index_all/115one_call.txt | 55 + batched_index_all/120duration.txt | 55 + batched_index_all/120fanout.txt | 55 + batched_index_all/120height.txt | 55 + batched_index_all/120one_call.txt | 55 + batched_index_all/125duration.txt | 55 + batched_index_all/125fanout.txt | 55 + batched_index_all/125height.txt | 55 + batched_index_all/125one_call.txt | 55 + batched_index_all/130duration.txt | 55 + batched_index_all/130fanout.txt | 55 + batched_index_all/130height.txt | 55 + batched_index_all/130one_call.txt | 55 + batched_index_all/135duration.txt | 55 + batched_index_all/135fanout.txt | 55 + batched_index_all/135height.txt | 55 + batched_index_all/135one_call.txt | 55 + batched_index_all/140duration.txt | 55 + batched_index_all/140fanout.txt | 55 + batched_index_all/140height.txt | 55 + batched_index_all/140one_call.txt | 55 + batched_index_all/144duration.txt | 55 + batched_index_all/144fanout.txt | 55 + batched_index_all/144height.txt | 55 + batched_index_all/144one_call.txt | 55 + batched_index_all/15duration.txt | 55 + batched_index_all/15fanout.txt | 55 + batched_index_all/15height.txt | 55 + batched_index_all/15one_call.txt | 55 + batched_index_all/20duration.txt | 55 + batched_index_all/20fanout.txt | 55 + batched_index_all/20height.txt | 55 + batched_index_all/20one_call.txt | 55 + batched_index_all/25duration.txt | 55 + batched_index_all/25fanout.txt | 55 + batched_index_all/25height.txt | 55 + batched_index_all/25one_call.txt | 55 + batched_index_all/30duration.txt | 55 + batched_index_all/30fanout.txt | 55 + batched_index_all/30height.txt | 55 + batched_index_all/30one_call.txt | 55 + batched_index_all/35duration.txt | 55 + batched_index_all/35fanout.txt | 55 + batched_index_all/35height.txt | 55 + batched_index_all/35one_call.txt | 55 + batched_index_all/40duration.txt | 55 + batched_index_all/40fanout.txt | 55 + batched_index_all/40height.txt | 55 + batched_index_all/40one_call.txt | 55 + batched_index_all/45duration.txt | 55 + batched_index_all/45fanout.txt | 55 + batched_index_all/45height.txt | 55 + batched_index_all/45one_call.txt | 55 + batched_index_all/50duration.txt | 55 + batched_index_all/50fanout.txt | 55 + batched_index_all/50height.txt | 55 + batched_index_all/50one_call.txt | 55 + batched_index_all/55duration.txt | 55 + batched_index_all/55fanout.txt | 55 + batched_index_all/55height.txt | 55 + batched_index_all/55one_call.txt | 55 + batched_index_all/5duration.txt | 55 + batched_index_all/5fanout.txt | 55 + batched_index_all/5height.txt | 55 + batched_index_all/5one_call.txt | 55 + batched_index_all/60duration.txt | 55 + batched_index_all/60fanout.txt | 55 + batched_index_all/60height.txt | 55 + batched_index_all/60one_call.txt | 55 + batched_index_all/65duration.txt | 55 + batched_index_all/65fanout.txt | 55 + batched_index_all/65height.txt | 55 + batched_index_all/65one_call.txt | 55 + batched_index_all/70duration.txt | 55 + batched_index_all/70fanout.txt | 55 + batched_index_all/70height.txt | 55 + batched_index_all/70one_call.txt | 55 + batched_index_all/75duration.txt | 55 + batched_index_all/75fanout.txt | 55 + batched_index_all/75height.txt | 55 + batched_index_all/75one_call.txt | 55 + batched_index_all/80duration.txt | 55 + batched_index_all/80fanout.txt | 55 + batched_index_all/80height.txt | 55 + batched_index_all/80one_call.txt | 55 + batched_index_all/85duration.txt | 55 + batched_index_all/85fanout.txt | 55 + batched_index_all/85height.txt | 55 + batched_index_all/85one_call.txt | 55 + batched_index_all/90duration.txt | 55 + batched_index_all/90fanout.txt | 55 + batched_index_all/90height.txt | 55 + batched_index_all/90one_call.txt | 55 + batched_index_all/95duration.txt | 55 + batched_index_all/95fanout.txt | 55 + batched_index_all/95height.txt | 55 + batched_index_all/95one_call.txt | 55 + first_15_for_145.txt | 777 ++++ rest_of_145.txt | 6543 +++++++++++++++++++++++++++++ 118 files changed, 13700 insertions(+) create mode 100644 batched_index_all/100duration.txt create mode 100644 batched_index_all/100fanout.txt create mode 100644 batched_index_all/100height.txt create mode 100644 batched_index_all/100one_call.txt create mode 100644 batched_index_all/105duration.txt create mode 100644 batched_index_all/105fanout.txt create mode 100644 batched_index_all/105height.txt create mode 100644 batched_index_all/105one_call.txt create mode 100644 batched_index_all/10duration.txt create mode 100644 batched_index_all/10fanout.txt create mode 100644 batched_index_all/10height.txt create mode 100644 batched_index_all/10one_call.txt create mode 100644 batched_index_all/110duration.txt create mode 100644 batched_index_all/110fanout.txt create mode 100644 batched_index_all/110height.txt create mode 100644 batched_index_all/110one_call.txt create mode 100644 batched_index_all/115duration.txt create mode 100644 batched_index_all/115fanout.txt create mode 100644 batched_index_all/115height.txt create mode 100644 batched_index_all/115one_call.txt create mode 100644 batched_index_all/120duration.txt create mode 100644 batched_index_all/120fanout.txt create mode 100644 batched_index_all/120height.txt create mode 100644 batched_index_all/120one_call.txt create mode 100644 batched_index_all/125duration.txt create mode 100644 batched_index_all/125fanout.txt create mode 100644 batched_index_all/125height.txt create mode 100644 batched_index_all/125one_call.txt create mode 100644 batched_index_all/130duration.txt create mode 100644 batched_index_all/130fanout.txt create mode 100644 batched_index_all/130height.txt create mode 100644 batched_index_all/130one_call.txt create mode 100644 batched_index_all/135duration.txt create mode 100644 batched_index_all/135fanout.txt create mode 100644 batched_index_all/135height.txt create mode 100644 batched_index_all/135one_call.txt create mode 100644 batched_index_all/140duration.txt create mode 100644 batched_index_all/140fanout.txt create mode 100644 batched_index_all/140height.txt create mode 100644 batched_index_all/140one_call.txt create mode 100644 batched_index_all/144duration.txt create mode 100644 batched_index_all/144fanout.txt create mode 100644 batched_index_all/144height.txt create mode 100644 batched_index_all/144one_call.txt create mode 100644 batched_index_all/15duration.txt create mode 100644 batched_index_all/15fanout.txt create mode 100644 batched_index_all/15height.txt create mode 100644 batched_index_all/15one_call.txt create mode 100644 batched_index_all/20duration.txt create mode 100644 batched_index_all/20fanout.txt create mode 100644 batched_index_all/20height.txt create mode 100644 batched_index_all/20one_call.txt create mode 100644 batched_index_all/25duration.txt create mode 100644 batched_index_all/25fanout.txt create mode 100644 batched_index_all/25height.txt create mode 100644 batched_index_all/25one_call.txt create mode 100644 batched_index_all/30duration.txt create mode 100644 batched_index_all/30fanout.txt create mode 100644 batched_index_all/30height.txt create mode 100644 batched_index_all/30one_call.txt create mode 100644 batched_index_all/35duration.txt create mode 100644 batched_index_all/35fanout.txt create mode 100644 batched_index_all/35height.txt create mode 100644 batched_index_all/35one_call.txt create mode 100644 batched_index_all/40duration.txt create mode 100644 batched_index_all/40fanout.txt create mode 100644 batched_index_all/40height.txt create mode 100644 batched_index_all/40one_call.txt create mode 100644 batched_index_all/45duration.txt create mode 100644 batched_index_all/45fanout.txt create mode 100644 batched_index_all/45height.txt create mode 100644 batched_index_all/45one_call.txt create mode 100644 batched_index_all/50duration.txt create mode 100644 batched_index_all/50fanout.txt create mode 100644 batched_index_all/50height.txt create mode 100644 batched_index_all/50one_call.txt create mode 100644 batched_index_all/55duration.txt create mode 100644 batched_index_all/55fanout.txt create mode 100644 batched_index_all/55height.txt create mode 100644 batched_index_all/55one_call.txt create mode 100644 batched_index_all/5duration.txt create mode 100644 batched_index_all/5fanout.txt create mode 100644 batched_index_all/5height.txt create mode 100644 batched_index_all/5one_call.txt create mode 100644 batched_index_all/60duration.txt create mode 100644 batched_index_all/60fanout.txt create mode 100644 batched_index_all/60height.txt create mode 100644 batched_index_all/60one_call.txt create mode 100644 batched_index_all/65duration.txt create mode 100644 batched_index_all/65fanout.txt create mode 100644 batched_index_all/65height.txt create mode 100644 batched_index_all/65one_call.txt create mode 100644 batched_index_all/70duration.txt create mode 100644 batched_index_all/70fanout.txt create mode 100644 batched_index_all/70height.txt create mode 100644 batched_index_all/70one_call.txt create mode 100644 batched_index_all/75duration.txt create mode 100644 batched_index_all/75fanout.txt create mode 100644 batched_index_all/75height.txt create mode 100644 batched_index_all/75one_call.txt create mode 100644 batched_index_all/80duration.txt create mode 100644 batched_index_all/80fanout.txt create mode 100644 batched_index_all/80height.txt create mode 100644 batched_index_all/80one_call.txt create mode 100644 batched_index_all/85duration.txt create mode 100644 batched_index_all/85fanout.txt create mode 100644 batched_index_all/85height.txt create mode 100644 batched_index_all/85one_call.txt create mode 100644 batched_index_all/90duration.txt create mode 100644 batched_index_all/90fanout.txt create mode 100644 batched_index_all/90height.txt create mode 100644 batched_index_all/90one_call.txt create mode 100644 batched_index_all/95duration.txt create mode 100644 batched_index_all/95fanout.txt create mode 100644 batched_index_all/95height.txt create mode 100644 batched_index_all/95one_call.txt create mode 100644 first_15_for_145.txt create mode 100644 rest_of_145.txt diff --git a/batched_index_all/100duration.txt b/batched_index_all/100duration.txt new file mode 100644 index 0000000..7ff49f9 --- /dev/null +++ b/batched_index_all/100duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.299s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 21418 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19020 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17575 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17424 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17589 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19376 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18464 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18166 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23003 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17739 ms + +Median: 18315 diff --git a/batched_index_all/100fanout.txt b/batched_index_all/100fanout.txt new file mode 100644 index 0000000..a15103f --- /dev/null +++ b/batched_index_all/100fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 25341 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24093 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24271 ms + +intersection size is 2 +Total results: 80 +Time Taken: 25487 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24307 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23639 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23085 ms + +intersection size is 2 +Total results: 80 +Time Taken: 25117 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23606 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23929 ms + +Median: 24182 diff --git a/batched_index_all/100height.txt b/batched_index_all/100height.txt new file mode 100644 index 0000000..5d86a2a --- /dev/null +++ b/batched_index_all/100height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.287s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 24298 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22109 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22622 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25452 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22320 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22146 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22910 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24921 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28097 ms + +intersection size is 0 +Total results: 0 +Time Taken: 52301 ms + +Median: 23604 diff --git a/batched_index_all/100one_call.txt b/batched_index_all/100one_call.txt new file mode 100644 index 0000000..0699f6d --- /dev/null +++ b/batched_index_all/100one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.480s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 210876 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176928 ms + +intersection size is 2 +Total results: 168 +Time Taken: 159122 ms + +intersection size is 2 +Total results: 168 +Time Taken: 167870 ms + +intersection size is 2 +Total results: 168 +Time Taken: 154188 ms + +intersection size is 2 +Total results: 168 +Time Taken: 154661 ms + +intersection size is 2 +Total results: 168 +Time Taken: 157285 ms + +intersection size is 2 +Total results: 168 +Time Taken: 144680 ms + +intersection size is 2 +Total results: 168 +Time Taken: 153249 ms + +intersection size is 2 +Total results: 168 +Time Taken: 153631 ms + +Median: 155973 diff --git a/batched_index_all/105duration.txt b/batched_index_all/105duration.txt new file mode 100644 index 0000000..c854449 --- /dev/null +++ b/batched_index_all/105duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.351s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 20659 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19901 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23841 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20701 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20477 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21470 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21889 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21241 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21474 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21232 ms + +Median: 21236.5 diff --git a/batched_index_all/105fanout.txt b/batched_index_all/105fanout.txt new file mode 100644 index 0000000..e46b4dd --- /dev/null +++ b/batched_index_all/105fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.552s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 31517 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30140 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29805 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29355 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28131 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28233 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28214 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31693 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27119 ms + +intersection size is 2 +Total results: 80 +Time Taken: 25195 ms + +Median: 28794 diff --git a/batched_index_all/105height.txt b/batched_index_all/105height.txt new file mode 100644 index 0000000..413de6f --- /dev/null +++ b/batched_index_all/105height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.262s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 27317 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24079 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22876 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23294 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22079 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21919 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21998 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22976 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25231 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25860 ms + +Median: 23135 diff --git a/batched_index_all/105one_call.txt b/batched_index_all/105one_call.txt new file mode 100644 index 0000000..d1b1e65 --- /dev/null +++ b/batched_index_all/105one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.328s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 177302 ms + +intersection size is 2 +Total results: 168 +Time Taken: 155646 ms + +intersection size is 2 +Total results: 168 +Time Taken: 158193 ms + +intersection size is 2 +Total results: 168 +Time Taken: 157599 ms + +intersection size is 2 +Total results: 168 +Time Taken: 156589 ms + +intersection size is 2 +Total results: 168 +Time Taken: 156064 ms + +intersection size is 2 +Total results: 168 +Time Taken: 162197 ms + +intersection size is 2 +Total results: 168 +Time Taken: 158785 ms + +intersection size is 2 +Total results: 168 +Time Taken: 163996 ms + +intersection size is 2 +Total results: 168 +Time Taken: 151635 ms + +Median: 157896 diff --git a/batched_index_all/10duration.txt b/batched_index_all/10duration.txt new file mode 100644 index 0000000..b6eeafc --- /dev/null +++ b/batched_index_all/10duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 7051 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4500 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4449 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4378 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4450 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4373 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4459 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4400 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4502 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4456 ms + +Median: 4453 diff --git a/batched_index_all/10fanout.txt b/batched_index_all/10fanout.txt new file mode 100644 index 0000000..0529d95 --- /dev/null +++ b/batched_index_all/10fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.277s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 8130 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6084 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6016 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6033 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6045 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6917 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5975 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6038 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5939 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5850 ms + +Median: 6035.5 diff --git a/batched_index_all/10height.txt b/batched_index_all/10height.txt new file mode 100644 index 0000000..c4f7e5d --- /dev/null +++ b/batched_index_all/10height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.293s, Critical Path: 0.03s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 5699 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3167 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3149 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3148 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3157 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3107 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3183 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3088 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3137 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3005 ms + +Median: 3148.5 diff --git a/batched_index_all/10one_call.txt b/batched_index_all/10one_call.txt new file mode 100644 index 0000000..d72ee92 --- /dev/null +++ b/batched_index_all/10one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.267s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 23379 ms + +intersection size is 2 +Total results: 168 +Time Taken: 20465 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19152 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19093 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19378 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19291 ms + +intersection size is 2 +Total results: 168 +Time Taken: 18952 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19137 ms + +intersection size is 2 +Total results: 168 +Time Taken: 18693 ms + +intersection size is 2 +Total results: 168 +Time Taken: 18695 ms + +Median: 19144.5 diff --git a/batched_index_all/110duration.txt b/batched_index_all/110duration.txt new file mode 100644 index 0000000..fce5c71 --- /dev/null +++ b/batched_index_all/110duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.537s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 24895 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21385 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19969 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19797 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19980 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19983 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20046 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19496 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19433 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21725 ms + +Median: 19981.5 diff --git a/batched_index_all/110fanout.txt b/batched_index_all/110fanout.txt new file mode 100644 index 0000000..fcbc512 --- /dev/null +++ b/batched_index_all/110fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.278s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30430 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27039 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24391 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23866 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23928 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24173 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24387 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24655 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26107 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26019 ms + +Median: 24523 diff --git a/batched_index_all/110height.txt b/batched_index_all/110height.txt new file mode 100644 index 0000000..d8183cc --- /dev/null +++ b/batched_index_all/110height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.263s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 39161 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24127 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24413 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23958 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23489 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27660 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29387 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30705 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31511 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29125 ms + +Median: 28392.5 diff --git a/batched_index_all/110one_call.txt b/batched_index_all/110one_call.txt new file mode 100644 index 0000000..c2c0b52 --- /dev/null +++ b/batched_index_all/110one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.526s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 219195 ms + +intersection size is 2 +Total results: 168 +Time Taken: 169235 ms + +intersection size is 2 +Total results: 168 +Time Taken: 153471 ms + +intersection size is 2 +Total results: 168 +Time Taken: 150783 ms + +intersection size is 2 +Total results: 168 +Time Taken: 163200 ms + +intersection size is 2 +Total results: 168 +Time Taken: 148217 ms + +intersection size is 2 +Total results: 168 +Time Taken: 156661 ms + +intersection size is 2 +Total results: 168 +Time Taken: 159072 ms + +intersection size is 2 +Total results: 168 +Time Taken: 155792 ms + +intersection size is 2 +Total results: 168 +Time Taken: 154561 ms + +Median: 156226 diff --git a/batched_index_all/115duration.txt b/batched_index_all/115duration.txt new file mode 100644 index 0000000..fd3885d --- /dev/null +++ b/batched_index_all/115duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.304s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25154 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22235 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22023 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22561 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22119 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22129 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23011 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23246 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23158 ms + +intersection size is 2 +Total results: 2 +Time Taken: 25091 ms + +Median: 22786 diff --git a/batched_index_all/115fanout.txt b/batched_index_all/115fanout.txt new file mode 100644 index 0000000..e622a15 --- /dev/null +++ b/batched_index_all/115fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.279s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30133 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27873 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27679 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27707 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28017 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28647 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29393 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28003 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27716 ms + +intersection size is 2 +Total results: 80 +Time Taken: 34679 ms + +Median: 28010 diff --git a/batched_index_all/115height.txt b/batched_index_all/115height.txt new file mode 100644 index 0000000..e20402d --- /dev/null +++ b/batched_index_all/115height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.269s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 28726 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27260 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27596 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30177 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31024 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31308 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32356 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33067 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32423 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32061 ms + +Median: 31166 diff --git a/batched_index_all/115one_call.txt b/batched_index_all/115one_call.txt new file mode 100644 index 0000000..e9c9a27 --- /dev/null +++ b/batched_index_all/115one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.501s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 219585 ms + +intersection size is 2 +Total results: 168 +Time Taken: 165892 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176110 ms + +intersection size is 2 +Total results: 168 +Time Taken: 167039 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166437 ms + +intersection size is 2 +Total results: 168 +Time Taken: 160199 ms + +intersection size is 2 +Total results: 168 +Time Taken: 157803 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161978 ms + +intersection size is 2 +Total results: 168 +Time Taken: 167654 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166204 ms + +Median: 166320 diff --git a/batched_index_all/120duration.txt b/batched_index_all/120duration.txt new file mode 100644 index 0000000..f79fa8a --- /dev/null +++ b/batched_index_all/120duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.338s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 26265 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22509 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21853 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22017 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23411 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21766 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21621 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21965 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21719 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21751 ms + +Median: 21909 diff --git a/batched_index_all/120fanout.txt b/batched_index_all/120fanout.txt new file mode 100644 index 0000000..22e93ed --- /dev/null +++ b/batched_index_all/120fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.269s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30480 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29050 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29541 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29210 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27166 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26679 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26587 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27444 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28787 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30342 ms + +Median: 28918.5 diff --git a/batched_index_all/120height.txt b/batched_index_all/120height.txt new file mode 100644 index 0000000..b5b9ca3 --- /dev/null +++ b/batched_index_all/120height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.289s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 29330 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25291 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24578 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24613 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26905 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26562 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26549 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26012 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26544 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27655 ms + +Median: 26546.5 diff --git a/batched_index_all/120one_call.txt b/batched_index_all/120one_call.txt new file mode 100644 index 0000000..10f7786 --- /dev/null +++ b/batched_index_all/120one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.481s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 220678 ms + +intersection size is 2 +Total results: 168 +Time Taken: 171321 ms + +intersection size is 2 +Total results: 168 +Time Taken: 162484 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166681 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166577 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161279 ms + +intersection size is 2 +Total results: 168 +Time Taken: 162879 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161170 ms + +intersection size is 2 +Total results: 168 +Time Taken: 155767 ms + +intersection size is 2 +Total results: 168 +Time Taken: 160592 ms + +Median: 162682 diff --git a/batched_index_all/125duration.txt b/batched_index_all/125duration.txt new file mode 100644 index 0000000..a06910d --- /dev/null +++ b/batched_index_all/125duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.351s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25684 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22610 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21905 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21715 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21930 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22319 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22012 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22338 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21967 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22051 ms + +Median: 22031.5 diff --git a/batched_index_all/125fanout.txt b/batched_index_all/125fanout.txt new file mode 100644 index 0000000..cd03684 --- /dev/null +++ b/batched_index_all/125fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.289s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 29940 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27209 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27333 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27909 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27266 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28254 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27632 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27584 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27090 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26983 ms + +Median: 27458.5 diff --git a/batched_index_all/125height.txt b/batched_index_all/125height.txt new file mode 100644 index 0000000..016d2f7 --- /dev/null +++ b/batched_index_all/125height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.292s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 27793 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27904 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27273 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27065 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28891 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29956 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29878 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28593 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29867 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32454 ms + +Median: 28742 diff --git a/batched_index_all/125one_call.txt b/batched_index_all/125one_call.txt new file mode 100644 index 0000000..fc95737 --- /dev/null +++ b/batched_index_all/125one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.498s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 234569 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176293 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183440 ms + +intersection size is 2 +Total results: 168 +Time Taken: 171338 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166717 ms + +intersection size is 2 +Total results: 168 +Time Taken: 163440 ms + +intersection size is 2 +Total results: 168 +Time Taken: 169897 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166708 ms + +intersection size is 2 +Total results: 168 +Time Taken: 165873 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161854 ms + +Median: 168307 diff --git a/batched_index_all/130duration.txt b/batched_index_all/130duration.txt new file mode 100644 index 0000000..4774ede --- /dev/null +++ b/batched_index_all/130duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.280s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25197 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23256 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22783 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22786 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22549 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22996 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22911 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24511 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24624 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22450 ms + +Median: 22953.5 diff --git a/batched_index_all/130fanout.txt b/batched_index_all/130fanout.txt new file mode 100644 index 0000000..f332a45 --- /dev/null +++ b/batched_index_all/130fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.282s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30800 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30159 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29531 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31214 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28700 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31335 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28709 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28091 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28499 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28533 ms + +Median: 29120 diff --git a/batched_index_all/130height.txt b/batched_index_all/130height.txt new file mode 100644 index 0000000..36ccf7e --- /dev/null +++ b/batched_index_all/130height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.277s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 30264 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28513 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28363 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32013 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30227 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29811 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30393 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31508 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33807 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33025 ms + +Median: 30328.5 diff --git a/batched_index_all/130one_call.txt b/batched_index_all/130one_call.txt new file mode 100644 index 0000000..40a6989 --- /dev/null +++ b/batched_index_all/130one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.527s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 243966 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183889 ms + +intersection size is 2 +Total results: 168 +Time Taken: 188747 ms + +intersection size is 2 +Total results: 168 +Time Taken: 181155 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183245 ms + +intersection size is 2 +Total results: 168 +Time Taken: 185689 ms + +intersection size is 2 +Total results: 168 +Time Taken: 179781 ms + +intersection size is 2 +Total results: 168 +Time Taken: 181487 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183766 ms + +intersection size is 2 +Total results: 168 +Time Taken: 182648 ms + +Median: 183506 diff --git a/batched_index_all/135duration.txt b/batched_index_all/135duration.txt new file mode 100644 index 0000000..5bd715f --- /dev/null +++ b/batched_index_all/135duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.292s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 26630 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24102 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23851 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23934 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23749 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23983 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24318 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24008 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23732 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23432 ms + +Median: 23958.5 diff --git a/batched_index_all/135fanout.txt b/batched_index_all/135fanout.txt new file mode 100644 index 0000000..f113b25 --- /dev/null +++ b/batched_index_all/135fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.280s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 32323 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29126 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28528 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28523 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27994 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27602 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27705 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28058 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28588 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27918 ms + +Median: 28290.5 diff --git a/batched_index_all/135height.txt b/batched_index_all/135height.txt new file mode 100644 index 0000000..6dae6ef --- /dev/null +++ b/batched_index_all/135height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.263s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 29495 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26966 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27978 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29684 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29762 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30083 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29773 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32208 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31799 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31879 ms + +Median: 29767.5 diff --git a/batched_index_all/135one_call.txt b/batched_index_all/135one_call.txt new file mode 100644 index 0000000..8284e88 --- /dev/null +++ b/batched_index_all/135one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.500s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 237973 ms + +intersection size is 2 +Total results: 168 +Time Taken: 180602 ms + +intersection size is 2 +Total results: 168 +Time Taken: 186450 ms + +intersection size is 2 +Total results: 168 +Time Taken: 177953 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183126 ms + +intersection size is 2 +Total results: 168 +Time Taken: 187205 ms + +intersection size is 2 +Total results: 168 +Time Taken: 173850 ms + +intersection size is 2 +Total results: 168 +Time Taken: 175846 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176919 ms + +intersection size is 2 +Total results: 168 +Time Taken: 177742 ms + +Median: 179278 diff --git a/batched_index_all/140duration.txt b/batched_index_all/140duration.txt new file mode 100644 index 0000000..d2c2577 --- /dev/null +++ b/batched_index_all/140duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.312s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25501 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23507 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22875 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22604 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23113 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24162 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24374 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24115 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24476 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23645 ms + +Median: 23880 diff --git a/batched_index_all/140fanout.txt b/batched_index_all/140fanout.txt new file mode 100644 index 0000000..d24c648 --- /dev/null +++ b/batched_index_all/140fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.262s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30636 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28528 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28551 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30009 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29083 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28327 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28066 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28336 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28600 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28633 ms + +Median: 28575.5 diff --git a/batched_index_all/140height.txt b/batched_index_all/140height.txt new file mode 100644 index 0000000..1d020e9 --- /dev/null +++ b/batched_index_all/140height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.282s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 30008 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28253 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28093 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30784 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29956 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30856 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30388 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32410 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33492 ms + +intersection size is 0 +Total results: 0 +Time Taken: 35177 ms + +Median: 30586 diff --git a/batched_index_all/140one_call.txt b/batched_index_all/140one_call.txt new file mode 100644 index 0000000..f3f8258 --- /dev/null +++ b/batched_index_all/140one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.496s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 253610 ms + +intersection size is 2 +Total results: 168 +Time Taken: 189442 ms + +intersection size is 2 +Total results: 168 +Time Taken: 187694 ms + +intersection size is 2 +Total results: 168 +Time Taken: 195249 ms + +intersection size is 2 +Total results: 168 +Time Taken: 173576 ms + +intersection size is 2 +Total results: 168 +Time Taken: 182261 ms + +intersection size is 2 +Total results: 168 +Time Taken: 181049 ms + +intersection size is 2 +Total results: 168 +Time Taken: 193056 ms + +intersection size is 2 +Total results: 168 +Time Taken: 192846 ms + +intersection size is 2 +Total results: 168 +Time Taken: 185870 ms + +Median: 188568 diff --git a/batched_index_all/144duration.txt b/batched_index_all/144duration.txt new file mode 100644 index 0000000..cf9a80b --- /dev/null +++ b/batched_index_all/144duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.310s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 23686 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21384 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21519 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21818 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21885 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21873 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22060 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23226 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22778 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22281 ms + +Median: 21972.5 diff --git a/batched_index_all/144fanout.txt b/batched_index_all/144fanout.txt new file mode 100644 index 0000000..468f26f --- /dev/null +++ b/batched_index_all/144fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.272s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 29862 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28073 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28510 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28063 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27433 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27203 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27217 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28096 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28272 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28747 ms + +Median: 28084.5 diff --git a/batched_index_all/144height.txt b/batched_index_all/144height.txt new file mode 100644 index 0000000..748d2c2 --- /dev/null +++ b/batched_index_all/144height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.276s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 41694 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31269 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28396 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27528 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27768 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29193 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28986 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26940 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26676 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29056 ms + +Median: 28691 diff --git a/batched_index_all/144one_call.txt b/batched_index_all/144one_call.txt new file mode 100644 index 0000000..c2904c6 --- /dev/null +++ b/batched_index_all/144one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 214968 ms + +intersection size is 2 +Total results: 168 +Time Taken: 187813 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176471 ms + +intersection size is 2 +Total results: 168 +Time Taken: 182934 ms + +intersection size is 2 +Total results: 168 +Time Taken: 178402 ms + +intersection size is 2 +Total results: 168 +Time Taken: 189727 ms + +intersection size is 2 +Total results: 168 +Time Taken: 186149 ms + +intersection size is 2 +Total results: 168 +Time Taken: 175977 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176125 ms + +intersection size is 2 +Total results: 168 +Time Taken: 169542 ms + +Median: 180668 diff --git a/batched_index_all/15duration.txt b/batched_index_all/15duration.txt new file mode 100644 index 0000000..acb841e --- /dev/null +++ b/batched_index_all/15duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 7617 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4912 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4831 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6889 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7454 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4914 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4847 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4819 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4814 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4833 ms + +Median: 4879.5 diff --git a/batched_index_all/15fanout.txt b/batched_index_all/15fanout.txt new file mode 100644 index 0000000..6694123 --- /dev/null +++ b/batched_index_all/15fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 9019 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7126 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7099 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6974 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7183 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7186 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7376 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7582 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7528 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7203 ms + +Median: 7194.5 diff --git a/batched_index_all/15height.txt b/batched_index_all/15height.txt new file mode 100644 index 0000000..e7f64e0 --- /dev/null +++ b/batched_index_all/15height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 7719 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4798 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4788 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4714 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4746 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4823 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4763 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4773 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4926 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4876 ms + +Median: 4793 diff --git a/batched_index_all/15one_call.txt b/batched_index_all/15one_call.txt new file mode 100644 index 0000000..9929bd5 --- /dev/null +++ b/batched_index_all/15one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.245s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 30008 ms + +intersection size is 2 +Total results: 168 +Time Taken: 26356 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25921 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25455 ms + +intersection size is 2 +Total results: 168 +Time Taken: 28076 ms + +intersection size is 2 +Total results: 168 +Time Taken: 29191 ms + +intersection size is 2 +Total results: 168 +Time Taken: 26091 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25848 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25963 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25911 ms + +Median: 26027 diff --git a/batched_index_all/20duration.txt b/batched_index_all/20duration.txt new file mode 100644 index 0000000..fd61f19 --- /dev/null +++ b/batched_index_all/20duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.421s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 10726 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7060 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6261 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5974 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5778 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5955 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5773 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5677 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5651 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5651 ms + +Median: 5866.5 diff --git a/batched_index_all/20fanout.txt b/batched_index_all/20fanout.txt new file mode 100644 index 0000000..ba89613 --- /dev/null +++ b/batched_index_all/20fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.280s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 10406 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8204 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8320 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8136 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8099 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8036 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8193 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8235 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8432 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8451 ms + +Median: 8219.5 diff --git a/batched_index_all/20height.txt b/batched_index_all/20height.txt new file mode 100644 index 0000000..e6b47cc --- /dev/null +++ b/batched_index_all/20height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.264s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 9646 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6029 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6013 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6055 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5942 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5971 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5973 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5924 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5934 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5882 ms + +Median: 5972 diff --git a/batched_index_all/20one_call.txt b/batched_index_all/20one_call.txt new file mode 100644 index 0000000..902d98a --- /dev/null +++ b/batched_index_all/20one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.241s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 36293 ms + +intersection size is 2 +Total results: 168 +Time Taken: 33302 ms + +intersection size is 2 +Total results: 168 +Time Taken: 35811 ms + +intersection size is 2 +Total results: 168 +Time Taken: 32618 ms + +intersection size is 2 +Total results: 168 +Time Taken: 32864 ms + +intersection size is 2 +Total results: 168 +Time Taken: 32753 ms + +intersection size is 2 +Total results: 168 +Time Taken: 33439 ms + +intersection size is 2 +Total results: 168 +Time Taken: 35488 ms + +intersection size is 2 +Total results: 168 +Time Taken: 34801 ms + +intersection size is 2 +Total results: 168 +Time Taken: 33717 ms + +Median: 33578 diff --git a/batched_index_all/25duration.txt b/batched_index_all/25duration.txt new file mode 100644 index 0000000..c3b8c7e --- /dev/null +++ b/batched_index_all/25duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 8504 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7120 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6001 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5889 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5931 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5935 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5916 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5943 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5924 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5877 ms + +Median: 5933 diff --git a/batched_index_all/25fanout.txt b/batched_index_all/25fanout.txt new file mode 100644 index 0000000..ded18df --- /dev/null +++ b/batched_index_all/25fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 11148 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8431 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8380 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8378 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8384 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8375 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8396 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8391 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8370 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8493 ms + +Median: 8387.5 diff --git a/batched_index_all/25height.txt b/batched_index_all/25height.txt new file mode 100644 index 0000000..eac2448 --- /dev/null +++ b/batched_index_all/25height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.283s, Critical Path: 0.04s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 11289 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6977 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6923 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6909 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6910 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6971 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6849 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6862 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6952 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6891 ms + +Median: 6916.5 diff --git a/batched_index_all/25one_call.txt b/batched_index_all/25one_call.txt new file mode 100644 index 0000000..2bcabcb --- /dev/null +++ b/batched_index_all/25one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 39645 ms + +intersection size is 2 +Total results: 168 +Time Taken: 36367 ms + +intersection size is 2 +Total results: 168 +Time Taken: 36498 ms + +intersection size is 2 +Total results: 168 +Time Taken: 36879 ms + +intersection size is 2 +Total results: 168 +Time Taken: 37473 ms + +intersection size is 2 +Total results: 168 +Time Taken: 39944 ms + +intersection size is 2 +Total results: 168 +Time Taken: 40435 ms + +intersection size is 2 +Total results: 168 +Time Taken: 43906 ms + +intersection size is 2 +Total results: 168 +Time Taken: 39224 ms + +intersection size is 2 +Total results: 168 +Time Taken: 37496 ms + +Median: 38360 diff --git a/batched_index_all/30duration.txt b/batched_index_all/30duration.txt new file mode 100644 index 0000000..4b53746 --- /dev/null +++ b/batched_index_all/30duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 9729 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6783 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6722 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6632 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6710 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6626 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6634 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7546 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7035 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6457 ms + +Median: 6716 diff --git a/batched_index_all/30fanout.txt b/batched_index_all/30fanout.txt new file mode 100644 index 0000000..5c466f4 --- /dev/null +++ b/batched_index_all/30fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.271s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 11924 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9719 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10271 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10203 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9725 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9209 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9244 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9348 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9929 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10583 ms + +Median: 9827 diff --git a/batched_index_all/30height.txt b/batched_index_all/30height.txt new file mode 100644 index 0000000..bc94b87 --- /dev/null +++ b/batched_index_all/30height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.243s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 12469 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9410 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8804 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8193 ms + +intersection size is 0 +Total results: 0 +Time Taken: 7956 ms + +intersection size is 0 +Total results: 0 +Time Taken: 7899 ms + +intersection size is 0 +Total results: 0 +Time Taken: 7948 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8095 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8480 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8228 ms + +Median: 8210.5 diff --git a/batched_index_all/30one_call.txt b/batched_index_all/30one_call.txt new file mode 100644 index 0000000..9292677 --- /dev/null +++ b/batched_index_all/30one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.250s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 47596 ms + +intersection size is 2 +Total results: 168 +Time Taken: 43075 ms + +intersection size is 2 +Total results: 168 +Time Taken: 45642 ms + +intersection size is 2 +Total results: 168 +Time Taken: 54546 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56740 ms + +intersection size is 2 +Total results: 168 +Time Taken: 55558 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56284 ms + +intersection size is 2 +Total results: 168 +Time Taken: 52521 ms + +intersection size is 2 +Total results: 168 +Time Taken: 53381 ms + +intersection size is 2 +Total results: 168 +Time Taken: 53936 ms + +Median: 53658.5 diff --git a/batched_index_all/35duration.txt b/batched_index_all/35duration.txt new file mode 100644 index 0000000..9c30dbd --- /dev/null +++ b/batched_index_all/35duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.489s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14123 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10381 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9405 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8862 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7791 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7749 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7808 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7842 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7958 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7819 ms + +Median: 7900 diff --git a/batched_index_all/35fanout.txt b/batched_index_all/35fanout.txt new file mode 100644 index 0000000..7e4a464 --- /dev/null +++ b/batched_index_all/35fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.247s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 14009 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11639 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11847 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12281 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11018 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10633 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10708 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10579 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10491 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10494 ms + +Median: 10863 diff --git a/batched_index_all/35height.txt b/batched_index_all/35height.txt new file mode 100644 index 0000000..8058904 --- /dev/null +++ b/batched_index_all/35height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.250s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 11879 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8983 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8904 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9463 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9383 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9021 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10197 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10751 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9756 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9309 ms + +Median: 9423 diff --git a/batched_index_all/35one_call.txt b/batched_index_all/35one_call.txt new file mode 100644 index 0000000..8d073d2 --- /dev/null +++ b/batched_index_all/35one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.252s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 58343 ms + +intersection size is 2 +Total results: 168 +Time Taken: 51368 ms + +intersection size is 2 +Total results: 168 +Time Taken: 51560 ms + +intersection size is 2 +Total results: 168 +Time Taken: 54790 ms + +intersection size is 2 +Total results: 168 +Time Taken: 50600 ms + +intersection size is 2 +Total results: 168 +Time Taken: 50257 ms + +intersection size is 2 +Total results: 168 +Time Taken: 61305 ms + +intersection size is 2 +Total results: 168 +Time Taken: 65530 ms + +intersection size is 2 +Total results: 168 +Time Taken: 62963 ms + +intersection size is 2 +Total results: 168 +Time Taken: 60687 ms + +Median: 56566.5 diff --git a/batched_index_all/40duration.txt b/batched_index_all/40duration.txt new file mode 100644 index 0000000..9b33dac --- /dev/null +++ b/batched_index_all/40duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.534s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14991 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11709 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11469 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11836 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11182 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11316 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11074 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9628 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8508 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8512 ms + +Median: 11249 diff --git a/batched_index_all/40fanout.txt b/batched_index_all/40fanout.txt new file mode 100644 index 0000000..4d3f7f8 --- /dev/null +++ b/batched_index_all/40fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 15357 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12483 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11879 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11413 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11272 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11201 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11169 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11255 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11199 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11307 ms + +Median: 11289.5 diff --git a/batched_index_all/40height.txt b/batched_index_all/40height.txt new file mode 100644 index 0000000..60292a7 --- /dev/null +++ b/batched_index_all/40height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 13277 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10686 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10932 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10356 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10830 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10389 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10216 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10195 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10415 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10408 ms + +Median: 10411.5 diff --git a/batched_index_all/40one_call.txt b/batched_index_all/40one_call.txt new file mode 100644 index 0000000..acfa559 --- /dev/null +++ b/batched_index_all/40one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.244s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 62956 ms + +intersection size is 2 +Total results: 168 +Time Taken: 57595 ms + +intersection size is 2 +Total results: 168 +Time Taken: 62333 ms + +intersection size is 2 +Total results: 168 +Time Taken: 58347 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56608 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56503 ms + +intersection size is 2 +Total results: 168 +Time Taken: 57609 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56212 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56678 ms + +intersection size is 2 +Total results: 168 +Time Taken: 57676 ms + +Median: 57602 diff --git a/batched_index_all/45duration.txt b/batched_index_all/45duration.txt new file mode 100644 index 0000000..e45f95b --- /dev/null +++ b/batched_index_all/45duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.382s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 12253 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10433 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14209 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10164 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9960 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10471 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10090 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10115 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9290 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8966 ms + +Median: 10139.5 diff --git a/batched_index_all/45fanout.txt b/batched_index_all/45fanout.txt new file mode 100644 index 0000000..0e70e75 --- /dev/null +++ b/batched_index_all/45fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 14377 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12180 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12087 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12052 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12056 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12039 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12136 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12408 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12610 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12574 ms + +Median: 12158 diff --git a/batched_index_all/45height.txt b/batched_index_all/45height.txt new file mode 100644 index 0000000..7bf400a --- /dev/null +++ b/batched_index_all/45height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 13442 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10599 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10613 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10512 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10636 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10689 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10806 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10745 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10584 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10860 ms + +Median: 10662.5 diff --git a/batched_index_all/45one_call.txt b/batched_index_all/45one_call.txt new file mode 100644 index 0000000..f61b8e0 --- /dev/null +++ b/batched_index_all/45one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.257s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 70536 ms + +intersection size is 2 +Total results: 168 +Time Taken: 67223 ms + +intersection size is 2 +Total results: 168 +Time Taken: 65648 ms + +intersection size is 2 +Total results: 168 +Time Taken: 85250 ms + +intersection size is 2 +Total results: 168 +Time Taken: 86856 ms + +intersection size is 2 +Total results: 168 +Time Taken: 78321 ms + +intersection size is 2 +Total results: 168 +Time Taken: 79381 ms + +intersection size is 2 +Total results: 168 +Time Taken: 78452 ms + +intersection size is 2 +Total results: 168 +Time Taken: 66142 ms + +intersection size is 2 +Total results: 168 +Time Taken: 67096 ms + +Median: 74428.5 diff --git a/batched_index_all/50duration.txt b/batched_index_all/50duration.txt new file mode 100644 index 0000000..d44dbab --- /dev/null +++ b/batched_index_all/50duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 13166 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11076 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10357 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10230 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10141 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10349 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10810 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10068 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9947 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10002 ms + +Median: 10289.5 diff --git a/batched_index_all/50fanout.txt b/batched_index_all/50fanout.txt new file mode 100644 index 0000000..03c750d --- /dev/null +++ b/batched_index_all/50fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 15654 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13723 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13695 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13826 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14142 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13735 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14379 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13464 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13835 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13767 ms + +Median: 13796.5 diff --git a/batched_index_all/50height.txt b/batched_index_all/50height.txt new file mode 100644 index 0000000..ee0f120 --- /dev/null +++ b/batched_index_all/50height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 15102 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13021 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12886 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12855 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12819 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12918 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12973 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13436 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14118 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14828 ms + +Median: 12997 diff --git a/batched_index_all/50one_call.txt b/batched_index_all/50one_call.txt new file mode 100644 index 0000000..b739577 --- /dev/null +++ b/batched_index_all/50one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 82102 ms + +intersection size is 2 +Total results: 168 +Time Taken: 76247 ms + +intersection size is 2 +Total results: 168 +Time Taken: 94532 ms + +intersection size is 2 +Total results: 168 +Time Taken: 100545 ms + +intersection size is 2 +Total results: 168 +Time Taken: 94495 ms + +intersection size is 2 +Total results: 168 +Time Taken: 89776 ms + +intersection size is 2 +Total results: 168 +Time Taken: 89880 ms + +intersection size is 2 +Total results: 168 +Time Taken: 88573 ms + +intersection size is 2 +Total results: 168 +Time Taken: 75859 ms + +intersection size is 2 +Total results: 168 +Time Taken: 73775 ms + +Median: 89174.5 diff --git a/batched_index_all/55duration.txt b/batched_index_all/55duration.txt new file mode 100644 index 0000000..e1ca256 --- /dev/null +++ b/batched_index_all/55duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.282s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14456 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12490 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11539 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11733 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11258 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11520 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11101 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10814 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10882 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11035 ms + +Median: 11389 diff --git a/batched_index_all/55fanout.txt b/batched_index_all/55fanout.txt new file mode 100644 index 0000000..d4c86b3 --- /dev/null +++ b/batched_index_all/55fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 17035 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14487 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14399 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14671 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14677 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14558 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14560 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14761 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15335 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15287 ms + +Median: 14674 diff --git a/batched_index_all/55height.txt b/batched_index_all/55height.txt new file mode 100644 index 0000000..cab0a47 --- /dev/null +++ b/batched_index_all/55height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.250s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 16946 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15339 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13915 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13891 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13939 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13745 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14027 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13861 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13804 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13952 ms + +Median: 13927 diff --git a/batched_index_all/55one_call.txt b/batched_index_all/55one_call.txt new file mode 100644 index 0000000..dff8b6e --- /dev/null +++ b/batched_index_all/55one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.268s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 91520 ms + +intersection size is 2 +Total results: 168 +Time Taken: 84795 ms + +intersection size is 2 +Total results: 168 +Time Taken: 106893 ms + +intersection size is 2 +Total results: 168 +Time Taken: 107589 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101303 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101202 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101618 ms + +intersection size is 2 +Total results: 168 +Time Taken: 82419 ms + +intersection size is 2 +Total results: 168 +Time Taken: 83440 ms + +intersection size is 2 +Total results: 168 +Time Taken: 81343 ms + +Median: 96361 diff --git a/batched_index_all/5duration.txt b/batched_index_all/5duration.txt new file mode 100644 index 0000000..a17f279 --- /dev/null +++ b/batched_index_all/5duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.587s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 5900 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3532 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3728 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3367 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3358 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3352 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3267 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3485 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3397 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3285 ms + +Median: 3382 diff --git a/batched_index_all/5fanout.txt b/batched_index_all/5fanout.txt new file mode 100644 index 0000000..2d368ae --- /dev/null +++ b/batched_index_all/5fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.342s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 6814 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4985 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5008 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4849 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4839 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4890 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4949 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4867 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4881 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4882 ms + +Median: 4886 diff --git a/batched_index_all/5height.txt b/batched_index_all/5height.txt new file mode 100644 index 0000000..6017d4c --- /dev/null +++ b/batched_index_all/5height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 4157 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2140 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2074 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2039 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2125 ms + +intersection size is 0 +Total results: 0 +Time Taken: 1953 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2038 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2018 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2593 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2212 ms + +Median: 2099.5 diff --git a/batched_index_all/5one_call.txt b/batched_index_all/5one_call.txt new file mode 100644 index 0000000..cd64380 --- /dev/null +++ b/batched_index_all/5one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.265s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 14193 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10867 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10936 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10852 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10923 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10842 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10811 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10833 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10947 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10861 ms + +Median: 10864 diff --git a/batched_index_all/60duration.txt b/batched_index_all/60duration.txt new file mode 100644 index 0000000..d5ab57f --- /dev/null +++ b/batched_index_all/60duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14444 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12266 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11899 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11541 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11654 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11555 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11538 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11535 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14085 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11609 ms + +Median: 11631.5 diff --git a/batched_index_all/60fanout.txt b/batched_index_all/60fanout.txt new file mode 100644 index 0000000..13f3b3f --- /dev/null +++ b/batched_index_all/60fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 17580 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15693 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16081 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17088 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16585 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15799 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16229 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15684 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15910 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16650 ms + +Median: 16155 diff --git a/batched_index_all/60height.txt b/batched_index_all/60height.txt new file mode 100644 index 0000000..3ee9e35 --- /dev/null +++ b/batched_index_all/60height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 17165 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14997 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14383 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13819 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14456 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14030 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14089 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14371 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14599 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14514 ms + +Median: 14419.5 diff --git a/batched_index_all/60one_call.txt b/batched_index_all/60one_call.txt new file mode 100644 index 0000000..fde921f --- /dev/null +++ b/batched_index_all/60one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 98548 ms + +intersection size is 2 +Total results: 168 +Time Taken: 114257 ms + +intersection size is 2 +Total results: 168 +Time Taken: 120798 ms + +intersection size is 2 +Total results: 168 +Time Taken: 108047 ms + +intersection size is 2 +Total results: 168 +Time Taken: 113948 ms + +intersection size is 2 +Total results: 168 +Time Taken: 100815 ms + +intersection size is 2 +Total results: 168 +Time Taken: 99681 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101134 ms + +intersection size is 2 +Total results: 168 +Time Taken: 98569 ms + +intersection size is 2 +Total results: 168 +Time Taken: 90868 ms + +Median: 100974 diff --git a/batched_index_all/65duration.txt b/batched_index_all/65duration.txt new file mode 100644 index 0000000..4507fbe --- /dev/null +++ b/batched_index_all/65duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 15398 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12510 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12387 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12266 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12129 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12028 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12119 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11999 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12022 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14159 ms + +Median: 12197.5 diff --git a/batched_index_all/65fanout.txt b/batched_index_all/65fanout.txt new file mode 100644 index 0000000..5b883cf --- /dev/null +++ b/batched_index_all/65fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.534s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 23485 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16207 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16416 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16223 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16514 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16971 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17485 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18026 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17127 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16887 ms + +Median: 16929 diff --git a/batched_index_all/65height.txt b/batched_index_all/65height.txt new file mode 100644 index 0000000..405b8dd --- /dev/null +++ b/batched_index_all/65height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.249s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 17476 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15618 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15535 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15553 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15885 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15562 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15396 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15485 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15444 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15497 ms + +Median: 15544 diff --git a/batched_index_all/65one_call.txt b/batched_index_all/65one_call.txt new file mode 100644 index 0000000..ef706c4 --- /dev/null +++ b/batched_index_all/65one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.229s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 102534 ms + +intersection size is 2 +Total results: 168 +Time Taken: 120943 ms + +intersection size is 2 +Total results: 168 +Time Taken: 120843 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117356 ms + +intersection size is 2 +Total results: 168 +Time Taken: 119698 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101361 ms + +intersection size is 2 +Total results: 168 +Time Taken: 98472 ms + +intersection size is 2 +Total results: 168 +Time Taken: 98822 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101752 ms + +intersection size is 2 +Total results: 168 +Time Taken: 96912 ms + +Median: 102143 diff --git a/batched_index_all/70duration.txt b/batched_index_all/70duration.txt new file mode 100644 index 0000000..13fc59e --- /dev/null +++ b/batched_index_all/70duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.239s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 15719 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13252 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12671 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12744 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13283 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13465 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13483 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13307 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12626 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12893 ms + +Median: 13267.5 diff --git a/batched_index_all/70fanout.txt b/batched_index_all/70fanout.txt new file mode 100644 index 0000000..487e546 --- /dev/null +++ b/batched_index_all/70fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.241s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 20200 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19037 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18661 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18827 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18135 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18068 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17954 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18030 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17735 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17533 ms + +Median: 18101.5 diff --git a/batched_index_all/70height.txt b/batched_index_all/70height.txt new file mode 100644 index 0000000..cb638ba --- /dev/null +++ b/batched_index_all/70height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 18192 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16379 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16171 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16172 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16079 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16044 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16011 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16181 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15987 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16119 ms + +Median: 16145 diff --git a/batched_index_all/70one_call.txt b/batched_index_all/70one_call.txt new file mode 100644 index 0000000..6690db9 --- /dev/null +++ b/batched_index_all/70one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.248s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 112511 ms + +intersection size is 2 +Total results: 168 +Time Taken: 135370 ms + +intersection size is 2 +Total results: 168 +Time Taken: 128678 ms + +intersection size is 2 +Total results: 168 +Time Taken: 126444 ms + +intersection size is 2 +Total results: 168 +Time Taken: 112489 ms + +intersection size is 2 +Total results: 168 +Time Taken: 108494 ms + +intersection size is 2 +Total results: 168 +Time Taken: 103918 ms + +intersection size is 2 +Total results: 168 +Time Taken: 106994 ms + +intersection size is 2 +Total results: 168 +Time Taken: 105540 ms + +intersection size is 2 +Total results: 168 +Time Taken: 106712 ms + +Median: 110492 diff --git a/batched_index_all/75duration.txt b/batched_index_all/75duration.txt new file mode 100644 index 0000000..75f98c2 --- /dev/null +++ b/batched_index_all/75duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.239s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 16919 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14730 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14343 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14207 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14245 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14118 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14142 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14198 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14305 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14437 ms + +Median: 14275 diff --git a/batched_index_all/75fanout.txt b/batched_index_all/75fanout.txt new file mode 100644 index 0000000..4bbb2ab --- /dev/null +++ b/batched_index_all/75fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.263s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 20822 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19132 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19123 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18841 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18670 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18865 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19961 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18814 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18820 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31941 ms + +Median: 18994 diff --git a/batched_index_all/75height.txt b/batched_index_all/75height.txt new file mode 100644 index 0000000..33ed423 --- /dev/null +++ b/batched_index_all/75height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.229s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 20254 ms + +intersection size is 0 +Total results: 0 +Time Taken: 18176 ms + +intersection size is 0 +Total results: 0 +Time Taken: 18549 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17888 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17282 ms + +intersection size is 0 +Total results: 0 +Time Taken: 18419 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17865 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17874 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17823 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17857 ms + +Median: 17881 diff --git a/batched_index_all/75one_call.txt b/batched_index_all/75one_call.txt new file mode 100644 index 0000000..f429f55 --- /dev/null +++ b/batched_index_all/75one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.228s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 158346 ms + +intersection size is 2 +Total results: 168 +Time Taken: 136896 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138071 ms + +intersection size is 2 +Total results: 168 +Time Taken: 119707 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117450 ms + +intersection size is 2 +Total results: 168 +Time Taken: 113766 ms + +intersection size is 2 +Total results: 168 +Time Taken: 114555 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117581 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117740 ms + +intersection size is 2 +Total results: 168 +Time Taken: 123700 ms + +Median: 118724 diff --git a/batched_index_all/80duration.txt b/batched_index_all/80duration.txt new file mode 100644 index 0000000..edc9e1b --- /dev/null +++ b/batched_index_all/80duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.440s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 17943 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15793 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15283 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15093 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15190 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15638 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15432 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15637 ms + +intersection size is 2 +Total results: 2 +Time Taken: 16018 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15558 ms + +Median: 15597.5 diff --git a/batched_index_all/80fanout.txt b/batched_index_all/80fanout.txt new file mode 100644 index 0000000..7f2baa8 --- /dev/null +++ b/batched_index_all/80fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.261s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 22390 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21032 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21542 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21784 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21975 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21320 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20786 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20854 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20796 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20493 ms + +Median: 21176 diff --git a/batched_index_all/80height.txt b/batched_index_all/80height.txt new file mode 100644 index 0000000..3e86b25 --- /dev/null +++ b/batched_index_all/80height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.279s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 23317 ms + +intersection size is 0 +Total results: 0 +Time Taken: 19617 ms + +intersection size is 0 +Total results: 0 +Time Taken: 19452 ms + +intersection size is 0 +Total results: 0 +Time Taken: 19864 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20426 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20865 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20925 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20777 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20580 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20334 ms + +Median: 20503 diff --git a/batched_index_all/80one_call.txt b/batched_index_all/80one_call.txt new file mode 100644 index 0000000..4157086 --- /dev/null +++ b/batched_index_all/80one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.269s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 173359 ms + +intersection size is 2 +Total results: 168 +Time Taken: 152295 ms + +intersection size is 2 +Total results: 168 +Time Taken: 144892 ms + +intersection size is 2 +Total results: 168 +Time Taken: 128084 ms + +intersection size is 2 +Total results: 168 +Time Taken: 125707 ms + +intersection size is 2 +Total results: 168 +Time Taken: 129557 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142589 ms + +intersection size is 2 +Total results: 168 +Time Taken: 124394 ms + +intersection size is 2 +Total results: 168 +Time Taken: 126435 ms + +intersection size is 2 +Total results: 168 +Time Taken: 128261 ms + +Median: 128909 diff --git a/batched_index_all/85duration.txt b/batched_index_all/85duration.txt new file mode 100644 index 0000000..85f625e --- /dev/null +++ b/batched_index_all/85duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.795s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 23807 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24058 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17620 ms + +intersection size is 2 +Total results: 2 +Time Taken: 16973 ms + +intersection size is 2 +Total results: 2 +Time Taken: 16720 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17271 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18963 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19434 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18628 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17310 ms + +Median: 18124 diff --git a/batched_index_all/85fanout.txt b/batched_index_all/85fanout.txt new file mode 100644 index 0000000..295828e --- /dev/null +++ b/batched_index_all/85fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.309s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 23866 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22648 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21940 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26362 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23713 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30914 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22034 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21408 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21388 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21717 ms + +Median: 22341 diff --git a/batched_index_all/85height.txt b/batched_index_all/85height.txt new file mode 100644 index 0000000..e048e62 --- /dev/null +++ b/batched_index_all/85height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.283s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 26020 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24152 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21193 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23375 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20679 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20192 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20155 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20642 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22899 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22380 ms + +Median: 21786.5 diff --git a/batched_index_all/85one_call.txt b/batched_index_all/85one_call.txt new file mode 100644 index 0000000..d3279d1 --- /dev/null +++ b/batched_index_all/85one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.475s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 176880 ms + +intersection size is 2 +Total results: 168 +Time Taken: 165084 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138975 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138279 ms + +intersection size is 2 +Total results: 168 +Time Taken: 130565 ms + +intersection size is 2 +Total results: 168 +Time Taken: 134109 ms + +intersection size is 2 +Total results: 168 +Time Taken: 131344 ms + +intersection size is 2 +Total results: 168 +Time Taken: 125831 ms + +intersection size is 2 +Total results: 168 +Time Taken: 134555 ms + +intersection size is 2 +Total results: 168 +Time Taken: 124811 ms + +Median: 134332 diff --git a/batched_index_all/90duration.txt b/batched_index_all/90duration.txt new file mode 100644 index 0000000..1538bdb --- /dev/null +++ b/batched_index_all/90duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.329s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 21012 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19905 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19404 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19397 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19167 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19136 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18620 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18824 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18107 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19770 ms + +Median: 19282 diff --git a/batched_index_all/90fanout.txt b/batched_index_all/90fanout.txt new file mode 100644 index 0000000..762122f --- /dev/null +++ b/batched_index_all/90fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 25271 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22906 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23992 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22166 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23069 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24830 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22745 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22465 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22307 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22498 ms + +Median: 22825.5 diff --git a/batched_index_all/90height.txt b/batched_index_all/90height.txt new file mode 100644 index 0000000..6e72ea8 --- /dev/null +++ b/batched_index_all/90height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 22788 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21021 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22216 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20801 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21366 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21829 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21839 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22075 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25832 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25030 ms + +Median: 21957 diff --git a/batched_index_all/90one_call.txt b/batched_index_all/90one_call.txt new file mode 100644 index 0000000..8f9eb08 --- /dev/null +++ b/batched_index_all/90one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.501s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 200069 ms + +intersection size is 2 +Total results: 168 +Time Taken: 170698 ms + +intersection size is 2 +Total results: 168 +Time Taken: 147657 ms + +intersection size is 2 +Total results: 168 +Time Taken: 143958 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142274 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142176 ms + +intersection size is 2 +Total results: 168 +Time Taken: 137629 ms + +intersection size is 2 +Total results: 168 +Time Taken: 135500 ms + +intersection size is 2 +Total results: 168 +Time Taken: 131745 ms + +intersection size is 2 +Total results: 168 +Time Taken: 133637 ms + +Median: 142225 diff --git a/batched_index_all/95duration.txt b/batched_index_all/95duration.txt new file mode 100644 index 0000000..9099a41 --- /dev/null +++ b/batched_index_all/95duration.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 21452 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18824 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18271 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18805 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19814 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19434 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20141 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18184 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17770 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17595 ms + +Median: 18814.5 diff --git a/batched_index_all/95fanout.txt b/batched_index_all/95fanout.txt new file mode 100644 index 0000000..8a4eb83 --- /dev/null +++ b/batched_index_all/95fanout.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 25847 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23808 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23489 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23591 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23011 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23066 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22823 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22910 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22844 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22700 ms + +Median: 23038.5 diff --git a/batched_index_all/95height.txt b/batched_index_all/95height.txt new file mode 100644 index 0000000..c6b1f18 --- /dev/null +++ b/batched_index_all/95height.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.276s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 25668 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21954 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21162 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20845 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21340 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20892 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21775 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22048 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23536 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23404 ms + +Median: 21864.5 diff --git a/batched_index_all/95one_call.txt b/batched_index_all/95one_call.txt new file mode 100644 index 0000000..fb5f750 --- /dev/null +++ b/batched_index_all/95one_call.txt @@ -0,0 +1,55 @@ +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.443s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 193961 ms + +intersection size is 2 +Total results: 168 +Time Taken: 177353 ms + +intersection size is 2 +Total results: 168 +Time Taken: 148212 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138990 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142258 ms + +intersection size is 2 +Total results: 168 +Time Taken: 146363 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138900 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142090 ms + +intersection size is 2 +Total results: 168 +Time Taken: 137213 ms + +intersection size is 2 +Total results: 168 +Time Taken: 140335 ms + +Median: 142174 diff --git a/first_15_for_145.txt b/first_15_for_145.txt new file mode 100644 index 0000000..099aaa3 --- /dev/null +++ b/first_15_for_145.txt @@ -0,0 +1,777 @@ +MSCallGraph_1.csv +total traces: 133579 +exempted traces (cyclic): 8971 +exempted traces (frag): 19326 +done creating buckets +total new hashes: 0 +Total bytes: 424762836 +MSCallGraph_2.csv +total traces: 134766 +exempted traces (cyclic): 9059 +exempted traces (frag): 18875 +done creating buckets +total new hashes: 15288 +Total bytes: 447660120 +MSCallGraph_3.csv +total traces: 133834 +exempted traces (cyclic): 8512 +exempted traces (frag): 19388 +done creating buckets +total new hashes: 14168 +Total bytes: 414797975 +MSCallGraph_4.csv +total traces: 133317 +exempted traces (cyclic): 8734 +exempted traces (frag): 18912 +done creating buckets +total new hashes: 13564 +Total bytes: 416716275 +MSCallGraph_5.csv +total traces: 134333 +exempted traces (cyclic): 9364 +exempted traces (frag): 18235 +done creating buckets +total new hashes: 13891 +Total bytes: 446437444 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.587s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 5900 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3532 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3728 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3367 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3358 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3352 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3267 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3485 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3397 ms + +intersection size is 2 +Total results: 2 +Time Taken: 3285 ms + +Median: 3382 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.342s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 6814 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4985 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5008 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4849 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4839 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4890 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4949 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4867 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4881 ms + +intersection size is 2 +Total results: 80 +Time Taken: 4882 ms + +Median: 4886 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 4157 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2140 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2074 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2039 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2125 ms + +intersection size is 0 +Total results: 0 +Time Taken: 1953 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2038 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2018 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2593 ms + +intersection size is 0 +Total results: 0 +Time Taken: 2212 ms + +Median: 2099.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.265s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 14193 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10867 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10936 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10852 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10923 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10842 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10811 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10833 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10947 ms + +intersection size is 2 +Total results: 168 +Time Taken: 10861 ms + +Median: 10864 +MSCallGraph_6.csv +total traces: 134565 +exempted traces (cyclic): 9473 +exempted traces (frag): 18164 +done creating buckets +total new hashes: 13291 +Total bytes: 424904118 +MSCallGraph_7.csv +total traces: 135438 +exempted traces (cyclic): 9692 +exempted traces (frag): 18464 +done creating buckets +total new hashes: 12728 +Total bytes: 419452187 +MSCallGraph_8.csv +total traces: 136148 +exempted traces (cyclic): 9834 +exempted traces (frag): 17461 +done creating buckets +total new hashes: 13200 +Total bytes: 455673270 +MSCallGraph_9.csv +total traces: 138224 +exempted traces (cyclic): 10267 +exempted traces (frag): 17421 +done creating buckets +total new hashes: 13133 +Total bytes: 445689572 +MSCallGraph_10.csv +total traces: 141093 +exempted traces (cyclic): 10672 +exempted traces (frag): 17369 +done creating buckets +total new hashes: 13015 +Total bytes: 442851612 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 7051 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4500 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4449 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4378 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4450 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4373 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4459 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4400 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4502 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4456 ms + +Median: 4453 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.277s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 8130 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6084 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6016 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6033 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6045 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6917 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5975 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6038 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5939 ms + +intersection size is 2 +Total results: 80 +Time Taken: 5850 ms + +Median: 6035.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.293s, Critical Path: 0.03s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 5699 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3167 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3149 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3148 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3157 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3107 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3183 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3088 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3137 ms + +intersection size is 0 +Total results: 0 +Time Taken: 3005 ms + +Median: 3148.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.267s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 23379 ms + +intersection size is 2 +Total results: 168 +Time Taken: 20465 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19152 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19093 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19378 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19291 ms + +intersection size is 2 +Total results: 168 +Time Taken: 18952 ms + +intersection size is 2 +Total results: 168 +Time Taken: 19137 ms + +intersection size is 2 +Total results: 168 +Time Taken: 18693 ms + +intersection size is 2 +Total results: 168 +Time Taken: 18695 ms + +Median: 19144.5 +MSCallGraph_11.csv +total traces: 142598 +exempted traces (cyclic): 10625 +exempted traces (frag): 18209 +done creating buckets +total new hashes: 13217 +Total bytes: 453197409 +MSCallGraph_12.csv +total traces: 141639 +exempted traces (cyclic): 9280 +exempted traces (frag): 20073 +done creating buckets +total new hashes: 11872 +Total bytes: 392567411 +MSCallGraph_13.csv +total traces: 138796 +exempted traces (cyclic): 9678 +exempted traces (frag): 18309 +done creating buckets +total new hashes: 11545 +Total bytes: 399391007 +MSCallGraph_14.csv +total traces: 140248 +exempted traces (cyclic): 9762 +exempted traces (frag): 17789 +done creating buckets +total new hashes: 11815 +Total bytes: 423361482 +MSCallGraph_15.csv +total traces: 139203 +exempted traces (cyclic): 9175 +exempted traces (frag): 18092 +done creating buckets +total new hashes: 11368 +Total bytes: 401405202 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 7617 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4912 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4831 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6889 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7454 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4914 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4847 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4819 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4814 ms + +intersection size is 2 +Total results: 2 +Time Taken: 4833 ms + +Median: 4879.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 9019 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7126 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7099 ms + +intersection size is 2 +Total results: 80 +Time Taken: 6974 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7183 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7186 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7376 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7582 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7528 ms + +intersection size is 2 +Total results: 80 +Time Taken: 7203 ms + +Median: 7194.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 7719 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4798 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4788 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4714 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4746 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4823 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4763 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4773 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4926 ms + +intersection size is 0 +Total results: 0 +Time Taken: 4876 ms + +Median: 4793 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.245s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 30008 ms + +intersection size is 2 +Total results: 168 +Time Taken: 26356 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25921 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25455 ms + +intersection size is 2 +Total results: 168 +Time Taken: 28076 ms + +intersection size is 2 +Total results: 168 +Time Taken: 29191 ms + +intersection size is 2 +Total results: 168 +Time Taken: 26091 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25848 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25963 ms + +intersection size is 2 +Total results: 168 +Time Taken: 25911 ms + +Median: 26027 diff --git a/rest_of_145.txt b/rest_of_145.txt new file mode 100644 index 0000000..d1d8a2a --- /dev/null +++ b/rest_of_145.txt @@ -0,0 +1,6543 @@ +MSCallGraph_16.csv +total traces: 138310 +exempted traces (cyclic): 9590 +exempted traces (frag): 18185 +done creating buckets +total new hashes: 11456 +Total bytes: 404633528 +MSCallGraph_17.csv +total traces: 141238 +exempted traces (cyclic): 10017 +exempted traces (frag): 17887 +done creating buckets +total new hashes: 12153 +Total bytes: 432781648 +MSCallGraph_18.csv +total traces: 139048 +exempted traces (cyclic): 9523 +exempted traces (frag): 17804 +done creating buckets +total new hashes: 11673 +Total bytes: 416489297 +MSCallGraph_19.csv +total traces: 137891 +exempted traces (cyclic): 9697 +exempted traces (frag): 17802 +done creating buckets +total new hashes: 11397 +Total bytes: 409819647 +MSCallGraph_20.csv +total traces: 139637 +exempted traces (cyclic): 10223 +exempted traces (frag): 17923 +done creating buckets +(0xef1d20,0xc0ddfa5660) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +total new hashes: 11833 +Total bytes: 431987394 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.421s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 10726 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7060 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6261 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5974 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5778 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5955 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5773 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5677 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5651 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5651 ms + +Median: 5866.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.280s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 10406 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8204 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8320 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8136 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8099 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8036 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8193 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8235 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8432 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8451 ms + +Median: 8219.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.264s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 9646 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6029 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6013 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6055 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5942 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5971 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5973 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5924 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5934 ms + +intersection size is 0 +Total results: 0 +Time Taken: 5882 ms + +Median: 5972 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.241s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 36293 ms + +intersection size is 2 +Total results: 168 +Time Taken: 33302 ms + +intersection size is 2 +Total results: 168 +Time Taken: 35811 ms + +intersection size is 2 +Total results: 168 +Time Taken: 32618 ms + +intersection size is 2 +Total results: 168 +Time Taken: 32864 ms + +intersection size is 2 +Total results: 168 +Time Taken: 32753 ms + +intersection size is 2 +Total results: 168 +Time Taken: 33439 ms + +intersection size is 2 +Total results: 168 +Time Taken: 35488 ms + +intersection size is 2 +Total results: 168 +Time Taken: 34801 ms + +intersection size is 2 +Total results: 168 +Time Taken: 33717 ms + +Median: 33578 +MSCallGraph_21.csv +total traces: 135334 +exempted traces (cyclic): 9132 +exempted traces (frag): 17577 +done creating buckets +total new hashes: 10921 +Total bytes: 386933989 +MSCallGraph_22.csv +2023/01/23 17:16:42 record on line 4766837: wrong number of fields +MSCallGraph_23.csv +total traces: 144093 +exempted traces (cyclic): 10088 +exempted traces (frag): 17603 +done creating buckets +total new hashes: 11779 +Total bytes: 447248175 +MSCallGraph_24.csv +total traces: 144039 +exempted traces (cyclic): 8790 +exempted traces (frag): 17292 +done creating buckets +total new hashes: 10562 +Total bytes: 414622943 +MSCallGraph_25.csv +total traces: 146379 +exempted traces (cyclic): 8682 +exempted traces (frag): 17462 +done creating buckets +total new hashes: 10262 +Total bytes: 401606661 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 8504 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7120 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6001 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5889 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5931 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5935 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5916 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5943 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5924 ms + +intersection size is 2 +Total results: 2 +Time Taken: 5877 ms + +Median: 5933 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 11148 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8431 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8380 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8378 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8384 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8375 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8396 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8391 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8370 ms + +intersection size is 2 +Total results: 80 +Time Taken: 8493 ms + +Median: 8387.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.283s, Critical Path: 0.04s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 11289 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6977 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6923 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6909 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6910 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6971 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6849 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6862 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6952 ms + +intersection size is 0 +Total results: 0 +Time Taken: 6891 ms + +Median: 6916.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 39645 ms + +intersection size is 2 +Total results: 168 +Time Taken: 36367 ms + +intersection size is 2 +Total results: 168 +Time Taken: 36498 ms + +intersection size is 2 +Total results: 168 +Time Taken: 36879 ms + +intersection size is 2 +Total results: 168 +Time Taken: 37473 ms + +intersection size is 2 +Total results: 168 +Time Taken: 39944 ms + +intersection size is 2 +Total results: 168 +Time Taken: 40435 ms + +intersection size is 2 +Total results: 168 +Time Taken: 43906 ms + +intersection size is 2 +Total results: 168 +Time Taken: 39224 ms + +intersection size is 2 +Total results: 168 +Time Taken: 37496 ms + +Median: 38360 +MSCallGraph_26.csv +total traces: 151327 +exempted traces (cyclic): 9565 +exempted traces (frag): 17108 +done creating buckets +total new hashes: 10971 +Total bytes: 452204454 +MSCallGraph_27.csv +total traces: 155135 +exempted traces (cyclic): 9856 +exempted traces (frag): 18033 +done creating buckets +total new hashes: 11098 +Total bytes: 438680139 +MSCallGraph_28.csv +total traces: 155239 +exempted traces (cyclic): 10093 +exempted traces (frag): 17997 +done creating buckets +total new hashes: 11305 +Total bytes: 450417609 +MSCallGraph_29.csv +total traces: 156171 +exempted traces (cyclic): 10499 +exempted traces (frag): 17458 +done creating buckets +total new hashes: 11557 +Total bytes: 465896456 +MSCallGraph_30.csv +2023/01/23 17:51:14 record on line 3998890: wrong number of fields +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 9729 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6783 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6722 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6632 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6710 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6626 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6634 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7546 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7035 ms + +intersection size is 2 +Total results: 2 +Time Taken: 6457 ms + +Median: 6716 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.271s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 11924 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9719 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10271 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10203 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9725 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9209 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9244 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9348 ms + +intersection size is 2 +Total results: 80 +Time Taken: 9929 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10583 ms + +Median: 9827 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.243s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 12469 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9410 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8804 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8193 ms + +intersection size is 0 +Total results: 0 +Time Taken: 7956 ms + +intersection size is 0 +Total results: 0 +Time Taken: 7899 ms + +intersection size is 0 +Total results: 0 +Time Taken: 7948 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8095 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8480 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8228 ms + +Median: 8210.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.250s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 47596 ms + +intersection size is 2 +Total results: 168 +Time Taken: 43075 ms + +intersection size is 2 +Total results: 168 +Time Taken: 45642 ms + +intersection size is 2 +Total results: 168 +Time Taken: 54546 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56740 ms + +intersection size is 2 +Total results: 168 +Time Taken: 55558 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56284 ms + +intersection size is 2 +Total results: 168 +Time Taken: 52521 ms + +intersection size is 2 +Total results: 168 +Time Taken: 53381 ms + +intersection size is 2 +Total results: 168 +Time Taken: 53936 ms + +Median: 53658.5 +MSCallGraph_31.csv +total traces: 148977 +exempted traces (cyclic): 9921 +exempted traces (frag): 16856 +done creating buckets +total new hashes: 10867 +Total bytes: 430732345 +MSCallGraph_32.csv +total traces: 151013 +exempted traces (cyclic): 10490 +exempted traces (frag): 16569 +done creating buckets +total new hashes: 11409 +Total bytes: 466205120 +MSCallGraph_33.csv +total traces: 144731 +exempted traces (cyclic): 9835 +exempted traces (frag): 16411 +done creating buckets +total new hashes: 10352 +Total bytes: 410278608 +MSCallGraph_34.csv +total traces: 148021 +exempted traces (cyclic): 9694 +exempted traces (frag): 15982 +done creating buckets +total new hashes: 10295 +Total bytes: 419320253 +MSCallGraph_35.csv +total traces: 153562 +exempted traces (cyclic): 10140 +exempted traces (frag): 16001 +done creating buckets +total new hashes: 10579 +Total bytes: 454158688 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.489s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14123 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10381 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9405 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8862 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7791 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7749 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7808 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7842 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7958 ms + +intersection size is 2 +Total results: 2 +Time Taken: 7819 ms + +Median: 7900 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.247s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 14009 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11639 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11847 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12281 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11018 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10633 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10708 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10579 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10491 ms + +intersection size is 2 +Total results: 80 +Time Taken: 10494 ms + +Median: 10863 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.250s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 11879 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8983 ms + +intersection size is 0 +Total results: 0 +Time Taken: 8904 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9463 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9383 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9021 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10197 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10751 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9756 ms + +intersection size is 0 +Total results: 0 +Time Taken: 9309 ms + +Median: 9423 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.252s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 58343 ms + +intersection size is 2 +Total results: 168 +Time Taken: 51368 ms + +intersection size is 2 +Total results: 168 +Time Taken: 51560 ms + +intersection size is 2 +Total results: 168 +Time Taken: 54790 ms + +intersection size is 2 +Total results: 168 +Time Taken: 50600 ms + +intersection size is 2 +Total results: 168 +Time Taken: 50257 ms + +intersection size is 2 +Total results: 168 +Time Taken: 61305 ms + +intersection size is 2 +Total results: 168 +Time Taken: 65530 ms + +intersection size is 2 +Total results: 168 +Time Taken: 62963 ms + +intersection size is 2 +Total results: 168 +Time Taken: 60687 ms + +Median: 56566.5 +MSCallGraph_36.csv +total traces: 155519 +exempted traces (cyclic): 9499 +exempted traces (frag): 15776 +done creating buckets +total new hashes: 10253 +Total bytes: 432805562 +MSCallGraph_37.csv +total traces: 142043 +exempted traces (cyclic): 9713 +exempted traces (frag): 16409 +done creating buckets +total new hashes: 10539 +Total bytes: 415845895 +MSCallGraph_38.csv +total traces: 142959 +exempted traces (cyclic): 10156 +exempted traces (frag): 16075 +done creating buckets +total new hashes: 10721 +Total bytes: 432593618 +MSCallGraph_39.csv +total traces: 145714 +exempted traces (cyclic): 10378 +exempted traces (frag): 16032 +done creating buckets +total new hashes: 11203 +Total bytes: 449325093 +MSCallGraph_40.csv +total traces: 148175 +exempted traces (cyclic): 10945 +exempted traces (frag): 16457 +done creating buckets +total new hashes: 11309 +Total bytes: 450922105 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.534s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14991 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11709 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11469 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11836 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11182 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11316 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11074 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9628 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8508 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8512 ms + +Median: 11249 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 15357 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12483 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11879 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11413 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11272 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11201 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11169 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11255 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11199 ms + +intersection size is 2 +Total results: 80 +Time Taken: 11307 ms + +Median: 11289.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 13277 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10686 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10932 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10356 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10830 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10389 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10216 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10195 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10415 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10408 ms + +Median: 10411.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.244s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 62956 ms + +intersection size is 2 +Total results: 168 +Time Taken: 57595 ms + +intersection size is 2 +Total results: 168 +Time Taken: 62333 ms + +intersection size is 2 +Total results: 168 +Time Taken: 58347 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56608 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56503 ms + +intersection size is 2 +Total results: 168 +Time Taken: 57609 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56212 ms + +intersection size is 2 +Total results: 168 +Time Taken: 56678 ms + +intersection size is 2 +Total results: 168 +Time Taken: 57676 ms + +Median: 57602 +MSCallGraph_41.csv +total traces: 151723 +exempted traces (cyclic): 11368 +exempted traces (frag): 16407 +done creating buckets +total new hashes: 11775 +Total bytes: 485387287 +MSCallGraph_42.csv +total traces: 152221 +exempted traces (cyclic): 10915 +exempted traces (frag): 17566 +done creating buckets +total new hashes: 10803 +Total bytes: 446001535 +MSCallGraph_43.csv +total traces: 153680 +exempted traces (cyclic): 11673 +exempted traces (frag): 16975 +done creating buckets +total new hashes: 11462 +Total bytes: 458804777 +MSCallGraph_44.csv +total traces: 156371 +exempted traces (cyclic): 12054 +exempted traces (frag): 16367 +done creating buckets +total new hashes: 12028 +Total bytes: 486963304 +MSCallGraph_45.csv +total traces: 152992 +exempted traces (cyclic): 10801 +exempted traces (frag): 16491 +done creating buckets +(0xef1d20,0xc0baafc1e0) +error: googleapi: Error 504: , gatewayTimeout +(0xef1d20,0xc0b9768ec0) +error: googleapi: Error 504: , gatewayTimeout +(0xef1d20,0xc0ba124500) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +(0xef1d20,0xc153bcb660) +error: googleapi: Error 503: We encountered an internal error. Please try again., backendError +(0xef1d20,0xc0baeb7a60) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +(0xef1d20,0xc0ba6d7cc0) +error: googleapi: Error 503: We encountered an internal error. Please try again., backendError +total new hashes: 10961 +Total bytes: 441906265 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.382s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 12253 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10433 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14209 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10164 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9960 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10471 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10090 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10115 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9290 ms + +intersection size is 2 +Total results: 2 +Time Taken: 8966 ms + +Median: 10139.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 14377 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12180 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12087 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12052 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12056 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12039 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12136 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12408 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12610 ms + +intersection size is 2 +Total results: 80 +Time Taken: 12574 ms + +Median: 12158 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.275s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 13442 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10599 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10613 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10512 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10636 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10689 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10806 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10745 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10584 ms + +intersection size is 0 +Total results: 0 +Time Taken: 10860 ms + +Median: 10662.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.257s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 70536 ms + +intersection size is 2 +Total results: 168 +Time Taken: 67223 ms + +intersection size is 2 +Total results: 168 +Time Taken: 65648 ms + +intersection size is 2 +Total results: 168 +Time Taken: 85250 ms + +intersection size is 2 +Total results: 168 +Time Taken: 86856 ms + +intersection size is 2 +Total results: 168 +Time Taken: 78321 ms + +intersection size is 2 +Total results: 168 +Time Taken: 79381 ms + +intersection size is 2 +Total results: 168 +Time Taken: 78452 ms + +intersection size is 2 +Total results: 168 +Time Taken: 66142 ms + +intersection size is 2 +Total results: 168 +Time Taken: 67096 ms + +Median: 74428.5 +MSCallGraph_46.csv +total traces: 154065 +exempted traces (cyclic): 11001 +exempted traces (frag): 16330 +done creating buckets +total new hashes: 11302 +Total bytes: 454362605 +MSCallGraph_47.csv +total traces: 155762 +exempted traces (cyclic): 11232 +exempted traces (frag): 15892 +done creating buckets +total new hashes: 11674 +Total bytes: 490818289 +MSCallGraph_48.csv +total traces: 158716 +exempted traces (cyclic): 11567 +exempted traces (frag): 15748 +done creating buckets +total new hashes: 11674 +Total bytes: 481863496 +MSCallGraph_49.csv +total traces: 147327 +exempted traces (cyclic): 11700 +exempted traces (frag): 16062 +done creating buckets +total new hashes: 11219 +Total bytes: 443777511 +MSCallGraph_50.csv +total traces: 146361 +exempted traces (cyclic): 11725 +exempted traces (frag): 15510 +done creating buckets +total new hashes: 11461 +Total bytes: 462355442 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 13166 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11076 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10357 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10230 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10141 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10349 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10810 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10068 ms + +intersection size is 2 +Total results: 2 +Time Taken: 9947 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10002 ms + +Median: 10289.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 15654 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13723 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13695 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13826 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14142 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13735 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14379 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13464 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13835 ms + +intersection size is 2 +Total results: 80 +Time Taken: 13767 ms + +Median: 13796.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 15102 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13021 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12886 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12855 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12819 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12918 ms + +intersection size is 0 +Total results: 0 +Time Taken: 12973 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13436 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14118 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14828 ms + +Median: 12997 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 82102 ms + +intersection size is 2 +Total results: 168 +Time Taken: 76247 ms + +intersection size is 2 +Total results: 168 +Time Taken: 94532 ms + +intersection size is 2 +Total results: 168 +Time Taken: 100545 ms + +intersection size is 2 +Total results: 168 +Time Taken: 94495 ms + +intersection size is 2 +Total results: 168 +Time Taken: 89776 ms + +intersection size is 2 +Total results: 168 +Time Taken: 89880 ms + +intersection size is 2 +Total results: 168 +Time Taken: 88573 ms + +intersection size is 2 +Total results: 168 +Time Taken: 75859 ms + +intersection size is 2 +Total results: 168 +Time Taken: 73775 ms + +Median: 89174.5 +MSCallGraph_51.csv +total traces: 146852 +exempted traces (cyclic): 11528 +exempted traces (frag): 15465 +done creating buckets +total new hashes: 11213 +Total bytes: 458336561 +MSCallGraph_52.csv +total traces: 146224 +exempted traces (cyclic): 11441 +exempted traces (frag): 15240 +done creating buckets +total new hashes: 11508 +Total bytes: 457089047 +MSCallGraph_53.csv +total traces: 147232 +exempted traces (cyclic): 11606 +exempted traces (frag): 15770 +done creating buckets +total new hashes: 12205 +Total bytes: 482388998 +MSCallGraph_54.csv +total traces: 139068 +exempted traces (cyclic): 10803 +exempted traces (frag): 15407 +done creating buckets +total new hashes: 10298 +Total bytes: 419403283 +MSCallGraph_55.csv +total traces: 136469 +exempted traces (cyclic): 10493 +exempted traces (frag): 14609 +done creating buckets +total new hashes: 10293 +Total bytes: 415203598 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.282s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14456 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12490 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11539 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11733 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11258 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11520 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11101 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10814 ms + +intersection size is 2 +Total results: 2 +Time Taken: 10882 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11035 ms + +Median: 11389 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 17035 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14487 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14399 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14671 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14677 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14558 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14560 ms + +intersection size is 2 +Total results: 80 +Time Taken: 14761 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15335 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15287 ms + +Median: 14674 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.250s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 16946 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15339 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13915 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13891 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13939 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13745 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14027 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13861 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13804 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13952 ms + +Median: 13927 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.268s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 91520 ms + +intersection size is 2 +Total results: 168 +Time Taken: 84795 ms + +intersection size is 2 +Total results: 168 +Time Taken: 106893 ms + +intersection size is 2 +Total results: 168 +Time Taken: 107589 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101303 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101202 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101618 ms + +intersection size is 2 +Total results: 168 +Time Taken: 82419 ms + +intersection size is 2 +Total results: 168 +Time Taken: 83440 ms + +intersection size is 2 +Total results: 168 +Time Taken: 81343 ms + +Median: 96361 +MSCallGraph_56.csv +total traces: 138181 +exempted traces (cyclic): 11313 +exempted traces (frag): 15334 +done creating buckets +total new hashes: 10439 +Total bytes: 436519917 +MSCallGraph_57.csv +total traces: 141448 +exempted traces (cyclic): 11000 +exempted traces (frag): 15682 +done creating buckets +total new hashes: 11386 +Total bytes: 433240069 +MSCallGraph_58.csv +total traces: 138064 +exempted traces (cyclic): 10970 +exempted traces (frag): 14836 +done creating buckets +total new hashes: 10563 +Total bytes: 423423394 +MSCallGraph_59.csv +total traces: 137074 +exempted traces (cyclic): 11248 +exempted traces (frag): 14951 +done creating buckets +total new hashes: 10448 +Total bytes: 422340586 +MSCallGraph_60.csv +total traces: 140325 +exempted traces (cyclic): 10594 +exempted traces (frag): 15560 +done creating buckets +total new hashes: 9843 +Total bytes: 400962071 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 14444 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12266 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11899 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11541 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11654 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11555 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11538 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11535 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14085 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11609 ms + +Median: 11631.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 17580 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15693 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16081 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17088 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16585 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15799 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16229 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15684 ms + +intersection size is 2 +Total results: 80 +Time Taken: 15910 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16650 ms + +Median: 16155 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 17165 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14997 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14383 ms + +intersection size is 0 +Total results: 0 +Time Taken: 13819 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14456 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14030 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14089 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14371 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14599 ms + +intersection size is 0 +Total results: 0 +Time Taken: 14514 ms + +Median: 14419.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.258s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 98548 ms + +intersection size is 2 +Total results: 168 +Time Taken: 114257 ms + +intersection size is 2 +Total results: 168 +Time Taken: 120798 ms + +intersection size is 2 +Total results: 168 +Time Taken: 108047 ms + +intersection size is 2 +Total results: 168 +Time Taken: 113948 ms + +intersection size is 2 +Total results: 168 +Time Taken: 100815 ms + +intersection size is 2 +Total results: 168 +Time Taken: 99681 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101134 ms + +intersection size is 2 +Total results: 168 +Time Taken: 98569 ms + +intersection size is 2 +Total results: 168 +Time Taken: 90868 ms + +Median: 100974 +MSCallGraph_61.csv +total traces: 140715 +exempted traces (cyclic): 10370 +exempted traces (frag): 15933 +done creating buckets +total new hashes: 10054 +Total bytes: 412837268 +MSCallGraph_62.csv +total traces: 140894 +exempted traces (cyclic): 10695 +exempted traces (frag): 15212 +done creating buckets +total new hashes: 10499 +Total bytes: 435707967 +MSCallGraph_63.csv +total traces: 144806 +exempted traces (cyclic): 11058 +exempted traces (frag): 15688 +done creating buckets +total new hashes: 10497 +Total bytes: 443430612 +MSCallGraph_64.csv +total traces: 145859 +exempted traces (cyclic): 11248 +exempted traces (frag): 16606 +done creating buckets +total new hashes: 10938 +Total bytes: 438307211 +MSCallGraph_65.csv +total traces: 146542 +exempted traces (cyclic): 11295 +exempted traces (frag): 16322 +done creating buckets +total new hashes: 11126 +Total bytes: 465786545 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.255s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 15398 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12510 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12387 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12266 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12129 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12028 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12119 ms + +intersection size is 2 +Total results: 2 +Time Taken: 11999 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12022 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14159 ms + +Median: 12197.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.534s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 23485 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16207 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16416 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16223 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16514 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16971 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17485 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18026 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17127 ms + +intersection size is 2 +Total results: 80 +Time Taken: 16887 ms + +Median: 16929 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.249s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 17476 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15618 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15535 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15553 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15885 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15562 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15396 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15485 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15444 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15497 ms + +Median: 15544 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.229s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 102534 ms + +intersection size is 2 +Total results: 168 +Time Taken: 120943 ms + +intersection size is 2 +Total results: 168 +Time Taken: 120843 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117356 ms + +intersection size is 2 +Total results: 168 +Time Taken: 119698 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101361 ms + +intersection size is 2 +Total results: 168 +Time Taken: 98472 ms + +intersection size is 2 +Total results: 168 +Time Taken: 98822 ms + +intersection size is 2 +Total results: 168 +Time Taken: 101752 ms + +intersection size is 2 +Total results: 168 +Time Taken: 96912 ms + +Median: 102143 +MSCallGraph_66.csv +total traces: 151222 +exempted traces (cyclic): 12490 +exempted traces (frag): 21052 +done creating buckets +total new hashes: 10420 +Total bytes: 414618904 +MSCallGraph_67.csv +total traces: 153715 +exempted traces (cyclic): 12692 +exempted traces (frag): 21704 +done creating buckets +total new hashes: 10114 +Total bytes: 412509605 +MSCallGraph_68.csv +total traces: 154618 +exempted traces (cyclic): 13228 +exempted traces (frag): 21387 +done creating buckets +total new hashes: 11073 +Total bytes: 452547443 +MSCallGraph_69.csv +total traces: 150759 +exempted traces (cyclic): 11561 +exempted traces (frag): 16489 +done creating buckets +total new hashes: 11092 +Total bytes: 456945368 +MSCallGraph_70.csv +total traces: 156187 +exempted traces (cyclic): 11470 +exempted traces (frag): 19851 +done creating buckets +total new hashes: 11488 +Total bytes: 472154807 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.239s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 15719 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13252 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12671 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12744 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13283 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13465 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13483 ms + +intersection size is 2 +Total results: 2 +Time Taken: 13307 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12626 ms + +intersection size is 2 +Total results: 2 +Time Taken: 12893 ms + +Median: 13267.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.241s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 20200 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19037 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18661 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18827 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18135 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18068 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17954 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18030 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17735 ms + +intersection size is 2 +Total results: 80 +Time Taken: 17533 ms + +Median: 18101.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.246s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 18192 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16379 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16171 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16172 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16079 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16044 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16011 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16181 ms + +intersection size is 0 +Total results: 0 +Time Taken: 15987 ms + +intersection size is 0 +Total results: 0 +Time Taken: 16119 ms + +Median: 16145 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.248s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 112511 ms + +intersection size is 2 +Total results: 168 +Time Taken: 135370 ms + +intersection size is 2 +Total results: 168 +Time Taken: 128678 ms + +intersection size is 2 +Total results: 168 +Time Taken: 126444 ms + +intersection size is 2 +Total results: 168 +Time Taken: 112489 ms + +intersection size is 2 +Total results: 168 +Time Taken: 108494 ms + +intersection size is 2 +Total results: 168 +Time Taken: 103918 ms + +intersection size is 2 +Total results: 168 +Time Taken: 106994 ms + +intersection size is 2 +Total results: 168 +Time Taken: 105540 ms + +intersection size is 2 +Total results: 168 +Time Taken: 106712 ms + +Median: 110492 +MSCallGraph_71.csv +total traces: 158557 +exempted traces (cyclic): 11602 +exempted traces (frag): 19139 +done creating buckets +total new hashes: 11597 +Total bytes: 490451768 +MSCallGraph_72.csv +total traces: 147281 +exempted traces (cyclic): 9601 +exempted traces (frag): 16068 +done creating buckets +total new hashes: 9205 +Total bytes: 392239743 +MSCallGraph_73.csv +total traces: 149700 +exempted traces (cyclic): 9660 +exempted traces (frag): 15402 +done creating buckets +total new hashes: 9236 +Total bytes: 410908253 +MSCallGraph_74.csv +total traces: 152168 +exempted traces (cyclic): 10132 +exempted traces (frag): 15103 +done creating buckets +total new hashes: 9401 +Total bytes: 434775110 +MSCallGraph_75.csv +total traces: 160366 +exempted traces (cyclic): 9382 +exempted traces (frag): 17322 +done creating buckets +total new hashes: 8672 +Total bytes: 420753643 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.239s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 16919 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14730 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14343 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14207 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14245 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14118 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14142 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14198 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14305 ms + +intersection size is 2 +Total results: 2 +Time Taken: 14437 ms + +Median: 14275 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.263s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 20822 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19132 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19123 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18841 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18670 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18865 ms + +intersection size is 2 +Total results: 80 +Time Taken: 19961 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18814 ms + +intersection size is 2 +Total results: 80 +Time Taken: 18820 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31941 ms + +Median: 18994 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.229s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 20254 ms + +intersection size is 0 +Total results: 0 +Time Taken: 18176 ms + +intersection size is 0 +Total results: 0 +Time Taken: 18549 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17888 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17282 ms + +intersection size is 0 +Total results: 0 +Time Taken: 18419 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17865 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17874 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17823 ms + +intersection size is 0 +Total results: 0 +Time Taken: 17857 ms + +Median: 17881 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.228s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 158346 ms + +intersection size is 2 +Total results: 168 +Time Taken: 136896 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138071 ms + +intersection size is 2 +Total results: 168 +Time Taken: 119707 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117450 ms + +intersection size is 2 +Total results: 168 +Time Taken: 113766 ms + +intersection size is 2 +Total results: 168 +Time Taken: 114555 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117581 ms + +intersection size is 2 +Total results: 168 +Time Taken: 117740 ms + +intersection size is 2 +Total results: 168 +Time Taken: 123700 ms + +Median: 118724 +MSCallGraph_76.csv +total traces: 159851 +exempted traces (cyclic): 9671 +exempted traces (frag): 16799 +done creating buckets +total new hashes: 8716 +Total bytes: 423695942 +MSCallGraph_77.csv +total traces: 161909 +exempted traces (cyclic): 9958 +exempted traces (frag): 17250 +done creating buckets +total new hashes: 9043 +Total bytes: 448634878 +MSCallGraph_78.csv +total traces: 151768 +exempted traces (cyclic): 9191 +exempted traces (frag): 17339 +done creating buckets +total new hashes: 8286 +Total bytes: 392238118 +MSCallGraph_79.csv +total traces: 156014 +exempted traces (cyclic): 10165 +exempted traces (frag): 19696 +done creating buckets +total new hashes: 8289 +Total bytes: 388666033 +MSCallGraph_80.csv +total traces: 174907 +exempted traces (cyclic): 14474 +exempted traces (frag): 29444 +done creating buckets +total new hashes: 9273 +Total bytes: 422696561 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.440s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 17943 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15793 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15283 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15093 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15190 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15638 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15432 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15637 ms + +intersection size is 2 +Total results: 2 +Time Taken: 16018 ms + +intersection size is 2 +Total results: 2 +Time Taken: 15558 ms + +Median: 15597.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.261s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 22390 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21032 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21542 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21784 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21975 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21320 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20786 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20854 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20796 ms + +intersection size is 2 +Total results: 80 +Time Taken: 20493 ms + +Median: 21176 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.279s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 23317 ms + +intersection size is 0 +Total results: 0 +Time Taken: 19617 ms + +intersection size is 0 +Total results: 0 +Time Taken: 19452 ms + +intersection size is 0 +Total results: 0 +Time Taken: 19864 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20426 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20865 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20925 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20777 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20580 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20334 ms + +Median: 20503 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.269s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 173359 ms + +intersection size is 2 +Total results: 168 +Time Taken: 152295 ms + +intersection size is 2 +Total results: 168 +Time Taken: 144892 ms + +intersection size is 2 +Total results: 168 +Time Taken: 128084 ms + +intersection size is 2 +Total results: 168 +Time Taken: 125707 ms + +intersection size is 2 +Total results: 168 +Time Taken: 129557 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142589 ms + +intersection size is 2 +Total results: 168 +Time Taken: 124394 ms + +intersection size is 2 +Total results: 168 +Time Taken: 126435 ms + +intersection size is 2 +Total results: 168 +Time Taken: 128261 ms + +Median: 128909 +MSCallGraph_81.csv +total traces: 177788 +exempted traces (cyclic): 14075 +exempted traces (frag): 32067 +done creating buckets +total new hashes: 8877 +Total bytes: 392793525 +MSCallGraph_82.csv +total traces: 184831 +exempted traces (cyclic): 14743 +exempted traces (frag): 35202 +done creating buckets +total new hashes: 8938 +Total bytes: 399448664 +MSCallGraph_83.csv +total traces: 187535 +exempted traces (cyclic): 16287 +exempted traces (frag): 35672 +done creating buckets +total new hashes: 9149 +Total bytes: 415876004 +MSCallGraph_84.csv +total traces: 175078 +exempted traces (cyclic): 13816 +exempted traces (frag): 26136 +done creating buckets +failed closing the span object: googleapi: Error 504: , gatewayTimeout +when we are writing object 84-1695895710-1695922667 in bucket microservices-quest-batched-145csv +(0xef1d20,0xc11804c100) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +(0xef1d20,0xc117a717e0) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +failed closing the span object: googleapi: got HTTP response code 503 with body: Service Unavailable +when we are writing object 97-1695841062-1695868399 in bucket microservices-quest-batched-145csv +(0xef1d20,0xc115341280) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +total new hashes: 9229 +Total bytes: 410268027 +MSCallGraph_85.csv +total traces: 143817 +exempted traces (cyclic): 10513 +exempted traces (frag): 16313 +done creating buckets +total new hashes: 8686 +Total bytes: 384314789 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.795s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 23807 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24058 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17620 ms + +intersection size is 2 +Total results: 2 +Time Taken: 16973 ms + +intersection size is 2 +Total results: 2 +Time Taken: 16720 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17271 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18963 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19434 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18628 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17310 ms + +Median: 18124 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.309s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 23866 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22648 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21940 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26362 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23713 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30914 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22034 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21408 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21388 ms + +intersection size is 2 +Total results: 80 +Time Taken: 21717 ms + +Median: 22341 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.283s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 26020 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24152 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21193 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23375 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20679 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20192 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20155 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20642 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22899 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22380 ms + +Median: 21786.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.475s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 176880 ms + +intersection size is 2 +Total results: 168 +Time Taken: 165084 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138975 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138279 ms + +intersection size is 2 +Total results: 168 +Time Taken: 130565 ms + +intersection size is 2 +Total results: 168 +Time Taken: 134109 ms + +intersection size is 2 +Total results: 168 +Time Taken: 131344 ms + +intersection size is 2 +Total results: 168 +Time Taken: 125831 ms + +intersection size is 2 +Total results: 168 +Time Taken: 134555 ms + +intersection size is 2 +Total results: 168 +Time Taken: 124811 ms + +Median: 134332 +MSCallGraph_86.csv +total traces: 144675 +exempted traces (cyclic): 10620 +exempted traces (frag): 16556 +done creating buckets +total new hashes: 9079 +Total bytes: 410268307 +MSCallGraph_87.csv +total traces: 141747 +exempted traces (cyclic): 10523 +exempted traces (frag): 16861 +done creating buckets +total new hashes: 8297 +Total bytes: 371545701 +MSCallGraph_88.csv +total traces: 140208 +exempted traces (cyclic): 10384 +exempted traces (frag): 16786 +done creating buckets +total new hashes: 8358 +Total bytes: 374727173 +MSCallGraph_89.csv +total traces: 141089 +exempted traces (cyclic): 10780 +exempted traces (frag): 16290 +done creating buckets +total new hashes: 8783 +Total bytes: 396291143 +MSCallGraph_90.csv +total traces: 146888 +exempted traces (cyclic): 10919 +exempted traces (frag): 16104 +done creating buckets +total new hashes: 8829 +Total bytes: 391860053 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.329s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 21012 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19905 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19404 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19397 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19167 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19136 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18620 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18824 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18107 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19770 ms + +Median: 19282 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.260s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 25271 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22906 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23992 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22166 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23069 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24830 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22745 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22465 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22307 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22498 ms + +Median: 22825.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.251s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 22788 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21021 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22216 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20801 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21366 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21829 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21839 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22075 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25832 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25030 ms + +Median: 21957 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.501s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 200069 ms + +intersection size is 2 +Total results: 168 +Time Taken: 170698 ms + +intersection size is 2 +Total results: 168 +Time Taken: 147657 ms + +intersection size is 2 +Total results: 168 +Time Taken: 143958 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142274 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142176 ms + +intersection size is 2 +Total results: 168 +Time Taken: 137629 ms + +intersection size is 2 +Total results: 168 +Time Taken: 135500 ms + +intersection size is 2 +Total results: 168 +Time Taken: 131745 ms + +intersection size is 2 +Total results: 168 +Time Taken: 133637 ms + +Median: 142225 +MSCallGraph_91.csv +total traces: 152248 +exempted traces (cyclic): 10975 +exempted traces (frag): 15874 +done creating buckets +total new hashes: 8657 +Total bytes: 385649163 +MSCallGraph_92.csv +total traces: 154435 +exempted traces (cyclic): 11120 +exempted traces (frag): 15795 +done creating buckets +total new hashes: 9190 +Total bytes: 418076364 +MSCallGraph_93.csv +total traces: 145791 +exempted traces (cyclic): 10058 +exempted traces (frag): 15896 +done creating buckets +total new hashes: 8144 +Total bytes: 358406441 +MSCallGraph_94.csv +total traces: 144841 +exempted traces (cyclic): 10203 +exempted traces (frag): 15761 +done creating buckets +total new hashes: 8324 +Total bytes: 368668461 +MSCallGraph_95.csv +total traces: 136329 +exempted traces (cyclic): 10531 +exempted traces (frag): 15993 +done creating buckets +total new hashes: 8373 +Total bytes: 387282125 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.254s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 21452 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18824 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18271 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18805 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19814 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19434 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20141 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18184 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17770 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17595 ms + +Median: 18814.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 25847 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23808 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23489 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23591 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23011 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23066 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22823 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22910 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22844 ms + +intersection size is 2 +Total results: 80 +Time Taken: 22700 ms + +Median: 23038.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.276s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 25668 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21954 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21162 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20845 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21340 ms + +intersection size is 0 +Total results: 0 +Time Taken: 20892 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21775 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22048 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23536 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23404 ms + +Median: 21864.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.443s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 193961 ms + +intersection size is 2 +Total results: 168 +Time Taken: 177353 ms + +intersection size is 2 +Total results: 168 +Time Taken: 148212 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138990 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142258 ms + +intersection size is 2 +Total results: 168 +Time Taken: 146363 ms + +intersection size is 2 +Total results: 168 +Time Taken: 138900 ms + +intersection size is 2 +Total results: 168 +Time Taken: 142090 ms + +intersection size is 2 +Total results: 168 +Time Taken: 137213 ms + +intersection size is 2 +Total results: 168 +Time Taken: 140335 ms + +Median: 142174 +MSCallGraph_96.csv +total traces: 146298 +exempted traces (cyclic): 10454 +exempted traces (frag): 15547 +done creating buckets +total new hashes: 8445 +Total bytes: 387107719 +MSCallGraph_97.csv +total traces: 163958 +exempted traces (cyclic): 14017 +exempted traces (frag): 21690 +done creating buckets +total new hashes: 8751 +Total bytes: 392408736 +MSCallGraph_98.csv +total traces: 179761 +exempted traces (cyclic): 18753 +exempted traces (frag): 28831 +done creating buckets +total new hashes: 9045 +Total bytes: 420718443 +MSCallGraph_99.csv +total traces: 182895 +exempted traces (cyclic): 17738 +exempted traces (frag): 31942 +done creating buckets +total new hashes: 8197 +Total bytes: 370946900 +MSCallGraph_100.csv +total traces: 186082 +exempted traces (cyclic): 18151 +exempted traces (frag): 31708 +done creating buckets +total new hashes: 8305 +Total bytes: 374750449 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.299s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 21418 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19020 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17575 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17424 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17589 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19376 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18464 ms + +intersection size is 2 +Total results: 2 +Time Taken: 18166 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23003 ms + +intersection size is 2 +Total results: 2 +Time Taken: 17739 ms + +Median: 18315 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.259s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 25341 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24093 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24271 ms + +intersection size is 2 +Total results: 80 +Time Taken: 25487 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24307 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23639 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23085 ms + +intersection size is 2 +Total results: 80 +Time Taken: 25117 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23606 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23929 ms + +Median: 24182 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.287s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 24298 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22109 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22622 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25452 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22320 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22146 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22910 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24921 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28097 ms + +intersection size is 0 +Total results: 0 +Time Taken: 52301 ms + +Median: 23604 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.480s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 210876 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176928 ms + +intersection size is 2 +Total results: 168 +Time Taken: 159122 ms + +intersection size is 2 +Total results: 168 +Time Taken: 167870 ms + +intersection size is 2 +Total results: 168 +Time Taken: 154188 ms + +intersection size is 2 +Total results: 168 +Time Taken: 154661 ms + +intersection size is 2 +Total results: 168 +Time Taken: 157285 ms + +intersection size is 2 +Total results: 168 +Time Taken: 144680 ms + +intersection size is 2 +Total results: 168 +Time Taken: 153249 ms + +intersection size is 2 +Total results: 168 +Time Taken: 153631 ms + +Median: 155973 +MSCallGraph_101.csv +total traces: 147077 +exempted traces (cyclic): 10460 +exempted traces (frag): 14902 +done creating buckets +total new hashes: 8240 +Total bytes: 381226224 +MSCallGraph_102.csv +total traces: 145136 +exempted traces (cyclic): 10064 +exempted traces (frag): 14716 +done creating buckets +total new hashes: 7996 +Total bytes: 370150353 +MSCallGraph_103.csv +total traces: 148959 +exempted traces (cyclic): 9996 +exempted traces (frag): 14749 +done creating buckets +total new hashes: 7840 +Total bytes: 364197259 +MSCallGraph_104.csv +total traces: 147049 +exempted traces (cyclic): 10424 +exempted traces (frag): 14198 +done creating buckets +total new hashes: 8218 +Total bytes: 393192932 +MSCallGraph_105.csv +total traces: 129980 +exempted traces (cyclic): 5282 +exempted traces (frag): 22998 +done creating buckets +total new hashes: 6061 +Total bytes: 322040046 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 4] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.351s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 20659 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19901 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23841 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20701 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20477 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21470 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21889 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21241 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21474 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21232 ms + +Median: 21236.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.552s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 31517 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30140 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29805 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29355 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28131 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28233 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28214 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31693 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27119 ms + +intersection size is 2 +Total results: 80 +Time Taken: 25195 ms + +Median: 28794 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.262s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 27317 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24079 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22876 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23294 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22079 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21919 ms + +intersection size is 0 +Total results: 0 +Time Taken: 21998 ms + +intersection size is 0 +Total results: 0 +Time Taken: 22976 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25231 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25860 ms + +Median: 23135 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.328s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 177302 ms + +intersection size is 2 +Total results: 168 +Time Taken: 155646 ms + +intersection size is 2 +Total results: 168 +Time Taken: 158193 ms + +intersection size is 2 +Total results: 168 +Time Taken: 157599 ms + +intersection size is 2 +Total results: 168 +Time Taken: 156589 ms + +intersection size is 2 +Total results: 168 +Time Taken: 156064 ms + +intersection size is 2 +Total results: 168 +Time Taken: 162197 ms + +intersection size is 2 +Total results: 168 +Time Taken: 158785 ms + +intersection size is 2 +Total results: 168 +Time Taken: 163996 ms + +intersection size is 2 +Total results: 168 +Time Taken: 151635 ms + +Median: 157896 +MSCallGraph_106.csv +total traces: 131488 +exempted traces (cyclic): 5376 +exempted traces (frag): 23727 +done creating buckets +total new hashes: 6027 +Total bytes: 327910056 +MSCallGraph_107.csv +total traces: 132553 +exempted traces (cyclic): 5268 +exempted traces (frag): 24561 +done creating buckets +total new hashes: 6083 +Total bytes: 328410575 +MSCallGraph_108.csv +total traces: 122591 +exempted traces (cyclic): 4710 +exempted traces (frag): 22218 +done creating buckets +total new hashes: 5513 +Total bytes: 293700219 +MSCallGraph_109.csv +total traces: 148007 +exempted traces (cyclic): 4822 +exempted traces (frag): 39983 +done creating buckets +total new hashes: 9810 +Total bytes: 334956581 +MSCallGraph_110.csv +total traces: 159941 +exempted traces (cyclic): 5268 +exempted traces (frag): 46698 +done creating buckets +total new hashes: 11394 +Total bytes: 361809349 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.537s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 24895 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21385 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19969 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19797 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19980 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19983 ms + +intersection size is 2 +Total results: 2 +Time Taken: 20046 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19496 ms + +intersection size is 2 +Total results: 2 +Time Taken: 19433 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21725 ms + +Median: 19981.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.278s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30430 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27039 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24391 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23866 ms + +intersection size is 2 +Total results: 80 +Time Taken: 23928 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24173 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24387 ms + +intersection size is 2 +Total results: 80 +Time Taken: 24655 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26107 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26019 ms + +Median: 24523 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.263s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 39161 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24127 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24413 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23958 ms + +intersection size is 0 +Total results: 0 +Time Taken: 23489 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27660 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29387 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30705 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31511 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29125 ms + +Median: 28392.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.526s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 219195 ms + +intersection size is 2 +Total results: 168 +Time Taken: 169235 ms + +intersection size is 2 +Total results: 168 +Time Taken: 153471 ms + +intersection size is 2 +Total results: 168 +Time Taken: 150783 ms + +intersection size is 2 +Total results: 168 +Time Taken: 163200 ms + +intersection size is 2 +Total results: 168 +Time Taken: 148217 ms + +intersection size is 2 +Total results: 168 +Time Taken: 156661 ms + +intersection size is 2 +Total results: 168 +Time Taken: 159072 ms + +intersection size is 2 +Total results: 168 +Time Taken: 155792 ms + +intersection size is 2 +Total results: 168 +Time Taken: 154561 ms + +Median: 156226 +MSCallGraph_111.csv +total traces: 131989 +exempted traces (cyclic): 5149 +exempted traces (frag): 29988 +done creating buckets +total new hashes: 9285 +Total bytes: 348574564 +MSCallGraph_112.csv +total traces: 119283 +exempted traces (cyclic): 5183 +exempted traces (frag): 22643 +done creating buckets +total new hashes: 6198 +Total bytes: 310449517 +MSCallGraph_113.csv +total traces: 118499 +exempted traces (cyclic): 5265 +exempted traces (frag): 22321 +done creating buckets +total new hashes: 6552 +Total bytes: 327998917 +MSCallGraph_114.csv +total traces: 114415 +exempted traces (cyclic): 4865 +exempted traces (frag): 22200 +done creating buckets +total new hashes: 5740 +Total bytes: 291089115 +MSCallGraph_115.csv +total traces: 114669 +exempted traces (cyclic): 4654 +exempted traces (frag): 22023 +done creating buckets +(0xef1d20,0xc0a19415c0) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +total new hashes: 5640 +Total bytes: 291571750 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.304s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25154 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22235 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22023 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22561 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22119 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22129 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23011 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23246 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23158 ms + +intersection size is 2 +Total results: 2 +Time Taken: 25091 ms + +Median: 22786 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.279s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30133 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27873 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27679 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27707 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28017 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28647 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29393 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28003 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27716 ms + +intersection size is 2 +Total results: 80 +Time Taken: 34679 ms + +Median: 28010 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.269s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 28726 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27260 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27596 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30177 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31024 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31308 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32356 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33067 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32423 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32061 ms + +Median: 31166 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.501s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 219585 ms + +intersection size is 2 +Total results: 168 +Time Taken: 165892 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176110 ms + +intersection size is 2 +Total results: 168 +Time Taken: 167039 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166437 ms + +intersection size is 2 +Total results: 168 +Time Taken: 160199 ms + +intersection size is 2 +Total results: 168 +Time Taken: 157803 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161978 ms + +intersection size is 2 +Total results: 168 +Time Taken: 167654 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166204 ms + +Median: 166320 +MSCallGraph_116.csv +total traces: 114541 +exempted traces (cyclic): 4866 +exempted traces (frag): 21725 +done creating buckets +total new hashes: 5937 +Total bytes: 303469693 +MSCallGraph_117.csv +total traces: 120776 +exempted traces (cyclic): 5198 +exempted traces (frag): 22164 +done creating buckets +total new hashes: 6457 +Total bytes: 317865404 +MSCallGraph_118.csv +total traces: 119493 +exempted traces (cyclic): 5196 +exempted traces (frag): 22248 +done creating buckets +total new hashes: 6468 +Total bytes: 323031209 +MSCallGraph_119.csv +total traces: 122895 +exempted traces (cyclic): 5218 +exempted traces (frag): 22483 +done creating buckets +total new hashes: 6875 +Total bytes: 338595214 +MSCallGraph_120.csv +total traces: 121471 +exempted traces (cyclic): 4815 +exempted traces (frag): 21633 +done creating buckets +total new hashes: 6027 +Total bytes: 303053829 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.338s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 26265 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22509 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21853 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22017 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23411 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21766 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21621 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21965 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21719 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21751 ms + +Median: 21909 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.269s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30480 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29050 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29541 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29210 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27166 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26679 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26587 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27444 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28787 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30342 ms + +Median: 28918.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.289s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 29330 ms + +intersection size is 0 +Total results: 0 +Time Taken: 25291 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24578 ms + +intersection size is 0 +Total results: 0 +Time Taken: 24613 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26905 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26562 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26549 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26012 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26544 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27655 ms + +Median: 26546.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.481s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 220678 ms + +intersection size is 2 +Total results: 168 +Time Taken: 171321 ms + +intersection size is 2 +Total results: 168 +Time Taken: 162484 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166681 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166577 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161279 ms + +intersection size is 2 +Total results: 168 +Time Taken: 162879 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161170 ms + +intersection size is 2 +Total results: 168 +Time Taken: 155767 ms + +intersection size is 2 +Total results: 168 +Time Taken: 160592 ms + +Median: 162682 +MSCallGraph_121.csv +total traces: 124426 +exempted traces (cyclic): 4953 +exempted traces (frag): 21529 +done creating buckets +failed closing the span object: googleapi: Error 503: We encountered an internal error. Please try again., backendError +when we are writing object 11-1706834290-1706869418 in bucket microservices-quest-batched-145csv +(0xef1d20,0xc139298040) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +(0xef1d20,0xc0744db780) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +failed closing the span object: googleapi: Error 503: We encountered an internal error. Please try again., backendError +when we are writing object 31-1706904018-1706938732 in bucket microservices-quest-batched-145csv +(0xef1d20,0xc138a35600) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +(0xef1d20,0xc078e42a20) +error: googleapi: Error 503: We encountered an internal error. Please try again., backendError +(0xef1d20,0xc139bd83a0) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +(0xef1d20,0xc138f10160) +error: googleapi: Error 503: We encountered an internal error. Please try again., backendError +(0xef1d20,0xc07f9ab5a0) +error: googleapi: Error 503: We encountered an internal error. Please try again., backendError +failed closing the span object: googleapi: Error 503: We encountered an internal error. Please try again., backendError +when we are writing object 61-1706763010-1706798440 in bucket microservices-quest-batched-145csv +total new hashes: 5996 +Total bytes: 308190172 +MSCallGraph_122.csv +total traces: 132669 +exempted traces (cyclic): 6965 +exempted traces (frag): 23458 +done creating buckets +failed closing the span object: googleapi: got HTTP response code 503 with body: Service Unavailable +when we are writing object 35-1707027276-1707061436 in bucket microservices-quest-batched-145csv +total new hashes: 6449 +Total bytes: 329057242 +MSCallGraph_123.csv +total traces: 135314 +exempted traces (cyclic): 7077 +exempted traces (frag): 23375 +done creating buckets +total new hashes: 6158 +Total bytes: 317151820 +MSCallGraph_124.csv +total traces: 133728 +exempted traces (cyclic): 5469 +exempted traces (frag): 22476 +done creating buckets +total new hashes: 6035 +Total bytes: 311946564 +MSCallGraph_125.csv +total traces: 146225 +exempted traces (cyclic): 9258 +exempted traces (frag): 24836 +done creating buckets +total new hashes: 6631 +Total bytes: 343736987 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.351s, Critical Path: 0.02s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25684 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22610 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21905 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21715 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21930 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22319 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22012 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22338 ms + +intersection size is 2 +Total results: 2 +Time Taken: 21967 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22051 ms + +Median: 22031.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.289s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 29940 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27209 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27333 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27909 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27266 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28254 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27632 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27584 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27090 ms + +intersection size is 2 +Total results: 80 +Time Taken: 26983 ms + +Median: 27458.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.292s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 27793 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27904 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27273 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27065 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28891 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29956 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29878 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28593 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29867 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32454 ms + +Median: 28742 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.498s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 234569 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176293 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183440 ms + +intersection size is 2 +Total results: 168 +Time Taken: 171338 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166717 ms + +intersection size is 2 +Total results: 168 +Time Taken: 163440 ms + +intersection size is 2 +Total results: 168 +Time Taken: 169897 ms + +intersection size is 2 +Total results: 168 +Time Taken: 166708 ms + +intersection size is 2 +Total results: 168 +Time Taken: 165873 ms + +intersection size is 2 +Total results: 168 +Time Taken: 161854 ms + +Median: 168307 +MSCallGraph_126.csv +total traces: 149718 +exempted traces (cyclic): 8174 +exempted traces (frag): 24157 +done creating buckets +total new hashes: 6662 +Total bytes: 343988377 +MSCallGraph_127.csv +total traces: 149064 +exempted traces (cyclic): 7900 +exempted traces (frag): 23901 +done creating buckets +total new hashes: 6322 +Total bytes: 339991234 +MSCallGraph_128.csv +total traces: 151987 +exempted traces (cyclic): 8724 +exempted traces (frag): 24289 +done creating buckets +total new hashes: 6769 +Total bytes: 360266083 +MSCallGraph_129.csv +total traces: 148823 +exempted traces (cyclic): 6957 +exempted traces (frag): 24064 +done creating buckets +total new hashes: 6325 +Total bytes: 351839673 +MSCallGraph_130.csv +total traces: 157309 +exempted traces (cyclic): 8559 +exempted traces (frag): 24628 +done creating buckets +total new hashes: 6610 +Total bytes: 372751593 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.280s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25197 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23256 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22783 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22786 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22549 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22996 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22911 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24511 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24624 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22450 ms + +Median: 22953.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.282s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30800 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30159 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29531 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31214 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28700 ms + +intersection size is 2 +Total results: 80 +Time Taken: 31335 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28709 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28091 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28499 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28533 ms + +Median: 29120 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.277s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 30264 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28513 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28363 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32013 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30227 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29811 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30393 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31508 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33807 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33025 ms + +Median: 30328.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.527s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 243966 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183889 ms + +intersection size is 2 +Total results: 168 +Time Taken: 188747 ms + +intersection size is 2 +Total results: 168 +Time Taken: 181155 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183245 ms + +intersection size is 2 +Total results: 168 +Time Taken: 185689 ms + +intersection size is 2 +Total results: 168 +Time Taken: 179781 ms + +intersection size is 2 +Total results: 168 +Time Taken: 181487 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183766 ms + +intersection size is 2 +Total results: 168 +Time Taken: 182648 ms + +Median: 183506 +MSCallGraph_131.csv +total traces: 163952 +exempted traces (cyclic): 7832 +exempted traces (frag): 25164 +done creating buckets +total new hashes: 6935 +Total bytes: 389918042 +MSCallGraph_132.csv +total traces: 172808 +exempted traces (cyclic): 5563 +exempted traces (frag): 27449 +done creating buckets +total new hashes: 7575 +Total bytes: 412120245 +MSCallGraph_133.csv +total traces: 164582 +exempted traces (cyclic): 5560 +exempted traces (frag): 25042 +done creating buckets +total new hashes: 7214 +Total bytes: 394505651 +MSCallGraph_134.csv +total traces: 170494 +exempted traces (cyclic): 5592 +exempted traces (frag): 24259 +done creating buckets +total new hashes: 7572 +Total bytes: 429857301 +MSCallGraph_135.csv +total traces: 169597 +exempted traces (cyclic): 5158 +exempted traces (frag): 23639 +done creating buckets +total new hashes: 7133 +Total bytes: 405239027 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.292s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 26630 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24102 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23851 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23934 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23749 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23983 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24318 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24008 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23732 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23432 ms + +Median: 23958.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.280s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 32323 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29126 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28528 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28523 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27994 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27602 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27705 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28058 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28588 ms + +intersection size is 2 +Total results: 80 +Time Taken: 27918 ms + +Median: 28290.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.263s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 29495 ms + +intersection size is 0 +Total results: 0 +Time Taken: 26966 ms + +intersection size is 0 +Total results: 0 +Time Taken: 27978 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29684 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29762 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30083 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29773 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32208 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31799 ms + +intersection size is 0 +Total results: 0 +Time Taken: 31879 ms + +Median: 29767.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.500s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 237973 ms + +intersection size is 2 +Total results: 168 +Time Taken: 180602 ms + +intersection size is 2 +Total results: 168 +Time Taken: 186450 ms + +intersection size is 2 +Total results: 168 +Time Taken: 177953 ms + +intersection size is 2 +Total results: 168 +Time Taken: 183126 ms + +intersection size is 2 +Total results: 168 +Time Taken: 187205 ms + +intersection size is 2 +Total results: 168 +Time Taken: 173850 ms + +intersection size is 2 +Total results: 168 +Time Taken: 175846 ms + +intersection size is 2 +Total results: 168 +Time Taken: 176919 ms + +intersection size is 2 +Total results: 168 +Time Taken: 177742 ms + +Median: 179278 +MSCallGraph_136.csv +total traces: 172548 +exempted traces (cyclic): 5342 +exempted traces (frag): 23718 +done creating buckets +total new hashes: 6943 +Total bytes: 408639147 +MSCallGraph_137.csv +total traces: 181796 +exempted traces (cyclic): 5569 +exempted traces (frag): 23740 +done creating buckets +total new hashes: 7395 +Total bytes: 441648413 +MSCallGraph_138.csv +total traces: 198118 +exempted traces (cyclic): 5159 +exempted traces (frag): 24025 +done creating buckets +total new hashes: 7423 +Total bytes: 462067109 +MSCallGraph_139.csv +total traces: 209345 +exempted traces (cyclic): 5186 +exempted traces (frag): 24031 +done creating buckets +total new hashes: 7328 +Total bytes: 455425443 +MSCallGraph_140.csv +total traces: 223100 +exempted traces (cyclic): 5331 +exempted traces (frag): 24083 +done creating buckets +total new hashes: 7721 +Total bytes: 487424119 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.312s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 duration +INFO: Build completed successfully, 1 total action +Running duration_condition() +intersection size is 2 +Total results: 2 +Time Taken: 25501 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23507 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22875 ms + +intersection size is 2 +Total results: 2 +Time Taken: 22604 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23113 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24162 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24374 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24115 ms + +intersection size is 2 +Total results: 2 +Time Taken: 24476 ms + +intersection size is 2 +Total results: 2 +Time Taken: 23645 ms + +Median: 23880 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.262s, Critical Path: 0.00s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 fanout +INFO: Build completed successfully, 1 total action +Running four_fan_out() +intersection size is 2 +Total results: 80 +Time Taken: 30636 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28528 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28551 ms + +intersection size is 2 +Total results: 80 +Time Taken: 30009 ms + +intersection size is 2 +Total results: 80 +Time Taken: 29083 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28327 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28066 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28336 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28600 ms + +intersection size is 2 +Total results: 80 +Time Taken: 28633 ms + +Median: 28575.5 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 2] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.282s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 height +INFO: Build completed successfully, 1 total action +Running height_at_least_four() +intersection size is 0 +Total results: 0 +Time Taken: 30008 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28253 ms + +intersection size is 0 +Total results: 0 +Time Taken: 28093 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30784 ms + +intersection size is 0 +Total results: 0 +Time Taken: 29956 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30856 ms + +intersection size is 0 +Total results: 0 +Time Taken: 30388 ms + +intersection size is 0 +Total results: 0 +Time Taken: 32410 ms + +intersection size is 0 +Total results: 0 +Time Taken: 33492 ms + +intersection size is 0 +Total results: 0 +Time Taken: 35177 ms + +Median: 30586 +\n +Loading: +Loading: 0 packages loaded +Analyzing: target //:graph_query (0 packages loaded, 0 targets configured) +INFO: Analyzed target //:graph_query (0 packages loaded, 0 targets configured). +INFO: Found 1 target... +[0 / 3] [Prepa] BazelWorkspaceStatusAction stable-status.txt +Target //:graph_query up-to-date: + bazel-bin/graph_query +INFO: Elapsed time: 0.496s, Critical Path: 0.01s +INFO: 1 process: 1 internal. +INFO: Build completed successfully, 1 total action +INFO: Running command line: bazel-bin/graph_query 10 one_call +INFO: Build completed successfully, 1 total action +Running service_calls_one_other() +intersection size is 2 +Total results: 168 +Time Taken: 253610 ms + +intersection size is 2 +Total results: 168 +Time Taken: 189442 ms + +intersection size is 2 +Total results: 168 +Time Taken: 187694 ms + +intersection size is 2 +Total results: 168 +Time Taken: 195249 ms + +intersection size is 2 +Total results: 168 +Time Taken: 173576 ms + +intersection size is 2 +Total results: 168 +Time Taken: 182261 ms + +intersection size is 2 +Total results: 168 +Time Taken: 181049 ms + +intersection size is 2 +Total results: 168 +Time Taken: 193056 ms + +intersection size is 2 +Total results: 168 +Time Taken: 192846 ms + +intersection size is 2 +Total results: 168 +Time Taken: 185870 ms + +Median: 188568 +MSCallGraph_141.csv +total traces: 213266 +exempted traces (cyclic): 5499 +exempted traces (frag): 23493 +done creating buckets +total new hashes: 7143 +Total bytes: 459041641 +MSCallGraph_142.csv +total traces: 217294 +exempted traces (cyclic): 5572 +exempted traces (frag): 24019 +done creating buckets +(0xef1d20,0xc166808540) +error: googleapi: got HTTP response code 503 with body: Service Unavailable +total new hashes: 7311 +Total bytes: 478857293 +MSCallGraph_143.csv +total traces: 234272 +exempted traces (cyclic): 5755 +exempted traces (frag): 24377 +done creating buckets +total new hashes: 7420 +Total bytes: 504231922 +MSCallGraph_144.csv +total traces: 11 +exempted traces (cyclic): 0 +exempted traces (frag): 0 +done creating buckets +total new hashes: 0 +Total bytes: 706 From a0844563569cc020c5a6436a5567c4c719151f2c Mon Sep 17 00:00:00 2001 From: jessberg Date: Tue, 24 Jan 2023 18:18:27 +0000 Subject: [PATCH 42/49] all data --- analyze_results/analyze.sh | 2 +- analyze_results/bytes_count.csv | 2 +- analyze_results/process_results.py | 4 +- analyze_results/processed.csv | 176 ++++++++++++++++++++--------- analyze_results/traces_count.csv | 2 +- common.h | 2 +- run.sh | 6 +- 7 files changed, 130 insertions(+), 64 deletions(-) diff --git a/analyze_results/analyze.sh b/analyze_results/analyze.sh index d2c5fda..4fb58d9 100755 --- a/analyze_results/analyze.sh +++ b/analyze_results/analyze.sh @@ -1,5 +1,5 @@ -FOLDER='batched_index_thirty' +FOLDER='batched_index_all' cd ../${FOLDER} cp ../analyze_results/process_results.py . python3 process_results.py diff --git a/analyze_results/bytes_count.csv b/analyze_results/bytes_count.csv index 3e16ee3..19b411e 100644 --- a/analyze_results/bytes_count.csv +++ b/analyze_results/bytes_count.csv @@ -1 +1 @@ -0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5184849025,5608210507,5608349710,6012983238,6445764886,6862254183,7272073830,7704061224,8090995213,8480256205,8927504380,9342127323,9743733984,10195938438,10634618577,11085036186,11550932642,11982436770,12413169115,12879374235,13289652843,13708973096,14163131784,14595937346,15011783241,15444376859,15893701952,16344624057,16830011344,17276012879,17734817656,18221780960,18663687225,19118049830,19608868119,20090731615,20534509126,20996864568,21455201129,21912290176,22394679174,22814082457,23229286055,23665805972,24099046041,24522469435,24944810021,25345772092,25758609360,26194317327,26637747939,27076055150,27541841695,27956460599,28368970204,28821517647,29278463015 +0,424762836,872422956,1287220931,1703937206,2150374650,2575278768,2994730955,3450404225,3896093797,4338945409,4792142818,5184710229,5584101236,6007462718,6408867920,6813501448,7246283096,7662772393,8072592040,8504579434,8891513423,9338761598,9753384541,10154991202,10607195656,11045875795,11496293404,11962189860,12392922205,12859127325,13269405933,13688726186,14142884874,14575690436,14991536331,15424129949,15873455042,16324377147,16809764434,17255765969,17714570746,18201534050,18643440315,19097802920,19588621209,20070484705,20514262216,20976617658,21434954219,21892043266,22374432264,22793835547,23209039145,23645559062,24078799131,24502222525,24924563111,25325525182,25738362450,26174070417,26617501029,27055808240,27521594785,27936213689,28348723294,28801270737,29258216105,29730370912,30220822680,30613062423,31023970676,31458745786,31879499429,32303195371,32751830249,33144068367,33532734400,33955430961,34348224486,34747673150,35163549154,35573817181,35958131970,36368400277,36739945978,37114673151,37510964294,37902824347,38288473510,38706549874,39064956315,39433624776,39820906901,40208014620,40600423356,41021141799,41392088699,41766839148,42148065372,42518215725,42882412984,43275605916,43597645962,43925556018,44253966593,44547666812,44882623393,45244432742,45593007306,45903456823,46231455740,46522544855,46814116605,47117586298,47435451702,47758482911,48097078125,48400131954,48708322126,49037379368,49354531188,49666477752,50010214739,50354203116,50694194350,51054460433,51406300106,51779051699,52168969741,52581089986,52975595637,53405452938,53810691965,54219331112,54660979525,55123046634,55578472077,56065896196,56524937837,57003795130,57508027052,57508027758,57897288750 diff --git a/analyze_results/process_results.py b/analyze_results/process_results.py index e0fe731..bb1c6a3 100644 --- a/analyze_results/process_results.py +++ b/analyze_results/process_results.py @@ -4,9 +4,11 @@ queries = ["duration", "fanout", "height", "one_call"] all_files = [] -for i in range(1, 71): +for i in range(1, 145): if i%5 == 0: all_files.append(i) +all_files.append(144) +all_files.append("last") #all_files = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] results = ",".join(csv_hdr) + "\n" diff --git a/analyze_results/processed.csv b/analyze_results/processed.csv index d893d7e..3127c6c 100644 --- a/analyze_results/processed.csv +++ b/analyze_results/processed.csv @@ -1,57 +1,121 @@ number_of_csvs,query,median_time(ms) -5,5duration,3652.5 -5,5fanout,3765.5 -5,5height,3433.0 -5,5one_call,7810.0 -10,10duration,3925.5 -10,10fanout,4465.0 -10,10height,4662.5 -10,10one_call,13041.0 -15,15duration,4481.0 -15,15fanout,4974.5 -15,15height,5958.0 -15,15one_call,19329.5 -20,20duration,7646.0 -20,20fanout,8811.5 -20,20height,10065.0 -20,20one_call,21669.5 -25,25duration,5654.0 -25,25fanout,6727.0 -25,25height,8608.5 -25,25one_call,25520.5 -30,30duration,7133.0 -30,30fanout,7995.0 -30,30height,9957.0 -30,30one_call,30143.5 -35,35duration,7157.5 -35,35fanout,9491.5 -35,35height,12634.5 -35,35one_call,35980.5 -40,40duration,7907.0 -40,40fanout,9632.0 -40,40height,12350.0 -40,40one_call,42943.0 -45,45duration,8524.0 -45,45fanout,10929.0 -45,45height,14228.0 -45,45one_call,54509.0 -50,50duration,9570.5 -50,50fanout,11413.5 -50,50height,15558.0 -50,50one_call,62911.5 -55,55duration,13189.5 -55,55fanout,17403.0 -55,55height,16142.0 -55,55one_call,59367.5 -60,60duration,11226.5 -60,60fanout,13626.0 -60,60height,16502.5 -60,60one_call,73714.5 -65,65duration,11572.0 -65,65fanout,15164.0 -65,65height,18434.5 -65,65one_call,82601.0 -70,70duration,14456.5 -70,70fanout,15137.5 -70,70height,20384.5 -70,70one_call,81909.0 +5,5duration,3382.0 +5,5fanout,4886.0 +5,5height,2099.5 +5,5one_call,10864.0 +10,10duration,4453.0 +10,10fanout,6035.5 +10,10height,3148.5 +10,10one_call,19144.5 +15,15duration,4879.5 +15,15fanout,7194.5 +15,15height,4793.0 +15,15one_call,26027.0 +20,20duration,5866.5 +20,20fanout,8219.5 +20,20height,5972.0 +20,20one_call,33578.0 +25,25duration,5933.0 +25,25fanout,8387.5 +25,25height,6916.5 +25,25one_call,38360.0 +30,30duration,6716.0 +30,30fanout,9827.0 +30,30height,8210.5 +30,30one_call,53658.5 +35,35duration,7900.0 +35,35fanout,10863.0 +35,35height,9423.0 +35,35one_call,56566.5 +40,40duration,11249.0 +40,40fanout,11289.5 +40,40height,10411.5 +40,40one_call,57602.0 +45,45duration,10139.5 +45,45fanout,12158.0 +45,45height,10662.5 +45,45one_call,74428.5 +50,50duration,10289.5 +50,50fanout,13796.5 +50,50height,12997.0 +50,50one_call,89174.5 +55,55duration,11389.0 +55,55fanout,14674.0 +55,55height,13927.0 +55,55one_call,96361.0 +60,60duration,11631.5 +60,60fanout,16155.0 +60,60height,14419.5 +60,60one_call,100974.0 +65,65duration,12197.5 +65,65fanout,16929.0 +65,65height,15544.0 +65,65one_call,102143.0 +70,70duration,13267.5 +70,70fanout,18101.5 +70,70height,16145.0 +70,70one_call,110492.0 +75,75duration,14275.0 +75,75fanout,18994.0 +75,75height,17881.0 +75,75one_call,118724.0 +80,80duration,15597.5 +80,80fanout,21176.0 +80,80height,20503.0 +80,80one_call,128909.0 +85,85duration,18124.0 +85,85fanout,22341.0 +85,85height,21786.5 +85,85one_call,134332.0 +90,90duration,19282.0 +90,90fanout,22825.5 +90,90height,21957.0 +90,90one_call,142225.0 +95,95duration,18814.5 +95,95fanout,23038.5 +95,95height,21864.5 +95,95one_call,142174.0 +100,100duration,18315.0 +100,100fanout,24182.0 +100,100height,23604.0 +100,100one_call,155973.0 +105,105duration,21236.5 +105,105fanout,28794.0 +105,105height,23135.0 +105,105one_call,157896.0 +110,110duration,19981.5 +110,110fanout,24523.0 +110,110height,28392.5 +110,110one_call,156226.0 +115,115duration,22786.0 +115,115fanout,28010.0 +115,115height,31166.0 +115,115one_call,166320.0 +120,120duration,21909.0 +120,120fanout,28918.5 +120,120height,26546.5 +120,120one_call,162682.0 +125,125duration,22031.5 +125,125fanout,27458.5 +125,125height,28742.0 +125,125one_call,168307.0 +130,130duration,22953.5 +130,130fanout,29120.0 +130,130height,30328.5 +130,130one_call,183506.0 +135,135duration,23958.5 +135,135fanout,28290.5 +135,135height,29767.5 +135,135one_call,179278.0 +140,140duration,23880.0 +140,140fanout,28575.5 +140,140height,30586.0 +140,140one_call,188568.0 +144,144duration,21972.5 +144,144fanout,28084.5 +144,144height,28691.0 +144,144one_call,180668.0 +last,lastduration,21603.5 +last,lastfanout,32567.5 +last,lastheight,30821.0 +last,lastone_call,182750.0 diff --git a/analyze_results/traces_count.csv b/analyze_results/traces_count.csv index 58da541..d2dc4b9 100644 --- a/analyze_results/traces_count.csv +++ b/analyze_results/traces_count.csv @@ -1 +1 @@ -0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2414915,2531317,2649274,2769509,2894163,3021409,3148558,3276772,3399799,3521999,3645953,3764438,3886783,4014204,4144448,4260369,4377097,4496401,4617174,4741122,4864862,4989894,5117844,5243544,5370278,5498916,5630317,5749882,5869008,5988867,6108410,6228266,6341124,6452491,6564025,6678791,6791049,6901924,7016095,7130507,7245494,7363554,7481559,7600484,7718164,7837483,7957486,8080195 +0,105282,212114,318048,423719,530453,637381,744663,853516,964052,1077104,1190868,1303154,1413963,1526660,1638596,1749131,1862465,1974186,2084578,2196069,2304694,2421096,2539053,2659288,2783942,2911188,3038337,3166551,3288751,3412705,3531190,3653535,3780956,3911200,4027121,4143849,4263153,4383926,4507874,4631614,4756646,4884596,5010296,5137030,5265668,5397069,5516634,5635760,5755619,5875162,5995018,6107876,6219243,6330777,6445543,6557801,6668676,6782847,6897259,7012246,7130306,7248311,7367236,7484916,7604235,7724238,7846947,7971813,8099629,8221241,8345879,8472812,8606474,8739855,8874556,8999794,9125947,9256936,9388582,9523468,9659044,9794170,9911161,10028660,10143023,10256061,10370080,10489945,10615344,10742864,10862701,10981578,11091383,11211680,11339931,11472108,11605323,11741546,11863261,11983617,12107831,12230258,12331958,12434343,12537067,12632730,12735932,12843907,12940759,13032216,13123129,13210479,13298471,13386421,13479835,13571884,13667078,13762101,13860045,13962291,14067153,14172936,14285067,14402454,14519717,14638691,14756493,14880615,15011571,15151367,15285347,15425990,15566790,15710278,15862765,16031699,16211827,16405513,16589787,16777490,16981630,16981641,17091862 diff --git a/common.h b/common.h index 7f3a311..62be509 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-batched-70csv"; +const char BUCKETS_SUFFIX[] = "-quest-batched-145csv"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/run.sh b/run.sh index cd1c5df..cdcc359 100755 --- a/run.sh +++ b/run.sh @@ -1,10 +1,10 @@ url='http://alitrip.oss-cn-zhangjiakou.aliyuncs.com/TraceData' -FOLDER='batched_index_seventy' +FOLDER='batched_index_all' mkdir ./${FOLDER} -for VAR in {1..70} +for VAR in {16..144} do - if [[ ${VAR} -eq 1 ]] + if [[ ${VAR} -eq 16 ]] then cd ../microservices_env/send_alibaba_data_to_gcs fi From 90c9e6663af5b329e1feb465e523aacd96c2a6c9 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Tue, 24 Jan 2023 13:32:09 -0500 Subject: [PATCH 43/49] done --- analyze_results/graph.pdf | Bin 17267 -> 17851 bytes analyze_results/plot_graph.py | 11 +++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/analyze_results/graph.pdf b/analyze_results/graph.pdf index 36399dded63da0c48295c5f551068ea074db9f14..ce2f4ad24ad57cd6c3e11048ba9369a3844b954d 100644 GIT binary patch delta 5286 zcmZuzc{r5q+iu8`t)fD%PwOI`8F}((6?;1O4nS^2VgoJc)o`3+%Y0An%huKm>3)O2}K;_Twg zbDv*VullcU(sO2%kIbg#r+Ey2Sy_>PVQ+kK{qAs@jE2V8YU{nx?&N!%7ma^Vh69Q^ zI)h9uuFdp#te#(`tq4^wrB0>JU8#4AP0hm;1yaeVTO$FU1ugA;Qd|?9pBqb3vp!eV z^Zz(MWl~grnp)d|lg>H+y!~P~t|M!U3fu9V(M=(O;84#3#qj;i31 z!RlT+I}?*%8M1j9pZORr|u)^YhAr*?+9nWoz3x#MR`$IhPiEVao?`CK`D zd#bVk(}qj9uYI$FW7T+SFx$T)3XSE-~GDE7?-%xkNSFQ z^89Y<&pUd)h|Ld~c-k8d54@-@Ut1%tf19jpU+D&Dwwo(GBjPp@m&hfSEIiX$qW4BV zjHDz-nAcjoy(mOkGByp@oF&@c`%gU|NPx^)iCXH{vq z%+bw=z5dUH2W>isrgc^#-qZK!Cf7)(_1lV_$SwCbi*+G64_*DOc;)-+OV*k{1S2@NX%Y%%1_vBl9EQe2S(wG2sEp7%9S9{jXxCY*oWA^BH29 zH<}HHjZ~B?X_9O!;w*L4i_{03H+5v>(qcdpzUx1GiwW;U!qalYbz9659N6R?m`@#e zoUUkz;W=v_{KW^?9;7<$4ew7Vir0C^WXG3>Y)E~`Z7ur#RaW2}ONer963^O{T~X zO?O=sp(b4I=&6-vnmT&gm$ zGpVMhbu2VHwNkNlH&V?Y6FNElY?)w{GG!>o$CSj)(k-(`dR9RkR+4bl_}$$`asqce zfcVnksS8rJkb#29!mAg}+fbxf|x$Cyg zC0aEV)2)aVleo-0`PP$s#qpfupfaPS%DxK=U)R8$Li&fS8+&zr-qLuLSPHe7>lKV2 zKaC;FYOV?7-0O3^rAD$%b}Qq1=M$uLK&?kLI=6)O!G&mHOx_&t3x={M*Y1C0ENwcO) z2c=4A%oYQ)VI~M>3zgDaukYZ462q+TFq`46&&0%B6H50|8;DqxG<#@^LA&c1uv!P5 zjKGWgNBDT?7)UJVJ!8W+(~$>`YDheGJl;ao;ovTGkUkXzkWbZ>8?)e9+RBOL-tLt?0<^a|fmG z8)ztKAGUy3+^3j0OezoNsx%f&N15Gv=7?Vj2;`cSf_`FaQUPm`KaK7ZjGwVGg0MWf zaofo^Md9|lW3S>WIcMq$)>3IhT$&6_<3lUh$EBr^*X;m!}^UV z0|S~**n>`SH)$)sn)<%Andmby(tNlyv0Z=`I{eAlE`d~8H~k95b7o0-i0bt7dj<6O z_=UfuXq@9sOa+wpe+C6N&RYA-El2>M#EF-?61YUGeqeWnjlE=WVqnHQ3qrkHw*_BTr@SrXh{n`aKkoR1RB~%*MF?y29d$%J)~s` zL1pmGIb0!phWYW>;Oe zg`hqD$~l3YnT7#8+(1?0ogGNh`Q$CRlJ@1JSA~kvhXhtiu{ZpL_iAK}%!&2VX1>d1 zf44rUZnshq|LD+UQ759yTHmMoJvWU^RBPK@7#VEr-zzpeIAGFwWTCwj@b;|Xh_!g-bX@8irT&$yDb~w>^-ZN$8 zllXcR^hNwEP5V$u2r)rqc2vt#bxtdTdr=}1*D`sWN7!VS_`>vQ z7UVSjqCRL0`Z1QP@xTU4|E&?)%B0zSXnk!dKGLswa%|I+Bxv9i$6K}cTE~3l%35cn zXF#>TY~R#ZE4~A;TiIX72ip}N&t=NKe>xO!g|@uVx&f#{Dqh#*BBqztDmgwq<|NrG zU3-&8vcJb#ez?Qne%2=q`~1L*OV;E0r$BQGQ)v7{ZF=6%Fs5up5l}=wEjy4Jr$?RA z6PZhU7^rJ@J8q7XrR(urzQEcM_WP(3rO<5Jo3`~Q_a(!Q9&A6V>Ty`k2up0Zm{6L% z4&|2_(>_3s4b3sme;CC&BT#R+eCnBr8*#MRy_bb^0iiyhc(xF zUXrZ3W7YyMmy6p~Kt1Aa38Kj~-FPPZGD3wtG*|$sm+dEeA(%YCB;VLK5+5oY+UzJU zsaGS;8ZC#0rxq1WF)zyxyOLy?rKBy(z1k>0PR+%>Qp5jBBWsWMnOr- zZWF65#sw=+O%H{?p~Ua$+C6iAChk#2JH}`x7Rr7`R;4hk#%MbIEquMz>rNuPd?rOo zGNQWjRrGPQ53MQV5_RmW4JOfetGj?aIQ{@%MS|eRL(%3*-saE8EgroRB!rpX;GH6b zec(tjSN59kco{fAG^9OUCq@RRYXev-VSK==3=gWx$Msl`QQ{3|U(kGVN$*IYu4PD7 zaoK1M=c}ZmG7yu9^FfRn`0|7F43IaT9U*CDP1nzY7V6w( z%u<5)`fSUzgZAssWH{xY{3tUcn4MZC0dl?LF2Kl!Hq_8;CfW|}Nl@fAFh#0Ko$D~X za*IgUW0Eq6vr;4}Y^^$5s4)v%eXPn8e=?e8?VyZeGngPAL zK2p*YHGe%W_fwoa;$~ui(O#(sc~Y6~Q1( zB-=6so8A5w*=Ncec+UKkvGho&bF_cfl8V!Lk7TQSpyGT`PHpJ^rnps(aqpt8@6jR0 zmb=(e>SaZdE>_=Rofd9SoyW<#y^E|wvj-PrMLf?D3H+JSSax@Fh}uw>+1n(o-o?<$ zMVCoVa1xTZ_VdL1*~8!v`vBi}hpUKE}xsB7;%)H`p!HeDZjF0aLNDtqO_7ryJg-##+_x`T5D6_-kM;pJql=szhy8 zMR%+8;nci0rY+KDh5M2{)ZVX_Y}^}&HeB^Byp*_+87HD@bK26zji^Cd{rHpendij5 zJM{~eySsC$&Yh`0ZI<3r&{z_a&=~w=Fh1G2@N}*nY<4K8W71OW&h@!~3vC-=D;rO) zwprbH8x6^lo}`LJS4Bt^?d>l*Msu?9^eQYGG)j^!^SbXFc56#MejV^g1{s`wA zIyr=dJ*Gb$9DPtCd-GnNZp`HuR;u_`b%JMgbaG^_ac^TJwdiwdhtJ@v+6>dB`O9Pj z_VpUM*voC}-=X?hj6~zLZzJI`zFLtC3E1#$K)qMk#%Y(mmWqKwl0Dhc8yO9_ajGoAu&jSbvX93GX5c;g}VGvL+ z3;~ox0{~W02>q=n6$IppLI4uD0WbhV0DEy~04ojwzKELujp7hGQ9=R)Xh=YTLdkj{ zToMA@liC2hr653!G#N;ch5$A)&jF;29H1^+0`SU00U<~Yup|qiGebQ=KtBWmB*_s0 zk{pB%k#_*a$U}fa1vn6W5Exq*?`t%yU}9gI}@jd_5PxZjZ{ z7zNvoJP2UaHkX$JiQwTzAW~>x)IW?I%Ktzl7bj;57`4qy0;9Hh$zaqrFPT6kcz{vc z++>%_VAM7{*~{SqgJD|%qsq1diZh8o0He26P<%YW=xr6=V6^-;`@imh(cA34VDvV- zAA!VJgr>hz$ALhY7)=Q_6dZ|!qtF0U(+`9N(lwQxF(^1AduxC_z#RVsa10#F(DoOG zVEj@28$)g>`YR8KWk~xQ!yy5+BPzR5Ff0u4IU+?v!M3{mGYf@5@5E5(9o3Myt^NIT zEgB2|I}e6};TYcikq1K|wp@bI80i1E3qzs*N1_ViZwnZbF*^#P;fNi?Xax3eTVQB3 z?mx|K@iPVn2LHPg7zVz>Qy2!lb=J4WzoIcJTPNmE3=99KyFc=k1|b`(@W!gqA6g2FNm@t?#hDmxv-!FM`{+jfT0|G%B!kpE*b7O|sa9BxM^a2R5T z3vkB9|LrOqhC%#Sw8)lxI80^ha{bW>oB<+%U~L)N)`RlrPY4)-ahLzX;P9Ooa))+? z6 zrIbQM#uE7`S}gyJ9N$;`_i@ZI*K^K&UgvpT_x0Sz)Lnusor9DnK&ZCwe20z*ou!}r zlDn2_6>{?HT%S=nOUy7kl&4*{-rA(Kyx37qwzhbz;k_mF%5XhzOS?`YY~Mht!*$Cl z-S3~y7i|oGdJy@TaPobFS9iy&_3W~lkX3ut+{m^bandXH$P%g8qMkjwbA=B{*P1n- z+HHShtpDEK?{98BYLw@%rhd-(kD#-A@&4I~U7ZJNb^NE;U9Ih|10FK4>%(F5p(9xD zXoucaeN*wjUGDcsll|?d3*vAF8MY2xMEjpFR--qhzGgJq5NAJ`B#0=hrpF}Xh!2*t z(wB^bmidc{Ew0Ph(cxN{hQgC0dzWn23>?;9u7(cQ``B7aO5I=HKS&kv5>D{%Vw)8t zfb#BXI_Zg}ZhhPaM=W{!-gP7xRlCKr@o9n;QA5Ia$olWsPXY}$4KO8q-_Ue4xql54w1 zm|%-rsD22c;IG|BFCJdr#4|FMl@%r;JG^T96|Q}}`g!7D`2mRoAKDHGb~s}*Hfkd3 zYlo@&ELw?6EBx4-rg5sPq$FJnjv#7Yq(xOnL6(SQ4KMV}rK?7bIvIV?S}nooi>>!2 z+UtrVADfR~etUb8Dg=?b!3Xh7xouqN{EaO*Gf;I|*416`FE8{e`c(Llm)$jc*-VXX zEOBu>?n&K;BKk-68Rj1Su2-$)bhTN)mT0Sy>1r^yHUUX)AB(9(e)C9KWb?~umsoJq zmLnHAT*y8u|4dY*?BY;IAm58*peG+`q}D%lCD@gtGlh(UjwoxsPiOmwWTuOFY`aBTX&&pCA5zE8MyzwHJwOglv?Hy*wIkDmXC8cSjFe$)`=av$w^G zb%HU%{DR{MbprGPOTs}2U%Us(t*7{dp$q-FlU0C@Qg`LiM2nVeJ3I10eZFf#775Bn zQv*F{93j-+iVwZ57XFy~1aHMDxo2iSb7M0kqHpawPg0^Mwp8v?%1?_{P8!#Aaut3Y z&$=Hvw{$Ca>@Gdjfoiq-~SIO56t-8UU03u-p@j>U#_0rdn*@2N|sg>AJ7uUK26 zbR?_tLpo=KJvgoL$Ih6azGzyMQvNK;JI}l9pl`2Pr-CTyB?k;J}gOR;S*2;m-8iF-8c)7M~Pl9vVzcP)=yXZ)bWS=9DPx9#bV zI(@4309-}LuA)PSs(7FvtM_Byy&G?d)jDVGtx_hvT_NfVuXFlmgl~pC(fGhRcy#)@ z)!v%6D4M}O)+zJ@aFMEYc71N+;|0~%~ zEsD!Ub>J~Uk;(oOdhmO6F2(c$XS#l=kx1F+P&EXcJ}CyarkMvU8I>1GY6{m`t#kNl zoE4JJ`7n9S)d7F^Oq19e+1K}x&$RUz6RA>@ZKiVJQ`+YzP8)TdpIfrdqOxN7#X70k zvuQ-5*s_T5%g!%CnxQ`>$>&Q)cY9yyqcqzawHWv-i5{#^(S)~Q@V8SJyK77%}*8GdA0p-NvHEeZrM&Q2ET5)~85xHoKR-^@9V!b*HPJoH2k3LUx!SX|dUm%|jbYqA6uN!r zLXQ$00~J27LvI5TV(z1CX43o*o4aqqZWt(lShZ$>KwA{HHRPG$E86RRb<;0ce zxeT$ISb4ajq{lS~*+K0*Q<(w$+Sx1e4TpQGci$P6*%zcaKA&B#R?+_@F5(HdiO83p zE>66Cn}L?nklol1w_5dvCi$5+)L@4b8sC$>Po7X52{5QEDm1eGH=q7CuW*-mWd%ZA zm5t{z-*|a~SUqm}V8jz1=fh9JSj0cAAit{BT@}T-=vB%O<`wr|DXZ+eQ*1sG9e&QC zgZn+&j0?9cy6{b_?ZMB7*vIia{t_;js;bm5hn^~Yx|-%DV)9vw`K zTi_sR-%-)TNq;Wpozef<@#R#o$1e21tEojm7yaq8B<6TI;ufymKA@(yY^B6wZ%nDc z(?Ql)Ok?47SI<{77Wr9=X* zxp@U z_jq6bJg+C>;?0_|2;DM5j2o^g}!CO6o^GDt|UfnSOZg~i}$Bm5pOQ zJgV_^>7ME_O%zq9RAEy2aI3F{#7!X`K_~iU(fm8+SvF1YE#_xeQ0)KsCFb$CK)-NR zupjm@Y-X9!-lg~H>hb%j$?gim4Wh&D&QM2sUpb^i;<(Qo_zo;y{3wHN zK?!v`8WSC}ua6syzOxAuERn9M?xsY`TpRE=shEvy|7x~Qd1u=dR8Qv2(f)W;XQ7U- zAP)Xgmb8VMkPV*uO@K%=%I&tMXOMsGd%1(5+X=GTKefX4oc zJODI~8F9ls0W|&><_(|;zak$1P5c%40vN=v$Pd75Df#)501OJCZqogo$RuBHk{boU zY$ZkL;L{jR>?sCc2oV2USYS?!vO4-dN_&9;NWO-T0{s0587+X?M5S!7!-mC z#%qT|2v>CAR4f6>&|@yZ7vSCukXS69k$xM7Lol*#!|=>{wqrO(UE47Nqq;vZ#siL- z4=mAkv*n!r5bZ5SG{Qy4+qz7K&S61SU1ppiIc z6R3=g|Lp<-jro5z;&%um&;;C$gcyd*HiL{Z@Y@X{Fj&NI1vB*-3qwS0KN18Mf!#sI zVweNWT>mqT#WN58PYj3HtnQC}I5ciYXK+*;;Wsy%SrB+6bFThOh)3hL&j$jJBkT~y z6PVNcCzpWQJa-28Khp#(f-%^e{r?TbF<+f+Wc*Gt5kcIskBDYo4u5iqIMfc)jJf;0 zgFZ|KlKI(2Mj}wC?bRU}hxa@A7niWZAd-=A`+P87LdNK)=5~Vf&OIQH0;eX_J6NBX&#^5=+4U;)4GA;=k@B0DjERj{+gUQnG#ASxp6aI5)__WQBmLQ2>1U1w9#LH diff --git a/analyze_results/plot_graph.py b/analyze_results/plot_graph.py index ae2e5f7..9f4c9d3 100644 --- a/analyze_results/plot_graph.py +++ b/analyze_results/plot_graph.py @@ -11,8 +11,12 @@ def import_csv(filename): nums.extend(row) to_return = [] + # the reason for the weirdness at the end is that I did every 5, + # but 144 isn't divisible by 5, so I did it once we had all data in the + # system. Then 22 and 30 were messed up so I added that and did it again + # So now we have two tacked on and the end that aren't divisible by 5 for i in range(len(nums)): - if (i+1) % 5 == 0 or i == 29: + if (i+1) % 5 == 0 or i == 141 or i == 143: # want to include the last one to_return.append(int(nums[i])) return to_return @@ -24,7 +28,10 @@ def import_query_data(query): for row in spamreader: if query in row[1]: - latencies.append((int(row[0]), row[2])) + if row[0] == "last": + latencies.append((145, row[2])) + else: + latencies.append((int(row[0]), row[2])) latencies.sort() to_return_lat = [] From 3494cd286224e22ba66e99d18262b108f9bcfaa8 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 25 Jan 2023 13:44:26 -0500 Subject: [PATCH 44/49] structural query okay --- analyze_results/graph.pdf | Bin 17851 -> 17851 bytes common.h | 2 +- count/count_objects.cc | 8 ++-- count/main.cc | 2 +- get_traces_by_structure.cc | 5 +- graph_query_main.cc | 48 +++++++++++++++++++- indices/make_sequence_bloom_tree/id_index.h | 2 +- 7 files changed, 57 insertions(+), 10 deletions(-) diff --git a/analyze_results/graph.pdf b/analyze_results/graph.pdf index ce2f4ad24ad57cd6c3e11048ba9369a3844b954d..22b539761b66ee508360614e8abf614545934d06 100644 GIT binary patch delta 20 bcmdnp&A7XpaYKUxtBIk7iP`2>2QyXxP>BY< delta 20 bcmdnp&A7XpaYKUxtFf`6iRtE62QyXxP*VoC diff --git a/common.h b/common.h index 62be509..ed8d806 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-quest-batched-145csv"; +const char BUCKETS_SUFFIX[] = "-snicket-half-hour"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/count/count_objects.cc b/count/count_objects.cc index 2bc49a3..3e08759 100644 --- a/count/count_objects.cc +++ b/count/count_objects.cc @@ -8,6 +8,7 @@ int64_t count_objects_size(std::string bucket_name, gcs::Client* client) { for (auto& object_metadata : client ->ListObjects(bucket_name)) { if (!object_metadata) { std::cerr << "Error in getting object" << std::endl; + std::cerr << "tried to get from bucket " << bucket_name << std::endl; exit(1); } count += object_metadata->size(); @@ -19,7 +20,8 @@ int64_t count_objects_in_bucket(std::string bucket_name, gcs::Client* client) { int64_t count = 0; for (auto& object_metadata : client ->ListObjects(bucket_name)) { if (!object_metadata) { - std::cerr << "Error in getting object" << std::endl; + std::cerr << "Error in listing object" << std::endl; + std::cerr << "tried to get bucket name " << bucket_name << std::endl; exit(1); } @@ -31,9 +33,7 @@ int64_t count_objects_in_bucket(std::string bucket_name, gcs::Client* client) { int64_t count_objects(gcs::Client* client, bool size) { std::vector bucket_prefixes = { - "frontend", "adservice", "cartservice", "checkoutservice", "currencyservice", - "emailservice", "paymentservice", "productcatalogservice", "recommendationservice", - "rediscart", "shippingservice", + "hashes-by-service", "list-hashes", "microservices", "dyntraces", "tracehashes" }; diff --git a/count/main.cc b/count/main.cc index 996267a..bd9b927 100644 --- a/count/main.cc +++ b/count/main.cc @@ -3,7 +3,7 @@ int main(int argc, char* argv[]) { auto client = gcs::Client(); - count_spans_and_traces(&client); + //count_spans_and_traces(&client); const int64_t res = count_objects(&client, true); std::cout << "Total data size " << res << std::endl; const int64_t res2 = count_objects(&client, false); diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index f469fa6..09f8d19 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -97,8 +97,8 @@ std::unordered_set get_hashes_for_microservice_with_prefix(std::str hash_by_microservice_bucket_name, object_metadata->name(), client); if (!hashes) { std::cerr << "problem" << std::endl; - std::cerr << "help: status is " << hashes.status() << std::endl; - std::cerr << "when reading from bucket " << hash_by_microservice_bucket_name << "for object " << object_metadata->name() << std::endl; + std::cerr << "help: status is " << hashes.status() << std::endl; + std::cerr << "when reading from bucket " << hash_by_microservice_bucket_name << "for object " << object_metadata->name() << std::endl; } for (auto &hash : split_by_string(hashes.value(), newline)) { if (hash != "") { @@ -201,6 +201,7 @@ StatusOr> filter_data_by_query(trace_structure stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; print_update("Time to get all object names: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + print_update("number of object names: " + std::to_string(all_object_names.size()) + "\n", verbose); BS::thread_pool pool(200); std::vector to_return; diff --git a/graph_query_main.cc b/graph_query_main.cc index a88f99e..ea99e07 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -23,6 +23,29 @@ std::string fetch_obj_name_from_index(std::string trace_id, int start_time, int return ""; } +QueryData plain_trace_id_query() { + QueryData query; + query.graph.num_nodes = 1; + query.graph.node_names.insert(std::make_pair(0, "frontend")); + + query_condition condition1; + condition1.node_index = 0; + condition1.type = int_value; + get_value_func condition_1_union; + condition_1_union.bytes_func = &opentelemetry::proto::trace::v1::Span::trace_id; + condition1.func = condition_1_union; + condition1.node_property_value = "b83b2deb88a6e20424d89985c2bf97b7"; + query.conditions.push_back(condition1); + + query.ret.node_index = 0; + query.ret.type = bytes_value; + get_value_func ret_union; + ret_union.bytes_func = &opentelemetry::proto::trace::v1::Span::span_id; + + query.ret.func = ret_union; + return query; +} + QueryData trace_id_query() { QueryData query; // query trace structure @@ -103,6 +126,23 @@ QueryData service_calls_one_other() { return query; } +QueryData service_calls_one_other_online_boutique() { + QueryData query; + query.graph.num_nodes = 2; + query.graph.node_names.insert(std::make_pair(0, "frontend")); + query.graph.node_names.insert(std::make_pair(1, "adservice")); + + query.graph.edges.insert(std::make_pair(0, 1)); + + query.ret.node_index = 0; + query.ret.type = bytes_value; + get_value_func ret_union; + ret_union.bytes_func = &opentelemetry::proto::trace::v1::Span::trace_id; + query.ret.func = ret_union; + + return query; +} + // done QueryData duration_condition() { QueryData query; @@ -260,12 +300,18 @@ int main(int argc, char* argv[]) { } else if (q == "height") { data = height_at_least_four(); std::cout << "Running height_at_least_four()" << std::endl; + } else if (q == "trace_id") { + data = plain_trace_id_query(); + std::cout << "Running plain trace ID query" << std::endl; + } else if (q == "ob") { + data = service_calls_one_other_online_boutique(); + std::cout << "Running service_calls_one_other_online_boutique()" << std::endl; } } std::vector times(n, 0); for (int i = 0; i < n; i++) { - auto time_taken = perform_query(data, false, 1670796531, 1670829563, &client); + auto time_taken = perform_query(data, true, 1674666130, 1674666131, &client); std::cout << "Time Taken: " << time_taken << " ms\n" << std::endl; times[i] = time_taken; } diff --git a/indices/make_sequence_bloom_tree/id_index.h b/indices/make_sequence_bloom_tree/id_index.h index cde62ea..154f372 100644 --- a/indices/make_sequence_bloom_tree/id_index.h +++ b/indices/make_sequence_bloom_tree/id_index.h @@ -23,7 +23,7 @@ const char SPAN_ID[] = "span.id"; const char SPAN_ID_BUCKET[] = "span-id"; const char TRACE_ID[] = "trace.id"; const char TRACE_ID_BUCKET[] = "trace-id"; -const int branching_factor = 10; +const int branching_factor = 20; // Leaf struct struct Leaf { From 7a89788ad660ddab8654c1991b2dd4799a48f9f0 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 25 Jan 2023 14:22:28 -0500 Subject: [PATCH 45/49] trace id works --- graph_query_main.cc | 5 +++-- query_conditions.cc | 10 +++++++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/graph_query_main.cc b/graph_query_main.cc index ea99e07..30ba0f7 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -30,17 +30,18 @@ QueryData plain_trace_id_query() { query_condition condition1; condition1.node_index = 0; - condition1.type = int_value; + condition1.type = bytes_value; get_value_func condition_1_union; condition_1_union.bytes_func = &opentelemetry::proto::trace::v1::Span::trace_id; condition1.func = condition_1_union; condition1.node_property_value = "b83b2deb88a6e20424d89985c2bf97b7"; + condition1.comp = Equal_to; query.conditions.push_back(condition1); query.ret.node_index = 0; query.ret.type = bytes_value; get_value_func ret_union; - ret_union.bytes_func = &opentelemetry::proto::trace::v1::Span::span_id; + ret_union.bytes_func = &opentelemetry::proto::trace::v1::Span::trace_id; query.ret.func = ret_union; return query; diff --git a/query_conditions.cc b/query_conditions.cc index d6b6256..e133f83 100644 --- a/query_conditions.cc +++ b/query_conditions.cc @@ -74,9 +74,7 @@ bool does_condition_hold(const ot::Span* sp, const query_condition condition) { } switch (condition.type) { case string_value: { - std::cout << "In string val" << std::endl; const std::string span_value = (sp->*condition.func.string_func)(); - std::cout << "In2 string val" << std::endl; switch (condition.comp) { case Equal_to: return span_value.compare(condition.node_property_value) == 0; @@ -101,7 +99,13 @@ bool does_condition_hold(const ot::Span* sp, const query_condition condition) { } case int_value: { const int span_val = (sp->*condition.func.int_func)(); - const int cond_val = std::stoi(condition.node_property_value); + int cond_val; + try { + cond_val = std::stoi(condition.node_property_value); + } catch (std::invalid_argument) { + std::cerr << "Are you sure this is an int value? " << std::endl; + throw std::invalid_argument("int value was specified, probably not an int value"); + } switch (condition.comp) { case Equal_to: return span_val == cond_val; case Less_than: return span_val < cond_val; From 79dc951382331410635eec4e8688abf8c5e7e367 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 25 Jan 2023 14:26:40 -0500 Subject: [PATCH 46/49] now actually uses bloom index --- graph_query.cc | 2 +- graph_query_main.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/graph_query.cc b/graph_query.cc index 59c730f..17c762b 100644 --- a/graph_query.cc +++ b/graph_query.cc @@ -37,7 +37,7 @@ std::vector query( earliest_last_updated = std::get<1>(indexed); } index_results_futures.push_back(std::async(std::launch::async, get_traces_by_indexed_condition, - start_time, end_time, &conditions[i], i_type, client)); + start_time, end_time, &conditions[i], i_type, client)); } } print_progress(0, "Retrieving indices", verbose); diff --git a/graph_query_main.cc b/graph_query_main.cc index 30ba0f7..8344c12 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -35,6 +35,7 @@ QueryData plain_trace_id_query() { condition_1_union.bytes_func = &opentelemetry::proto::trace::v1::Span::trace_id; condition1.func = condition_1_union; condition1.node_property_value = "b83b2deb88a6e20424d89985c2bf97b7"; + condition1.property_name = "trace-id"; condition1.comp = Equal_to; query.conditions.push_back(condition1); From f190cd8d1aa4f0b0fedb45a07d6dead2d77efb00 Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 25 Jan 2023 14:32:16 -0500 Subject: [PATCH 47/49] all ready for tomorrow --- graph_query_main.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/graph_query_main.cc b/graph_query_main.cc index 8344c12..6271272 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -302,9 +302,6 @@ int main(int argc, char* argv[]) { } else if (q == "height") { data = height_at_least_four(); std::cout << "Running height_at_least_four()" << std::endl; - } else if (q == "trace_id") { - data = plain_trace_id_query(); - std::cout << "Running plain trace ID query" << std::endl; } else if (q == "ob") { data = service_calls_one_other_online_boutique(); std::cout << "Running service_calls_one_other_online_boutique()" << std::endl; @@ -313,7 +310,12 @@ int main(int argc, char* argv[]) { std::vector times(n, 0); for (int i = 0; i < n; i++) { - auto time_taken = perform_query(data, true, 1674666130, 1674666131, &client); + int64_t time_taken; + if (argc > 2 && std::string(argv[2]) == "trace_id") { + time_taken = perform_trace_query("b83b2deb88a6e20424d89985c2bf97b7", 1674666130, 1674666131, &client); + } else { + time_taken = perform_query(data, true, 1674666130, 1674666131, &client); + } std::cout << "Time Taken: " << time_taken << " ms\n" << std::endl; times[i] = time_taken; } From 0668945380f224e35b31780fee199e60906e63fa Mon Sep 17 00:00:00 2001 From: Jessica Berg Date: Wed, 25 Jan 2023 15:30:16 -0500 Subject: [PATCH 48/49] lint --- count/main.cc | 2 +- get_traces_by_structure.cc | 20 ++++++++++++-------- get_traces_by_structure.h | 4 +++- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/count/main.cc b/count/main.cc index bd9b927..f68e764 100644 --- a/count/main.cc +++ b/count/main.cc @@ -3,7 +3,7 @@ int main(int argc, char* argv[]) { auto client = gcs::Client(); - //count_spans_and_traces(&client); + // count_spans_and_traces(&client); const int64_t res = count_objects(&client, true); std::cout << "Total data size " << res << std::endl; const int64_t res2 = count_objects(&client, false); diff --git a/get_traces_by_structure.cc b/get_traces_by_structure.cc index 09f8d19..4a24de8 100644 --- a/get_traces_by_structure.cc +++ b/get_traces_by_structure.cc @@ -20,8 +20,8 @@ StatusOr get_traces_by_structure( for (int64_t i=0; i < data_fulfilling_query->size(); i++) { merge_traces_by_struct(data_fulfilling_query.value()[i], &to_return); - } + stop = boost::posix_time::microsec_clock::local_time(); dur = stop - start; print_update("Time to go through structural filter: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); @@ -51,7 +51,8 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru traces_by_structure ts; StatusOr trace = read_object(bucket_name, object_name, client); if (!trace.ok()) { - std::cout << "could not read trace" << "with bucket name " << bucket_name << "and object name " << object_name << std::endl; + std::cout << "could not read trace" << "with bucket name " << bucket_name + << "and object name " << object_name << std::endl; std::cout << "trace status code " << trace.status().code() << std::endl; return trace.status(); } @@ -65,7 +66,7 @@ StatusOr read_object_and_determine_if_fits_query(trace_stru return empty; } auto root_service_name = get_root_service_name(trace.value()); - start_batches= boost::posix_time::microsec_clock::local_time(); + start_batches = boost::posix_time::microsec_clock::local_time(); for (auto batch_name : all_object_names) { auto status = get_traces_by_structure_data( client, object_name, batch_name, @@ -98,7 +99,8 @@ std::unordered_set get_hashes_for_microservice_with_prefix(std::str if (!hashes) { std::cerr << "problem" << std::endl; std::cerr << "help: status is " << hashes.status() << std::endl; - std::cerr << "when reading from bucket " << hash_by_microservice_bucket_name << "for object " << object_metadata->name() << std::endl; + std::cerr << "when reading from bucket " << hash_by_microservice_bucket_name + << "for object " << object_metadata->name() << std::endl; } for (auto &hash : split_by_string(hashes.value(), newline)) { if (hash != "") { @@ -134,7 +136,8 @@ std::unordered_set get_hashes_for_microservice(std::string microser stop = boost::posix_time::microsec_clock::local_time(); dur = stop-start; - print_update("Time for listing hashes of microservice: " + std::to_string(dur.total_milliseconds()) + "\n", verbose); + print_update("Time for listing hashes of microservice: " + + std::to_string(dur.total_milliseconds()) + "\n", verbose); return to_return; } @@ -189,7 +192,8 @@ std::vector get_potential_prefixes(trace_structure &query_trace, bo return to_return; } -StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, bool verbose, gcs::Client* client) { +StatusOr> filter_data_by_query( + trace_structure &query_trace, time_t start_time, time_t end_time, bool verbose, gcs::Client* client) { std::string list_bucket_name = std::string(LIST_HASHES_BUCKET_PREFIX) + BUCKETS_SUFFIX; boost::posix_time::ptime start, stop, start_batches, start_list_objects; @@ -215,8 +219,8 @@ StatusOr> filter_data_by_query(trace_structure // find the hashes by the microservice names. for (std::string& prefix : bucket_objs) { future_traces_by_struct.push_back(pool.submit(read_object_and_determine_if_fits_query, - std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), start_time, end_time, verbose, client - )); + std::ref(query_trace), std::ref(list_bucket_name), prefix, std::ref(all_object_names), + start_time, end_time, verbose, client)); } /* for (int i=0; i<5; i++) { diff --git a/get_traces_by_structure.h b/get_traces_by_structure.h index 890e416..d04ea9b 100644 --- a/get_traces_by_structure.h +++ b/get_traces_by_structure.h @@ -7,6 +7,7 @@ #include #include #include +#include #include "common.h" const char ASTERISK_SERVICE[] = "NONE"; @@ -152,5 +153,6 @@ Status get_traces_by_structure_data( time_t start_time, time_t end_time, traces_by_structure& to_return ); -StatusOr> filter_data_by_query(trace_structure &query_trace, time_t start_time, time_t end_time, bool verbose, gcs::Client* client); +StatusOr> filter_data_by_query(trace_structure &query_trace, + time_t start_time, time_t end_time, bool verbose, gcs::Client* client); #endif // BY_STRUCT_H_ // NOLINT From 00db9535cc0728afb3933146dbded63f30e13b18 Mon Sep 17 00:00:00 2001 From: jessberg Date: Mon, 30 Jan 2023 21:46:43 +0000 Subject: [PATCH 49/49] folders index test --- common.h | 2 +- graph_query.cc | 3 +- graph_query_main.cc | 38 +++++++++++++++++++-- indices/make_folders_index/folders_index.cc | 13 ++++--- 4 files changed, 48 insertions(+), 8 deletions(-) diff --git a/common.h b/common.h index ed8d806..3bde845 100644 --- a/common.h +++ b/common.h @@ -30,7 +30,7 @@ const char BUCKET_TYPE_LABEL_VALUE_FOR_SPAN_BUCKETS[] = "microservice"; const char PROJECT_ID[] = "dynamic-tracing"; const char BUCKETS_LOCATION[] = "us-central1"; -const char BUCKETS_SUFFIX[] = "-snicket-half-hour"; +const char BUCKETS_SUFFIX[] = "-quest-evaluate-indices"; const char TRACE_STRUCT_BUCKET_PREFIX[] = "dyntraces"; const char TRACE_HASHES_BUCKET_PREFIX[] = "tracehashes"; diff --git a/graph_query.cc b/graph_query.cc index 17c762b..9257d8b 100644 --- a/graph_query.cc +++ b/graph_query.cc @@ -50,6 +50,7 @@ std::vector query( std::cerr << "yooo" << std::endl; std::cerr << res.status().message() << std::endl; } else { + std::cout << "index results size is " << res.value().size() << std::endl; index_results.push_back(res.value()); } print_progress((i+1.0)/(index_results_futures.size()+1.0), "Retrieving indices", verbose); @@ -228,7 +229,7 @@ StatusOr> is_indexed(const query_condition *condi if (kv.first == "bucket_type") { if (kv.second == "bloom_index") { bloom_index = true; - } else if (kv.first == "folder_index") { + } else if (kv.second == "folder_index") { folder_index = true; } } diff --git a/graph_query_main.cc b/graph_query_main.cc index 6271272..0fd9df5 100644 --- a/graph_query_main.cc +++ b/graph_query_main.cc @@ -145,6 +145,37 @@ QueryData service_calls_one_other_online_boutique() { return query; } +QueryData use_folders_index() { + QueryData query; + query.graph.num_nodes = 2; + query.graph.node_names.insert(std::make_pair(0, "OryxGreenSmoke")); + query.graph.node_names.insert(std::make_pair(1, "WolfTowerGray")); + + query.graph.edges.insert(std::make_pair(0, 1)); + + query_condition condition1; + condition1.node_index = 0; + condition1.type = string_value; + get_value_func condition_1_union; + condition1.func = condition_1_union; + condition1.node_property_value = "501"; + condition1.comp = Equal_to; + condition1.property_name = "http.status_code"; + condition1.is_latency_condition = false; + condition1.is_attribute_condition = true; + + query.conditions.push_back(condition1); + + query.ret.node_index = 0; + query.ret.type = bytes_value; + get_value_func ret_union; + ret_union.bytes_func = &opentelemetry::proto::trace::v1::Span::trace_id; + query.ret.func = ret_union; + + return query; + +} + // done QueryData duration_condition() { QueryData query; @@ -305,7 +336,10 @@ int main(int argc, char* argv[]) { } else if (q == "ob") { data = service_calls_one_other_online_boutique(); std::cout << "Running service_calls_one_other_online_boutique()" << std::endl; - } + } else if (q == "folders_index") { + data = use_folders_index(); + std::cout << "running use_folders_index()" << std::endl; + } } std::vector times(n, 0); @@ -314,7 +348,7 @@ int main(int argc, char* argv[]) { if (argc > 2 && std::string(argv[2]) == "trace_id") { time_taken = perform_trace_query("b83b2deb88a6e20424d89985c2bf97b7", 1674666130, 1674666131, &client); } else { - time_taken = perform_query(data, true, 1674666130, 1674666131, &client); + time_taken = perform_query(data, false, 1670864144, 1670864145, &client); } std::cout << "Time Taken: " << time_taken << " ms\n" << std::endl; times[i] = time_taken; diff --git a/indices/make_folders_index/folders_index.cc b/indices/make_folders_index/folders_index.cc index 3c00589..91bfc0a 100644 --- a/indices/make_folders_index/folders_index.cc +++ b/indices/make_folders_index/folders_index.cc @@ -10,7 +10,6 @@ int update_index(gcs::Client* client, time_t last_updated, std::string indexed_a std::vector trace_struct_object_names = get_all_object_names( std::string(TRACE_STRUCT_BUCKET_PREFIX) + std::string(BUCKETS_SUFFIX), client); trace_struct_object_names = sort_object_names_on_start_time(trace_struct_object_names); - int thread_pool_size = 500; for (uint64_t i=0; i < trace_struct_object_names.size(); i=i+thread_pool_size) { update_index_batched(client, last_updated, indexed_attribute, span_buckets_names, @@ -170,13 +169,19 @@ std::unordered_map> calculate_attr_to_trac std::string span_bucket_name, std::string object_name, std::string indexed_attribute, gcs::Client* client ) { std::unordered_map> response; // attr_val_to_vec_of_traceids - std::string raw_span_bucket_obj_content = read_object(span_bucket_name, object_name, client).value(); - if (raw_span_bucket_obj_content.length() < 1) { + StatusOr raw_span_bucket_obj_content = read_object(span_bucket_name, object_name, client); + if (!raw_span_bucket_obj_content.ok()) { + if (raw_span_bucket_obj_content.status().code() == ::google::cloud::StatusCode::kNotFound) { + return response; + } + return response; + } + if (raw_span_bucket_obj_content->length() < 1) { return response; } opentelemetry::proto::trace::v1::TracesData trace_data; - bool ret = trace_data.ParseFromString(raw_span_bucket_obj_content); + bool ret = trace_data.ParseFromString(raw_span_bucket_obj_content.value()); if (false == ret) { std::cerr << "Error in calculate_attr_to_trace_ids_map:ParseFromString" << std::endl; exit(1);