deniskuzZ commented on PR #5145: URL: https://github.com/apache/hive/pull/5145#issuecomment-2168285212
Are you familiar with Hive HCatalog? ```` HCatalog is a tool for accessing metadata that reside in Hive metastore. It acts as an API to expose the metastore as REST interface to external tools ```` https://www.linkedin.com/pulse/hive-metastore-hcatalog-hcat-haotian-zhang If Hive already provides REST interface for HMS, we could just extend it with the Iceberg API, the same way DataBricks in UnityCatalog ```` sb.annotatedService(basePath + "iceberg", new IcebergRestCatalogService(catalogService, schemaService, tableService), icebergRequestConverter, icebergResponseConverter); ```` https://github.com/unitycatalog/unitycatalog/blob/main/server/src/main/java/io/unitycatalog/server/UnityCatalogServer.java Under hive-webhcat there is already HMS API REST server (probably API list needs to be updated), however, it could be extended with Iceberg API support -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org