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

yangbowen pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
     new 1d8e763cdd5 fix bug that replica's remote data size set to data size 
(#35100)
1d8e763cdd5 is described below

commit 1d8e763cdd54997163cecfe96413bb913a17f9ef
Author: GoGoWen <82132356+gogo...@users.noreply.github.com>
AuthorDate: Tue May 21 13:33:32 2024 +0800

    fix bug that replica's remote data size set to data size (#35100)
    
    fix bug that replica's remote data size set to data size
---
 fe/fe-core/src/main/java/org/apache/doris/clone/TabletSchedCtx.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/clone/TabletSchedCtx.java 
b/fe/fe-core/src/main/java/org/apache/doris/clone/TabletSchedCtx.java
index bad60d8ec43..5c93348e96b 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/clone/TabletSchedCtx.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/clone/TabletSchedCtx.java
@@ -1019,7 +1019,7 @@ public class TabletSchedCtx implements 
Comparable<TabletSchedCtx> {
             }
 
             replica.updateVersionInfo(reportedTablet.getVersion(), 
reportedTablet.getDataSize(),
-                    reportedTablet.getDataSize(), 
reportedTablet.getRowCount());
+                    reportedTablet.getRemoteDataSize(), 
reportedTablet.getRowCount());
             if (reportedTablet.isSetPathHash()) {
                 replica.setPathHash(reportedTablet.getPathHash());
             }


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

Reply via email to