summaryrefslogtreecommitdiff
path: root/test/test_merge.cpp
diff options
context:
space:
mode:
authorchenzizhan <[email protected]>2023-07-21 12:08:01 +0800
committerchenzizhan <[email protected]>2023-07-21 12:08:01 +0800
commit12a06689d55893231fd754357fb93f2f1b7af22a (patch)
tree41dd50052dcd044295aafe2e9a0fac082334417f /test/test_merge.cpp
parentd3d3333f0bbe4fbf4684048078901c1627ef701e (diff)
fix a bug
Diffstat (limited to 'test/test_merge.cpp')
-rw-r--r--test/test_merge.cpp90
1 files changed, 46 insertions, 44 deletions
diff --git a/test/test_merge.cpp b/test/test_merge.cpp
index 39bfc32..708d298 100644
--- a/test/test_merge.cpp
+++ b/test/test_merge.cpp
@@ -387,51 +387,53 @@ TEST(unit_test_merge, new_too_many_cells_on_multiple_metric_given_source_cube_re
fieldstat_free(instance_dest);
}
-// TEST(unit_test_merge, performance_test_when_comprehensive_sampling)
-// {
-// const int INSTANCE_NUM = 100;
-// const int MAX_CELL_NUM = 65536;
-// const int DIMENSION_TOTAL = 100000;
-// Fieldstat_tag_list_wrapper *tags[DIMENSION_TOTAL];
-// for (int i = 0; i < DIMENSION_TOTAL; i++)
-// {
-// tags[i] = new Fieldstat_tag_list_wrapper("my key", i);
-// }
-
-// struct fieldstat *instances[INSTANCE_NUM];
-// for (int i = 0; i < INSTANCE_NUM; i++) {
-// // printf("procing %d\n", i);
-// struct fieldstat *tmp_i = fieldstat_new();
-// int cube_id = fieldstat_register_cube(tmp_i, &TEST_SHARED_TAG, 1, SAMPLING_MODE_COMPREHENSIVE, MAX_CELL_NUM);
-// int metric_id = fieldstat_register_counter(tmp_i, cube_id, "metric name", false);
-// for (int j = 0; j < MAX_CELL_NUM; j++) {
-// int cell_id = fieldstat_cube_add(tmp_i, cube_id, tags[rand() % DIMENSION_TOTAL]->get_tag(), 1, 1);
-
-// fieldstat_counter_incrby(tmp_i, cube_id, metric_id, cell_id, 1);
-// }
-// instances[i] = tmp_i;
-// }
+TEST(unit_test_merge, performance_test_when_comprehensive_sampling)
+{
+ const int INSTANCE_NUM = 100;
+ const int MAX_CELL_NUM = 65536;
+ const int DIMENSION_TOTAL = 100000;
+ Fieldstat_tag_list_wrapper *tags[DIMENSION_TOTAL];
+ for (int i = 0; i < DIMENSION_TOTAL; i++)
+ {
+ tags[i] = new Fieldstat_tag_list_wrapper("my key", i);
+ }
+
+ struct fieldstat *instances[INSTANCE_NUM];
+ for (int i = 0; i < INSTANCE_NUM; i++) {
+ // printf("procing %d\n", i);
+ struct fieldstat *tmp_i = fieldstat_new();
+ int cube_id = fieldstat_register_cube(tmp_i, &TEST_SHARED_TAG, 1, SAMPLING_MODE_COMPREHENSIVE, MAX_CELL_NUM);
+ int metric_id = fieldstat_register_counter(tmp_i, cube_id, "metric name", false);
+ for (int j = 0; j < MAX_CELL_NUM; j++) {
+ int cell_id = fieldstat_cube_add(tmp_i, cube_id, tags[rand() % DIMENSION_TOTAL]->get_tag(), 1, 1);
+
+ fieldstat_counter_incrby(tmp_i, cube_id, metric_id, cell_id, 1);
+ }
+ instances[i] = tmp_i;
+ }
-// struct fieldstat *instance_dest = fieldstat_new();
-
-// clock_t start = clock();
-// for (int i = 0; i < INSTANCE_NUM; i++) {
-// fieldstat_merge(instance_dest, instances[i]);
-// }
-// clock_t end = clock();
-
-// double elapsed_secs = double(end - start) / CLOCKS_PER_SEC;
-// printf("performance_test_when_comprehensive_sampling elapsed_secs: %f\n", elapsed_secs);
-// EXPECT_TRUE(elapsed_secs < 0.2); // fixme: approximately around 100 cube(templates), 10 metrics. So 0.005s finish it.
-
-// fieldstat_free(instance_dest);
-// for (int i = 0; i < INSTANCE_NUM; i++) {
-// fieldstat_free(instances[i]);
-// }
-// for (int i = 0; i < DIMENSION_TOTAL; i++) {
-// delete tags[i];
-// }
-// }
+ struct fieldstat *instance_dest = fieldstat_new();
+
+ getchar();
+ clock_t start = clock();
+ for (int i = 0; i < INSTANCE_NUM; i++) {
+ fieldstat_merge(instance_dest, instances[i]);
+ }
+ clock_t end = clock();
+ exit(0);
+
+ double elapsed_secs = double(end - start) / CLOCKS_PER_SEC;
+ printf("performance_test_when_comprehensive_sampling elapsed_secs: %f\n", elapsed_secs);
+ EXPECT_TRUE(elapsed_secs < 0.2); // fixme: approximately around 100 cube(templates), 10 metrics. So 0.005s finish it.
+
+ fieldstat_free(instance_dest);
+ for (int i = 0; i < INSTANCE_NUM; i++) {
+ fieldstat_free(instances[i]);
+ }
+ for (int i = 0; i < DIMENSION_TOTAL; i++) {
+ delete tags[i];
+ }
+}
// TEST(unit_test_merge, performance_test_when_topk_sampling){