dataroaring commented on code in PR #54090:
URL: https://github.com/apache/doris/pull/54090#discussion_r2263049271


##########
fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java:
##########
@@ -1436,8 +1436,20 @@ public static void loadJournal(Env env, Long logId, 
JournalEntity journal) {
              */
             LOG.warn("[INCONSISTENT META] replay log {} failed, journal {}: 
{}", logId, journal, e.getMessage(), e);
         } catch (Exception e) {
-            LOG.error("replay Operation Type {}, log id: {}", opCode, logId, 
e);
-            System.exit(-1);
+            short[] ignoreExceptionLogIds = 
Config.skip_operation_types_on_replay_exception;
+            boolean skip = false;
+            for (short id : ignoreExceptionLogIds) {

Review Comment:
   logid or op code?



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to