This is an automated email from the ASF dual-hosted git repository. lichaoyong pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.
from 43583e7 Fix orc load bug (#2912) add f20eb12 [util] Import ThreadPool and Thread from KUDU (#2915) No new revisions were added by this update. Summary of changes: be/src/common/status.h | 29 +- be/src/util/CMakeLists.txt | 2 + be/src/util/barrier.h | 70 +++ be/src/util/question | 3 + be/src/util/thread.cpp | 387 +++++++++++++++++ be/src/util/thread.h | 270 ++++++++++++ be/src/util/threadpool.cpp | 620 ++++++++++++++++++++++++++ be/src/util/threadpool.h | 451 +++++++++++++++++++ be/test/util/CMakeLists.txt | 3 + be/test/util/countdown_latch_test.cpp | 12 +- be/test/util/thread_test.cpp | 126 ++++++ be/test/util/threadpool_test.cpp | 796 ++++++++++++++++++++++++++++++++++ run-ut.sh | 3 + 13 files changed, 2764 insertions(+), 8 deletions(-) create mode 100644 be/src/util/barrier.h create mode 100644 be/src/util/question create mode 100644 be/src/util/thread.cpp create mode 100644 be/src/util/thread.h create mode 100644 be/src/util/threadpool.cpp create mode 100644 be/src/util/threadpool.h create mode 100644 be/test/util/thread_test.cpp create mode 100644 be/test/util/threadpool_test.cpp --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org