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

kxiao pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


    from fb40bcf267a [Fix](point query) insert/update/delete statment should 
not go short circuit path (#25429)
     new e4933bee9a7 [Enhance](resource group)db support replication_allocation 
(#25195)
     new 22cf933747c [improvement](resource-tag) limit the default user's 
resource tag to 'default' (#25331)
     new c7cba573d48 [feature](thrift) Add FE thrift rpc redirect master 
address (#25371)
     new e44ddbd63d1 [FIX](regresstest) fix cases for 
test_nested_types_insert_into_with_s3 (#25228)
     new 0d89d7d7d23 [fix](auth)fix not display be_port (#25197)
     new 3bc4fedbbfe [enhancement](merge-on-write) refine tablet meta_lock 
usage and add some trace log (#25124)
     new 0a3db8e4888 [fix](jni) the offset in map type is int64 (#25394)
     new ce65695fc65 [enhancement](merge-on-write) consider version count on 
size-based cu compaction policy (#25352)
     new 555f78a2405 [test](fix) case bug (#25363)
     new 2112844db35 [fix](multi-table) fix single stream multi table load can 
not finish (#25379)
     new 30dde917125 [fix](case) change dynamic_partition.time_unit from day to 
month to avoid the error that the intert data not in partition (#25361)
     new 40b66f731e4 [chore](format) Refactor BaseTablet _full_name by using 
fmt replacing stringstream (#25400)
     new 38c51a46bc5 [enhancement](compaction) record base compaction schedule 
time and status (#25283)
     new 372619ee14f [fix](thrift)cancel thrift msg max size limit (#25194)

The 14 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/common/config.cpp                           |   6 +
 be/src/common/config.h                             |   6 +
 be/src/olap/base_tablet.cpp                        |   7 +-
 be/src/olap/cumulative_compaction_policy.cpp       |  12 +-
 be/src/olap/cumulative_compaction_policy.h         |   3 +
 be/src/olap/olap_server.cpp                        |   3 +
 be/src/olap/tablet.cpp                             | 287 ++++++++++++---------
 be/src/olap/tablet.h                               |  14 +
 be/src/olap/tablet_meta.cpp                        |  11 +
 .../runtime/routine_load/data_consumer_group.cpp   |   7 +-
 be/src/runtime/routine_load/data_consumer_group.h  |   9 +-
 .../routine_load/routine_load_task_executor.cpp    |   6 +-
 be/src/util/thrift_util.h                          |   8 +-
 docs/en/docs/admin-manual/multi-tenant.md          |  41 ++-
 .../Alter/ALTER-DATABASE.md                        |  18 ++
 .../Create/CREATE-DATABASE.md                      |   8 +
 docs/zh-CN/docs/admin-manual/multi-tenant.md       |  39 ++-
 .../Alter/ALTER-DATABASE.md                        |  18 ++
 .../Create/CREATE-DATABASE.md                      |   8 +
 .../apache/doris/common/jni/vec/VectorColumn.java  |   2 +-
 .../doris/analysis/AlterDatabasePropertyStmt.java  |   3 -
 .../org/apache/doris/analysis/CreateTableStmt.java |  49 +++-
 .../apache/doris/analysis/SinglePartitionDesc.java |  10 +-
 .../java/org/apache/doris/catalog/Database.java    |  47 ++--
 .../apache/doris/common/proc/BackendsProcDir.java  |   2 -
 .../apache/doris/common/util/PropertyAnalyzer.java |  13 +
 .../mysql/privilege/CommonUserProperties.java      |   4 +
 .../java/org/apache/doris/qe/ShowExecutor.java     |  13 -
 .../apache/doris/service/FrontendServiceImpl.java  |  13 +
 .../org/apache/doris/catalog/UserPropertyTest.java |   3 +
 .../apache/doris/planner/ResourceTagQueryTest.java | 101 +++++++-
 .../org/apache/doris/statistics/CacheTest.java     |  26 +-
 gensrc/thrift/FrontendService.thrift               |   6 +
 .../test_nested_types_insert_into_with_s3.out      |  95 +------
 .../test_nested_types_insert_into_with_s3.groovy   |   7 +
 .../suites/index_p0/test_bitmap_index.groovy       |   4 +-
 .../suites/load_p0/insert/test_insert.groovy       |   2 +-
 .../ddl/parquet_large_metadata_100mb_create.sql    | 258 ++++++++++++++++++
 .../ddl/parquet_large_metadata_100mb_drop.sql      |   1 +
 .../test_parquet_large_metadata_load.groovy        | 120 +++++++++
 .../nereids_p0/outfile/test_outfile_expr.groovy    |   2 +-
 .../nereids_p0/system/test_query_sys_tables.groovy |   2 +-
 .../suites/show_p0/test_show_backends.groovy       |  42 +++
 43 files changed, 1039 insertions(+), 297 deletions(-)
 create mode 100644 
regression-test/suites/load_p2/broker_load/ddl/parquet_large_metadata_100mb_create.sql
 create mode 100644 
regression-test/suites/load_p2/broker_load/ddl/parquet_large_metadata_100mb_drop.sql
 create mode 100644 
regression-test/suites/load_p2/broker_load/test_parquet_large_metadata_load.groovy
 create mode 100644 regression-test/suites/show_p0/test_show_backends.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to