This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch revert-24229-show-backends-disks in repository https://gitbox.apache.org/repos/asf/doris.git
from c2c75533c81 Revert "[Enhancement](show-backends-disks) Add show backends disks (#24229)" add 11bbeb9a218 [Enhance](resource group)db support replication_allocation (#25195) add a30d30e7b53 [improvement](resource-tag) limit the default user's resource tag to 'default' (#25331) add ed67d5a2c21 [docs](developer-guide) Improve the be-vscode-gdb document (#25192) add aa0b74d63a8 [improvement](fe and broker) support specify broker to getSplits, check isSplitable, file scan for HMS Multi-catalog (#24830) add ffacbe7d74f [feature](thrift) Add FE thrift rpc redirect master address (#25371) add 509a79988ea [FIX](regresstest) fix cases for test_nested_types_insert_into_with_s3 (#25228) add 4f65a9c4258 [fix](auth)fix not display be_port (#25197) add 6f052f97dcd Merge branch 'master' into revert-24229-show-backends-disks No new revisions were added by this update. Summary of changes: docs/en/community/developer-guide/be-vscode-dev.md | 6 ++ docs/en/docs/admin-manual/multi-tenant.md | 41 +++++++- docs/en/docs/lakehouse/multi-catalog/hive.md | 8 ++ .../Alter/ALTER-DATABASE.md | 18 ++++ .../Create/CREATE-DATABASE.md | 8 ++ .../community/developer-guide/be-vscode-dev.md | 6 ++ docs/zh-CN/docs/admin-manual/multi-tenant.md | 39 ++++++- docs/zh-CN/docs/lakehouse/multi-catalog/hive.md | 8 ++ .../Alter/ALTER-DATABASE.md | 18 ++++ .../Create/CREATE-DATABASE.md | 8 ++ .../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 | 5 +- .../apache/doris/common/util/PropertyAnalyzer.java | 13 +++ .../apache/doris/datasource/ExternalCatalog.java | 8 ++ .../doris/datasource/HMSExternalCatalog.java | 2 + .../doris/datasource/hive/HiveMetaStoreCache.java | 54 ++++++---- .../apache/doris/external/hive/util/HiveUtil.java | 12 ++- .../java/org/apache/doris/fs/FileSystemCache.java | 17 +++- .../org/apache/doris/fs/FileSystemFactory.java | 11 +- .../java/org/apache/doris/fs/FileSystemType.java | 1 + .../apache/doris/fs/remote/BrokerFileSystem.java | 87 ++++++++++++++++ .../mysql/privilege/CommonUserProperties.java | 4 + .../doris/planner/external/HiveScanNode.java | 25 +++-- .../java/org/apache/doris/qe/ShowExecutor.java | 13 --- .../apache/doris/service/FrontendServiceImpl.java | 13 +++ .../doris/statistics/util/StatisticsUtil.java | 3 +- .../org/apache/doris/catalog/UserPropertyTest.java | 3 + .../apache/doris/planner/ResourceTagQueryTest.java | 101 ++++++++++++++++++- .../org/apache/doris/statistics/CacheTest.java | 26 +++-- fs_brokers/apache_hdfs_broker/pom.xml | 26 ++++- .../doris/broker/hdfs/FileSystemManager.java | 55 ++++++++-- .../doris/broker/hdfs/HDFSBrokerServiceImpl.java | 44 ++++++++ .../java/org/apache/doris/common/HiveUtils.java | 112 +++++++++++++++++++++ gensrc/thrift/FrontendService.thrift | 6 ++ gensrc/thrift/PaloBrokerService.thrift | 20 ++++ .../test_nested_types_insert_into_with_s3.out | 95 +---------------- .../test_nested_types_insert_into_with_s3.groovy | 7 ++ .../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, 882 insertions(+), 196 deletions(-) create mode 100644 fs_brokers/apache_hdfs_broker/src/main/java/org/apache/doris/common/HiveUtils.java 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