This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from 171f374f56 [improvement](invert index) Change the loading method of keyword type (#21893) add d180ed418d [fix](stacktrace) Speed up stack trace (#21755) No new revisions were added by this update. Summary of changes: be/CMakeLists.txt | 20 + be/src/common/config.cpp | 2 + be/src/common/config.h | 3 + be/src/common/dwarf.cpp | 2035 ++++++++++++++++++++++++++++++++++++++ be/src/common/dwarf.h | 479 +++++++++ be/src/common/elf.cpp | 243 +++++ be/src/common/elf.h | 95 ++ be/src/common/memory_sanitizer.h | 50 + be/src/common/multi_version.h | 66 ++ be/src/common/phdr_cache.cpp | 147 +++ be/src/common/phdr_cache.h | 40 + be/src/common/stack_trace.cpp | 455 +++++++++ be/src/common/stack_trace.h | 97 ++ be/src/common/status.h | 2 +- be/src/common/symbol_index.cpp | 559 +++++++++++ be/src/common/symbol_index.h | 114 +++ be/src/service/doris_main.cpp | 5 + be/src/util/defer_op.h | 2 +- be/src/util/stack_util.cpp | 59 +- be/src/util/stack_util.h | 33 +- build.sh | 10 + run-be-ut.sh | 9 + 22 files changed, 4516 insertions(+), 9 deletions(-) create mode 100644 be/src/common/dwarf.cpp create mode 100644 be/src/common/dwarf.h create mode 100644 be/src/common/elf.cpp create mode 100644 be/src/common/elf.h create mode 100644 be/src/common/memory_sanitizer.h create mode 100644 be/src/common/multi_version.h create mode 100644 be/src/common/phdr_cache.cpp create mode 100644 be/src/common/phdr_cache.h create mode 100644 be/src/common/stack_trace.cpp create mode 100644 be/src/common/stack_trace.h create mode 100644 be/src/common/symbol_index.cpp create mode 100644 be/src/common/symbol_index.h --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org