wuwenchi commented on code in PR #41659: URL: https://github.com/apache/doris/pull/41659#discussion_r1796767594
########## fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergUtils.java: ########## @@ -665,4 +668,16 @@ public static String dataLocation(Table table) { } return dataLocation; } + + public static HiveCatalog createIcebergHiveCatalog(ExternalCatalog externalCatalog, String name) { + HiveCatalog hiveCatalog = new org.apache.iceberg.hive.HiveCatalog(); + hiveCatalog.setConf(externalCatalog.getConfiguration()); + + Map<String, String> catalogProperties = externalCatalog.getProperties(); + String metastoreUris = catalogProperties.getOrDefault(HMSProperties.HIVE_METASTORE_URIS, ""); + catalogProperties.put(CatalogProperties.URI, metastoreUris); + + hiveCatalog.initialize(name, catalogProperties); + return hiveCatalog; Review Comment: Is same as `IcebergHMSExternalCatalog.initCatalog` ? -- 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