This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a change to branch auto-pick-64454-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard c37134b8c48 Merge branch 'branch-4.1' into auto-pick-64454-branch-4.1
 discard ee73fbe6b86 [feature](be) Add BE stack trace HTTP API (#64454)
     add e8485a4e9a0 branch-4.1: [chore](dep) Upgrade dependencies (#65077)
     add 7daeefb7811 branch-4.1: [fix](case) Stabilize max compute schema 
metadata case checks. #64959 (#65081)
     add 4da71da27e0 branch-4.1: [fix](regression) stabilize multi leading 
scalar predicate #65045 (#65120)
     add f2f17bfc014 [branch-4.1](regression) remove unstable variant array 
profile case (#65123)
     add 2a62243c343 [fix](be) Avoid local runtime filter merge deadlock 
(#65102)
     add 765044e29ca branch-4.1:   [fix](column) avoid mutable nullable crc32c 
hashing #64944 (#65088)
     add 61322e43c63 branch-4.1: [fix](group commit) fix can not get a block 
queue #63722 (#65078)
     add 6f42e344d14 branch-4.1: [fix](be) Validate task executor scan handles 
#65054 (#65074)
     add 1e9ef832537 branch-4.1: [fix](nereids) partition topn opt requires 
chosen window func partition key to be a subset of co-located ones (#65073)
     add e893c81a493 branch-4.1: [test](docker) improve the prefix path of 
cloud mode docker env #65001 (#65091)
     add 635263a0b80 branch-4.1: [fix](test) Stabilize 
test_sql_block_rule_status BLOCKS assertion (#65075)
     add 37b4b4c5a6c branch-4.1: [fix](be) Continue sorted merge when sender 
queue is ready #65004 (#65106)
     add 56c3abf311b branch-4.1: [fix](simplify agg) SimplifyAggGroupBy should 
verify injectivity #64335 (#65109)
     add 16a4d1edcc7 branch-4.1: [fix](regression) skip temp table status check 
#65090 (#65119)
     add 56ca08ec03d branch-4.1: [feature](workload) Support remote scan bytes 
breaker in workload policy #64649 (#65064)
     add 5a24c88cbc2 [feature](be) Add BE stack trace HTTP API (#64454)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c37134b8c48)
            \
             N -- N -- N   refs/heads/auto-pick-64454-branch-4.1 (5a24c88cbc2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 be/src/common/config.cpp                           |   3 +
 be/src/common/config.h                             |   2 +
 be/src/core/column/column.h                        |  10 +
 be/src/core/column/column_decimal.cpp              |  10 +
 be/src/core/column/column_decimal.h                |   3 +
 be/src/core/column/column_nullable.cpp             |  20 +-
 be/src/core/column/column_vector.cpp               |  23 +-
 be/src/core/column/column_vector.h                 |   4 +
 be/src/exec/exchange/vdata_stream_recvr.cpp        |  12 +-
 be/src/exec/exchange/vdata_stream_recvr.h          |   2 +
 .../operator/group_commit_block_sink_operator.cpp  |  37 +--
 be/src/exec/runtime_filter/runtime_filter_merger.h |  27 +-
 be/src/exec/runtime_filter/runtime_filter_mgr.cpp  | 141 +++++----
 be/src/exec/runtime_filter/runtime_filter_mgr.h    |  35 ++-
 .../runtime_filter/runtime_filter_producer.cpp     |  42 +--
 be/src/exec/scan/scanner_scheduler.h               |  22 +-
 .../time_sharing/time_sharing_task_executor.cpp    |  28 +-
 be/src/exec/sort/sort_cursor.h                     |  22 +-
 be/src/exec/sort/vsorted_run_merger.cpp            |  34 ++-
 be/src/exec/sort/vsorted_run_merger.h              |   8 +-
 be/src/load/group_commit/group_commit_mgr.cpp      | 329 +++++++++++++++++----
 be/src/load/group_commit/group_commit_mgr.h        |  41 ++-
 be/src/load/group_commit/wal/wal_table.cpp         |  11 +-
 be/src/runtime/runtime_state.cpp                   |   2 +-
 .../workload_management/workload_condition.cpp     |  15 +-
 .../workload_management/workload_condition.h       |  33 ++-
 .../workload_management/workload_sched_policy.cpp  |   6 +
 be/test/core/column/column_nullable_test.cpp       | 222 ++++++++++++++
 be/test/core/value/sort_merger_test.cpp            | 201 ++++++++++++-
 .../time_sharing_task_executor_test.cpp            |  57 ++++
 .../runtime_filter/runtime_filter_merger_test.cpp  |  26 +-
 .../runtime_filter/runtime_filter_mgr_test.cpp     |  33 ++-
 be/test/runtime/workload_sched_policy_test.cpp     |  34 ++-
 docker/runtime/doris-compose/cluster.py            |   3 +
 fe/be-java-extensions/java-common/pom.xml          |   5 -
 fe/be-java-extensions/preload-extensions/pom.xml   |   5 -
 .../nereids/rules/rewrite/SimplifyAggGroupBy.java  |  57 +++-
 .../nereids/trees/plans/logical/LogicalWindow.java |  17 +-
 .../apache/doris/nereids/util/ExpressionUtils.java |  36 ---
 .../workloadschedpolicy/WorkloadCondition.java     |   3 +
 ...loadConditionBeScanBytesFromRemoteStorage.java} |  28 +-
 .../workloadschedpolicy/WorkloadMetricType.java    |   3 +-
 .../WorkloadSchedPolicyMgr.java                    |   7 +-
 .../GeneratePartitionTopnFromWindowTest.java       | 107 +++++++
 .../rules/rewrite/SimplifyAggGroupByTest.java      | 240 +++++++++++++++
 .../WorkloadSchedPolicyMgrTest.java                |  46 +++
 fe/hive-udf/pom.xml                                |  14 +
 fe/pom.xml                                         |  49 ++-
 gensrc/thrift/BackendService.thrift                |   4 +-
 .../maxcompute/test_max_compute_schema.out         |  51 +++-
 .../data/nereids_p0/hint/multi_leading.out         |   2 +-
 .../partition_topn/check_partitionkey.out          |  19 ++
 .../test_array_inverted_index_profile.out          |  45 ---
 .../main/java/org/apache/doris/udf/StringTest.java |   2 +-
 .../test_workload_policy_remote_scan_bytes.groovy  | 143 +++++++++
 .../maxcompute/test_max_compute_schema.groovy      |  35 ++-
 .../group_commit/test_group_commit_error.groovy    |  46 ++-
 ...ommit_stream_load_high_concurrency_async.groovy | 138 +++++++++
 .../suites/nereids_p0/hint/multi_leading.groovy    |   2 +-
 .../partition_topn/check_partitionkey.groovy       | 160 ++++++++++
 .../push_down_multi_filter_through_window.groovy   |  57 ++--
 .../schema_table/test_sql_block_rule_status.groovy |  14 +-
 .../suites/temp_table_p0/test_temp_table.groovy    |  16 +-
 .../test_array_inverted_index_profile.groovy       | 166 -----------
 64 files changed, 2399 insertions(+), 616 deletions(-)
 copy 
fe/fe-core/src/main/java/org/apache/doris/resource/workloadschedpolicy/{WorkloadConditionQueryBeMemory.java
 => WorkloadConditionBeScanBytesFromRemoteStorage.java} (64%)
 create mode 100644 
regression-test/data/nereids_p0/partition_topn/check_partitionkey.out
 delete mode 100644 
regression-test/data/variant_p0/with_index/test_array_inverted_index_profile.out
 create mode 100644 
regression-test/suites/external_table_p0/hive/test_workload_policy_remote_scan_bytes.groovy
 create mode 100644 
regression-test/suites/load_p0/stream_load/test_group_commit_stream_load_high_concurrency_async.groovy
 create mode 100644 
regression-test/suites/nereids_p0/partition_topn/check_partitionkey.groovy
 delete mode 100644 
regression-test/suites/variant_p0/with_index/test_array_inverted_index_profile.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to