This is an automated email from the ASF dual-hosted git repository.
gavinchou pushed a change to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
from bd2453ef167 [Bug](compatibility) fix stddev_samp function coredump
when upgrade (#40438)
new a0b16b04699 [feature](cloud-compaction) Support shadow tablet to do
cumulative compaction during schema change in cloud mode (#39558)
new 3b73ee2801c [fix](cloud) Fix cloud auto start and add a regression
case (#40027)
new 645755cad66 [opt](vault) Do not use latest_fs() in vault mode (#40516)
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
be/src/cloud/cloud_base_compaction.cpp | 38 ++-
be/src/cloud/cloud_cumulative_compaction.cpp | 46 +++-
.../cloud/cloud_engine_calc_delete_bitmap_task.cpp | 18 +-
be/src/cloud/cloud_meta_mgr.cpp | 13 +-
be/src/cloud/cloud_meta_mgr.h | 9 +-
be/src/cloud/cloud_schema_change_job.cpp | 104 ++++----
be/src/cloud/cloud_schema_change_job.h | 3 +-
be/src/cloud/cloud_storage_engine.cpp | 28 ++-
be/src/cloud/cloud_tablet.cpp | 32 +--
be/src/cloud/cloud_tablet.h | 4 +
be/src/cloud/config.h | 1 +
be/src/olap/base_tablet.cpp | 2 +-
cloud/src/meta-service/meta_service_job.cpp | 172 ++++++++++---
cloud/src/meta-service/meta_service_resource.cpp | 2 +
cloud/test/meta_service_job_test.cpp | 264 +++++++++++++++++--
.../org/apache/doris/alter/CloudRollupJobV2.java | 14 ++
.../apache/doris/alter/CloudSchemaChangeJobV2.java | 36 ++-
.../java/org/apache/doris/alter/RollupJobV2.java | 2 +-
.../org/apache/doris/alter/SchemaChangeJobV2.java | 8 +-
.../apache/doris/cloud/catalog/CloudReplica.java | 14 +-
.../cloud/datasource/CloudInternalCatalog.java | 61 +++++
.../apache/doris/cloud/rpc/MetaServiceClient.java | 11 +
.../apache/doris/cloud/rpc/MetaServiceProxy.java | 10 +
.../doris/cloud/system/CloudSystemInfoService.java | 16 +-
.../java/org/apache/doris/qe/ConnectContext.java | 37 +--
gensrc/proto/cloud.proto | 5 +
.../pipeline/cloud_p0/conf/be_custom.conf | 3 +
.../plugins/plugin_curl_requester.groovy | 4 +
.../cloud_p0/multi_cluster/test_auto_start.groovy | 172 +++++++++++++
.../test_schema_change_with_compaction1.groovy | 257 +++++++++++++++++++
.../test_schema_change_with_compaction10.groovy | 263 +++++++++++++++++++
.../test_schema_change_with_compaction11.groovy | 280 +++++++++++++++++++++
.../test_schema_change_with_compaction2.groovy | 214 ++++++++++++++++
.../test_schema_change_with_compaction3.groovy | 194 ++++++++++++++
.../test_schema_change_with_compaction4.groovy | 194 ++++++++++++++
.../test_schema_change_with_compaction5.groovy | 260 +++++++++++++++++++
.../test_schema_change_with_compaction6.groovy | 263 +++++++++++++++++++
.../test_schema_change_with_compaction7.groovy | 256 +++++++++++++++++++
.../test_schema_change_with_compaction8.groovy | 214 ++++++++++++++++
.../test_schema_change_with_compaction9.groovy | 260 +++++++++++++++++++
.../cloud_p0/schema_change/ddl/date_create.sql | 24 ++
.../cloud_p0/schema_change/ddl/date_delete.sql | 1 +
.../schema_change}/ddl/date_load.sql | 0
.../schema_change/ddl/date_unique_create.sql | 27 ++
44 files changed, 3639 insertions(+), 197 deletions(-)
create mode 100644
regression-test/suites/cloud_p0/multi_cluster/test_auto_start.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction1/test_schema_change_with_compaction1.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction10/test_schema_change_with_compaction10.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction11/test_schema_change_with_compaction11.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction2/test_schema_change_with_compaction2.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction3/test_schema_change_with_compaction3.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction4/test_schema_change_with_compaction4.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction5/test_schema_change_with_compaction5.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction6/test_schema_change_with_compaction6.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction7/test_schema_change_with_compaction7.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction8/test_schema_change_with_compaction8.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/compaction9/test_schema_change_with_compaction9.groovy
create mode 100644
regression-test/suites/cloud_p0/schema_change/ddl/date_create.sql
create mode 100644
regression-test/suites/cloud_p0/schema_change/ddl/date_delete.sql
copy regression-test/suites/{ssb_sf100_p2 =>
cloud_p0/schema_change}/ddl/date_load.sql (100%)
create mode 100644
regression-test/suites/cloud_p0/schema_change/ddl/date_unique_create.sql
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]