This is an automated email from the ASF dual-hosted git repository. wangbo pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from 2299dde53ab [regression-test](case) fix test_bloom_filter_hit.groovy (#47057) add 86e99939b39 [feat](profile) Make profile level work on BE (#47070) No new revisions were added by this update. Summary of changes: be/src/pipeline/exec/scan_operator.cpp | 2 - be/src/pipeline/exec/scan_operator.h | 2 - be/src/pipeline/pipeline_fragment_context.cpp | 10 +- be/src/runtime/runtime_state.cpp | 2 + be/src/runtime/runtime_state.h | 6 + be/src/util/runtime_profile.cpp | 153 +++------ be/src/util/runtime_profile.h | 202 +++--------- be/src/util/runtime_profile_counter_tree_node.cpp | 110 +++++++ be/src/util/runtime_profile_counter_tree_node.h | 64 ++++ be/test/CMakeLists.txt | 1 - .../runtime_profile_counter_tree_node_test.cpp | 282 +++++++++++++++++ .../util/runtime_profile_profile_level_test.cpp | 258 ++++++++++++++++ be/test/util/runtime_profile_test.cpp | 343 +++++++++------------ .../doris/common/profile/ExecutionProfile.java | 11 + .../org/apache/doris/common/profile/Profile.java | 10 +- .../doris/common/profile/RuntimeProfile.java | 34 +- .../apache/doris/load/loadv2/BrokerLoadJob.java | 2 +- .../org/apache/doris/load/loadv2/BulkLoadJob.java | 2 +- .../main/java/org/apache/doris/qe/Coordinator.java | 6 + .../org/apache/doris/qe/CoordinatorContext.java | 1 + .../java/org/apache/doris/qe/SessionVariable.java | 1 + gensrc/thrift/PaloInternalService.thrift | 2 + gensrc/thrift/RuntimeProfile.thrift | 1 + .../bloom_filter_p0/test_bloom_filter_hit.groovy | 1 + ...est_bloom_filter_hit_with_renamed_column.groovy | 2 + .../test_arrayInvertedIdx_profile.groovy | 1 + ...ptive_pipeline_task_serial_read_on_limit.groovy | 1 + .../query_profile/s3_load_profile_test.groovy | 6 +- .../suites/query_profile/scanner_profile.groovy | 1 + .../suites/query_profile/test_profile.groovy | 1 + 30 files changed, 1034 insertions(+), 484 deletions(-) create mode 100644 be/src/util/runtime_profile_counter_tree_node.cpp create mode 100644 be/src/util/runtime_profile_counter_tree_node.h create mode 100644 be/test/util/runtime_profile_counter_tree_node_test.cpp create mode 100644 be/test/util/runtime_profile_profile_level_test.cpp --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org