cambyzju commented on code in PR #25450:
URL: https://github.com/apache/doris/pull/25450#discussion_r1360010141
##########
fe/fe-core/src/main/java/org/apache/doris/persist/meta/MetaReader.java:
##########
@@ -110,8 +111,17 @@ public static void read(File imageFile, Env env) throws
IOException, DdlExceptio
}
MetaPersistMethod persistMethod =
PersistMetaModules.MODULES_MAP.get(metaIndex.name);
if (persistMethod == null) {
- throw new IOException("Unknown meta module: " +
metaIndex.name + ". Known modules: "
- + PersistMetaModules.MODULE_NAMES);
+ if (Config.ignore_unknown_metadata_module) {
+ LOG.warn("meta modules {} is unknown, ignore and skip
it");
Review Comment:
forget use module names for '{}' ?
--
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]