This is an automated email from the ASF dual-hosted git repository.
924060929 pushed a change to branch auto-pick-64160-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
discard f31e76cd024 [fix](fe) Preserve row count fences on refresh failures
discard ca01035c474 [fix](fe) Fence row count cache on metadata events
discard f7ea9824968 [fix](fe) Invalidate external row counts after metadata
changes
add f6ec58f4013 branch-4.1: [improvement](hive) Batch Hive metastore
partition access (#68197)
add 74d02a9e00d [fix](fe) Invalidate external row counts after metadata
changes
add 61020a27aab [fix](fe) Fence row count cache on metadata events
add 830183711f7 [fix](fe) Preserve row count fences on refresh failures
add 48fea1dd796 [fix](fe) Close remaining external row count invalidation
gaps
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 (f31e76cd024)
\
N -- N -- N refs/heads/auto-pick-64160-branch-4.1 (48fea1dd796)
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:
.../org/apache/doris/catalog/RefreshManager.java | 2 +-
.../apache/doris/datasource/ExternalCatalog.java | 26 +-
.../doris/datasource/hive/HMSCachedClient.java | 9 +
.../doris/datasource/hive/HMSClientException.java | 11 +
.../doris/datasource/hive/HMSExternalTable.java | 10 +
.../apache/doris/datasource/hive/HiveDlaTable.java | 53 ++++
.../datasource/hive/HiveExternalMetaCache.java | 30 ++-
.../datasource/hive/HmsPartitionBatchExecutor.java | 252 ++++++++++++++++++
...acheValue.java => HmsPartitionBatchResult.java} | 27 +-
.../datasource/hive/HmsPartitionBatchStats.java | 151 +++++++++++
.../datasource/hive/HmsPartitionIdentity.java | 98 +++++++
.../doris/datasource/hive/HmsPartitionRequest.java | 74 ++++++
.../hive/HmsPartitionResultException.java | 98 +++++++
...nStatistics.java => HmsPartitionTransport.java} | 15 +-
.../datasource/hive/ThriftHMSCachedClient.java | 74 +++++-
.../apache/doris/job/extensions/mtmv/MTMVTask.java | 11 +
.../org/apache/doris/mtmv/MTMVPartitionUtil.java | 53 ++--
.../org/apache/doris/mtmv/MTMVRefreshContext.java | 113 +++++++++
.../org/apache/doris/mtmv/MTMVRelatedTableIf.java | 19 ++
.../org/apache/doris/mtmv/MTMVRewriteUtil.java | 21 +-
.../apache/doris/catalog/RefreshManagerTest.java | 29 +++
.../apache/doris/datasource/CatalogMgrTest.java | 73 +++++-
.../hive/HmsPartitionBatchExecutorTest.java | 282 +++++++++++++++++++++
.../apache/doris/mtmv/MTMVPartitionUtilTest.java | 27 +-
.../doris/mtmv/MTMVRefreshContextBatchTest.java | 239 +++++++++++++++++
.../org/apache/doris/mtmv/MTMVRewriteUtilTest.java | 24 +-
26 files changed, 1749 insertions(+), 72 deletions(-)
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HmsPartitionBatchExecutor.java
copy
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/{HMSSchemaCacheValue.java
=> HmsPartitionBatchResult.java} (56%)
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HmsPartitionBatchStats.java
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HmsPartitionIdentity.java
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HmsPartitionRequest.java
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HmsPartitionResultException.java
copy
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/{HiveColumnStatistics.java
=> HmsPartitionTransport.java} (69%)
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/datasource/hive/HmsPartitionBatchExecutorTest.java
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/mtmv/MTMVRefreshContextBatchTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]