liaoxin01 commented on code in PR #30118: URL: https://github.com/apache/doris/pull/30118#discussion_r1460159181
########## fe/fe-core/src/main/java/org/apache/doris/load/routineload/RoutineLoadJob.java: ########## @@ -1142,11 +1142,22 @@ public void afterAborted(TransactionState txnState, boolean txnOperated, String if (txnStatusChangeReasonString != null) { txnStatusChangeReason = TransactionState.TxnStatusChangeReason.fromString(txnStatusChangeReasonString); + String msg; if (txnStatusChangeReason != null) { switch (txnStatusChangeReason) { case OFFSET_OUT_OF_RANGE: + msg = "be " + taskBeId + " abort task " + + "with reason: " + txnStatusChangeReasonString + + " for offset used in job do not exist in kafka," + + " we command check the offset of kafka," Review Comment: ```suggestion The offset used by job does not exist in kafaka, please check the offset. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org