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

dataroaring pushed a change to branch auto-pick-48700-branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 65267f582ea [fix](be/recycler) Fix S3RateLimiter bvar 
`rate_limit_exceed_req_num` incorrectly
     add b1175bcb6ad branch-3.0: [fix](test) Remove unnecessary checks for sp 
test #48611 (#48726)
     add d5962b3e7c3 branch-3.0: [Fix](case) Fix case 
`test_partial_update_with_delete_col_in_publish` #48632 (#48662)
     add c0813750722 branch-3.0: [fix](binlog) Set dummy timestamp correctly 
#48706 (#48754)
     add 082afd515b5 branch-3.0: [Fix](case) Fix 
`test_skip_calc_between_segments` when `force_olap_table_replication_num=3` 
#48519 (#48645)
     add ad551b0e3a6 branch-3.0: [fix](s3) support chinacloudapi endpoint for 
azure #47703 (#48642)
     add 72445f727ef branch-3.0: [enhance](mtmv)insert overwrite of mtmv force 
drop partition #48074 (#48627)
     add 957a4de9a88 branch-3.0: [improve](routine load) add more metrics to 
observe the routine load job #48209 (#48764)
     add 167f6f5eec6 branch-3.0: [improvement](thrift) Limit max cached client 
size for BE thrift connection to master FE. #43973 (#48501)
     add 5eaca71f308 branch-3.0: [fix](load) Fix import failure when the stream 
load parameter specifies Transfer-Encoding:chunked #48196 (#48474)
     add 6ec0bc9c7eb branch-3.0: [chore](binlog) add ingesting/downloading 
binlog latency metrics #48599 (#48648)
     add 7cd2af0f9cd branch-3.0: [fix](log) Fix s3_rate_limiter.cpp LOG 
incomplete #48440 (#48643)
     add 24821f5a8aa branch-3.0: [improve](load) improve error message "unknown 
load_id" #47509 (#48638)
     add ad3f8d15dd4 branch-3.0: [fix](function) Percentil  func core when 
percent args  is non nullable negative number #48563 (#48605)
     add bac11096148 branch-3.0: [chore](binlog) Save tablet delta rows in 
UpsertRecord #48550 (#48649)
     add 3f6a7019101 branch-3.0: [improve](cloud)(transaction) do not execute 
afterVisible if commit transaction fail in cloud mode #48576 (#48774)
     add 3e2709eb54b [fix](group commit)Fix wal manager ut (#48882)
     add 1eadb71e238 branch-3.0: [fix](binlog) avoid adding acqurie_md5 param 
when enable_download_md5… #48573 (#48583)
     add 5cbe25723fa [fix](be/recycler) Fix S3RateLimiter bvar 
`rate_limit_exceed_req_num` incorrectly

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   (65267f582ea)
            \
             N -- N -- N   refs/heads/auto-pick-48700-branch-3.0 (5cbe25723fa)

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/agent/utils.cpp                             |  13 +-
 be/src/agent/utils.h                               |   2 +
 be/src/common/config.cpp                           |   4 +
 be/src/common/config.h                             |   4 +
 be/src/http/action/download_binlog_action.cpp      |  13 +
 be/src/http/action/stream_load.cpp                 |   1 +
 be/src/io/fs/azure_obj_storage_client.cpp          |  14 +-
 be/src/io/fs/stream_load_pipe.h                    |  10 +
 be/src/runtime/exec_env.h                          |   3 +-
 be/src/runtime/exec_env_init.cpp                   |   9 +
 be/src/runtime/load_channel_mgr.cpp                |   6 +-
 be/src/runtime/routine_load/data_consumer.cpp      |   6 +
 be/src/service/backend_service.cpp                 |  27 +-
 be/src/util/doris_metrics.cpp                      |  10 +
 be/src/util/doris_metrics.h                        |   5 +
 be/src/util/s3_util.cpp                            |  11 +-
 be/src/util/stopwatch.hpp                          |   6 +
 .../aggregate_function_percentile.h                |   1 +
 be/src/vec/exec/format/json/new_json_reader.cpp    |  51 ++-
 be/src/vec/exec/format/json/new_json_reader.h      |   4 +
 be/test/http/stream_load_test.cpp                  |   7 +-
 be/test/olap/wal/wal_manager_test.cpp              | 453 ++++++++++++++++-----
 be/test/vec/exec/vwal_scanner_test.cpp             | 379 -----------------
 cloud/src/common/config.h                          |   2 +
 cloud/src/recycler/s3_accessor.cpp                 |  10 +-
 common/cpp/s3_rate_limiter.cpp                     |   2 +-
 .../main/java/org/apache/doris/common/Config.java  |   9 +
 .../java/org/apache/doris/binlog/BinlogUtils.java  |   3 +-
 .../java/org/apache/doris/binlog/DBBinlog.java     |   1 +
 .../java/org/apache/doris/binlog/TableBinlog.java  |   1 +
 .../java/org/apache/doris/binlog/UpsertRecord.java |  17 +-
 .../apache/doris/cloud/storage/AzureRemote.java    |  15 +-
 .../transaction/CloudGlobalTransactionMgr.java     |   5 +-
 .../apache/doris/datasource/kafka/KafkaUtil.java   |  60 +--
 .../property/constants/AzureProperties.java        |  17 +-
 .../org/apache/doris/fs/obj/AzureObjStorage.java   |  15 +-
 .../doris/insertoverwrite/InsertOverwriteUtil.java |   7 +-
 .../doris/load/routineload/RoutineLoadJob.java     |   8 +-
 .../java/org/apache/doris/metric/MetricRepo.java   |  20 +
 .../plans/commands/UpdateMvByPartitionCommand.java |   7 +
 .../insert/InsertOverwriteTableCommand.java        |   7 +-
 .../doris/tablefunction/S3TableValuedFunction.java |  17 +-
 .../apache/doris/transaction/TransactionState.java |   1 +
 .../property/constants/AzurePropertiesTest.java    |  55 +++
 .../doris/load/routineload/RoutineLoadJobTest.java |   4 +-
 .../test_load_with_transfer_encoding.out}          | Bin 131 -> 131 bytes
 ...artial_update_with_delete_col_in_publish.groovy |   2 +-
 .../test_skip_calc_between_segments.groovy         |   1 -
 .../data/{test_schedule.csv => test_metrics.csv}   |   0
 ...ule.groovy => test_routine_load_metrics.groovy} | 158 ++++---
 .../test_load_with_transfer_encoding.groovy        | 119 ++++++
 .../test_partition_storage_policy.groovy           |  12 +-
 .../test_aggregate_all_functions.groovy            |  22 +
 53 files changed, 982 insertions(+), 654 deletions(-)
 delete mode 100644 be/test/vec/exec/vwal_scanner_test.cpp
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/datasource/property/constants/AzurePropertiesTest.java
 copy 
regression-test/data/{auto_increment_p2/test_unique_auto_inc_concurrent.out => 
load_p0/stream_load/test_load_with_transfer_encoding.out} (90%)
 copy regression-test/suites/load_p0/routine_load/data/{test_schedule.csv => 
test_metrics.csv} (100%)
 copy 
regression-test/suites/load_p0/routine_load/{test_routine_load_schedule.groovy 
=> test_routine_load_metrics.groovy} (60%)
 create mode 100644 
regression-test/suites/load_p0/stream_load/test_load_with_transfer_encoding.groovy


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

Reply via email to