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

mymeiyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 063d9f1d851 [fix](cloud) Skip unnecessary update tablet to ms when 
alter table property (#65983)
063d9f1d851 is described below

commit 063d9f1d85185647ae207d71bf8547046aa22401
Author: meiyi <[email protected]>
AuthorDate: Thu Jul 30 12:04:10 2026 +0800

    [fix](cloud) Skip unnecessary update tablet to ms when alter table property 
(#65983)
    
    Problem Summary: Altering group_commit_mode, group_commit_interval_ms,
    group_commit_data_bytes, or enable_mow_light_delete in cloud mode sent
    an updateTablet request for every tablet. Meta Service does not consume
    these properties from tablet metadata. Group commit properties are
    provided by FE when creating load plans, while MOW light delete is
    controlled by FE catalog metadata.
---
 .../java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java   | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
index 47e6fbf0cbe..1bbe616de8d 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/alter/CloudSchemaChangeHandler.java
@@ -169,7 +169,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                             groupCommitMode, olapTable.getGroupCommitMode());
                     return;
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }
@@ -184,7 +183,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                             groupCommitIntervalMs, 
olapTable.getGroupCommitIntervalMs());
                     return;
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }
@@ -199,7 +197,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                             groupCommitDataBytes, 
olapTable.getGroupCommitDataBytes());
                     return;
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }
@@ -362,7 +359,6 @@ public class CloudSchemaChangeHandler extends 
SchemaChangeHandler {
                     throw new UserException("enable_mow_light_delete property 
is "
                             + "not supported for unique merge-on-read table");
                 }
-                partitions.addAll(olapTable.getPartitions());
             } finally {
                 olapTable.readUnlock();
             }


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

Reply via email to