yuqi1129 commented on code in PR #6569: URL: https://github.com/apache/gravitino/pull/6569#discussion_r1974969120
########## core/src/main/java/org/apache/gravitino/catalog/CatalogManager.java: ########## @@ -791,12 +791,17 @@ private static boolean catalogInUse(EntityStore store, NameIdentifier ident) private static boolean getCatalogInUseValue(EntityStore store, NameIdentifier catalogIdent) { try { - CatalogEntity catalogEntity = - store.get(catalogIdent, EntityType.CATALOG, CatalogEntity.class); + CatalogWrapper wrapper = catalogCache.getIfPresent(catalogIdent); + CatalogEntity catalogEntity; + if (wrapper != null) { + catalogEntity = wrapper.catalog.entity(); + } else { + catalogEntity = store.get(catalogIdent, EntityType.CATALOG, CatalogEntity.class); Review Comment: Loading `catalogEntity` and then transform it to standard CatalogEntity are NOT `static` method, so I omit it. in fact, in most cases, we can get `catalogEntity` from the cache as all calls are from catalog operations, and the catalog should be in the cache except the first time. -- 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...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org