You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2021/11/20 13:42:02 UTC

[incubator-doris] branch master updated: [fix](export) fix export retry error (#7143)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 49eac40  [fix](export) fix export retry error (#7143)
49eac40 is described below

commit 49eac402e329d10cddf517a8225efe8c8c52d7a5
Author: Xinyi Zou <zo...@gmail.com>
AuthorDate: Sat Nov 20 21:41:53 2021 +0800

    [fix](export) fix export retry error (#7143)
    
    fix #7142
    clear export status `alreadySentBackendIds` before Coordinator retry Export task.
---
 fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java b/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
index 1e69a03..6dca441 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
@@ -344,6 +344,7 @@ public class Coordinator {
             }
             this.exportFiles.clear();
             this.needCheckBackendExecStates.clear();
+            this.alreadySentBackendIds.clear();
         } finally {
             lock.unlock();
         }

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