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

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


 discard 6e3d9c46122 [fix](topn) Skip TopN lazy materialization when 
light_schema_change=false (#64441)
     add 95f0eb79be1 [fix](regression) keep variant_doc_mode_p2 load in the p2 
group with its queries (#64533)
     add e8936f5a4e1 branch-4.1: [opt](memory) add BE-level cache for load 
tablet schemas (#64582)
     add 74270232a31 branch-4.1: [fix](test) fix regression test 
eliminate_inner #64457 (#64589)
     add cd2f2014e24 branch-4.1: [fix](regression) fix regression 
test_hive_ctas_to_doris failure #64553 (#64587)
     add 3f661b41136 branch-4.1: [fix](cloud) Reset FDB test globals before 
exit #64549 (#64576)
     add 9cdb5db2761 branch-4.1: [fix](cloud) Fix some docker case due to open 
skip_writing_empty_rowset_metadata #64565 (#64595)
     add e99be9f98ba [improvement](fe) Add virtual compute group switch metric 
#63036 (#64386)
     add aa564ea61dd [feature](ann-index) Add ann topn small candidate fallback 
session va… (#64555)
     add 79165cac0ac branch-4.1: [fix](test) stabilize Cloud-P0 flaky cases 
(test-only backport subset of #64525) (#64597)
     add abe2a989736 branch-4.1: [test](ann) move ann index-only-scan to 
deterministic debug-point tests (backport subset of #64525) (#64603)
     add 009fb2287cc branch-4.1: [fix](test) skip test_temp_table (temp table 
feature no longer maintained, backport of #64525) (#64607)
     add cd9b7c36ade branch-4.1: [fix](regression) Stabilize variant hirachinal 
array output #63610 (#63650)
     add 545c56a1d69 branch-4.1: [fix](stream_load) Fix stream load IPv6 host 
parsing #64147 (#64609)
     add c44b91a9fe1 [fix](topn) Skip TopN lazy materialization when 
light_schema_change=false (#64441)

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   (6e3d9c46122)
            \
             N -- N -- N   refs/heads/auto-pick-64441-branch-4.1 (c44b91a9fe1)

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/exec/operator/olap_scan_operator.cpp        |   8 +
 be/src/exec/operator/olap_scan_operator.h          |   4 +
 be/src/exec/scan/olap_scanner.cpp                  |   8 +
 be/src/exec/scan/vector_search_user_params.cpp     |  24 +-
 be/src/exec/scan/vector_search_user_params.h       |   7 +
 be/src/exprs/vectorized_fn_call.cpp                |  17 +-
 be/src/exprs/vectorized_fn_call.h                  |   3 +-
 be/src/exprs/vexpr.cpp                             |   2 +-
 be/src/exprs/vexpr.h                               |   4 +-
 be/src/exprs/vexpr_context.cpp                     |   6 +-
 be/src/exprs/vexpr_context.h                       |   4 +-
 be/src/exprs/virtual_slot_ref.cpp                  |   8 +-
 be/src/exprs/virtual_slot_ref.h                    |   3 +-
 be/src/load/delta_writer/delta_writer_v2.cpp       |  42 +-
 be/src/runtime/runtime_state.h                     |   8 +
 be/src/storage/index/ann/ann_search_params.h       |  12 +-
 be/src/storage/index/ann/ann_topn_runtime.h        |   2 +
 be/src/storage/olap_common.h                       |   4 +
 be/src/storage/rowset_builder.cpp                  |  45 ++-
 be/src/storage/segment/segment_iterator.cpp        |  20 +-
 be/src/storage/tablet/tablet_schema_cache.cpp      |  88 ++++
 be/src/storage/tablet/tablet_schema_cache.h        |  17 +
 be/src/storage/tablet_info.h                       |   2 +-
 .../storage/index/ann/ann_index_edge_case_test.cpp |  60 +++
 .../storage/index/ann/ann_range_search_test.cpp    |  27 +-
 .../storage/tablet/tablet_schema_cache_test.cpp    | 125 ++++++
 cloud/test/fdb_injection_test.cpp                  |   2 +
 cloud/test/mem_txn_kv_test.cpp                     |   8 +-
 cloud/test/txn_kv_test.cpp                         |   7 +-
 cloud/test/txn_lazy_commit_test.cpp                |   8 +-
 docker/runtime/doris-compose/Dockerfile            |   1 +
 .../doris/cloud/system/CloudSystemInfoService.java |   3 +
 .../org/apache/doris/httpv2/rest/LoadAction.java   |  31 +-
 .../java/org/apache/doris/metric/CloudMetrics.java |   5 +
 .../java/org/apache/doris/metric/MetricRepo.java   |  39 ++
 .../java/org/apache/doris/qe/SessionVariable.java  |  38 ++
 .../cloud/system/CloudSystemInfoServiceTest.java   |  66 +++
 .../apache/doris/httpv2/rest/LoadActionTest.java   |  71 ++++
 .../java/org/apache/doris/metric/MetricsTest.java  |  36 ++
 gensrc/thrift/PaloInternalService.thrift           |   5 +
 .../data/ann_index_p0/ann_index_only_scan.out      |  19 -
 .../variant_p0/predefine/variant_hirachinal.out    |   2 +-
 .../suites/ann_index_p0/ann_index_only_scan.groovy | 450 ---------------------
 ...ann_index_only_scan_compound_debug_point.groovy | 158 ++++++++
 .../ann_index_only_scan_debug_point.groovy         | 237 +++++++++++
 .../ann_index_only_scan_distance_expr.groovy       | 207 ----------
 .../ann_index_only_scan_expr_debug_point.groovy    | 104 +++++
 .../ann_index_only_scan_metric_direction.groovy    | 229 -----------
 .../ann_range_search_pushdown_regression.groovy    |   1 -
 ...ge_search_source_index_status_regression.groovy |   1 -
 .../ann_topn_small_candidate_fallback.groovy       | 231 +++++++++++
 ...est_balance_use_compute_group_properties.groovy |   1 +
 .../cloud_p0/balance/test_balance_warm_up.groovy   |   1 +
 .../test_balance_warm_up_sync_global_config.groovy |   1 +
 .../test_balance_warm_up_task_abnormal.groovy      |   1 +
 .../test_balance_warm_up_use_peer_cache.groovy     |   1 +
 .../balance/test_peer_read_async_warmup.groovy     |   1 +
 .../hive/write/test_hive_ctas_to_doris.groovy      |   2 +
 .../nereids_rules_p0/pkfk/eliminate_inner.groovy   |   1 +
 .../prune_bucket_with_bucket_shuffle_join.groovy   |   4 +
 ...ptive_pipeline_task_serial_read_on_limit.groovy |  41 +-
 .../suites/query_profile/scanner_profile.groovy    |  30 +-
 .../suites/temp_table_p0/test_temp_table.groovy    |  34 +-
 .../suites/variant_doc_mode_p2/load.groovy         |   2 +-
 .../variant_p0/predefine/variant_hirachinal.groovy |   8 +-
 65 files changed, 1605 insertions(+), 1032 deletions(-)
 create mode 100644 be/test/storage/tablet/tablet_schema_cache_test.cpp
 delete mode 100644 regression-test/data/ann_index_p0/ann_index_only_scan.out
 delete mode 100644 
regression-test/suites/ann_index_p0/ann_index_only_scan.groovy
 create mode 100644 
regression-test/suites/ann_index_p0/ann_index_only_scan_compound_debug_point.groovy
 create mode 100644 
regression-test/suites/ann_index_p0/ann_index_only_scan_debug_point.groovy
 delete mode 100644 
regression-test/suites/ann_index_p0/ann_index_only_scan_distance_expr.groovy
 create mode 100644 
regression-test/suites/ann_index_p0/ann_index_only_scan_expr_debug_point.groovy
 delete mode 100644 
regression-test/suites/ann_index_p0/ann_index_only_scan_metric_direction.groovy
 create mode 100644 
regression-test/suites/ann_index_p0/ann_topn_small_candidate_fallback.groovy


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

Reply via email to