Skip to content

Commit

Permalink
[fix](merge-cloud) fix LabelAlreayUsedException for broker load when …
Browse files Browse the repository at this point in the history
…fe restart
  • Loading branch information
liaoxin01 committed Mar 11, 2024
1 parent 340427c commit 143e708
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,13 @@ brokerFileGroups, getDeadlineMs(), getExecMemLimit(),
}
return task;
}

@Override
protected void executeFinish() {
super.executeFinish();
// When replaying a load job, the state of the job can be obtained through replaying transaction
// status information in local mode. However, in cloud mode, there is no edit log of transaction
// in fe. so pint an edit log to save the status information of the job here.
logFinalOperation();
}
}

0 comments on commit 143e708

Please sign in to comment.