eric-maynard commented on code in PR #1356: URL: https://github.com/apache/polaris/pull/1356#discussion_r2070886188
########## polaris-core/src/main/java/org/apache/polaris/core/persistence/cache/EntityCache.java: ########## @@ -53,16 +52,22 @@ public class EntityCache { // index by name private final AbstractMap<EntityCacheByNameKey, ResolvedPolarisEntity> byName; + private final PolarisCallContext polarisCallContext; + /** * Constructor. Cache can be private or shared * * @param polarisMetaStoreManager the meta store manager implementation */ - public EntityCache(@Nonnull PolarisMetaStoreManager polarisMetaStoreManager) { + public EntityCache( + @Nonnull PolarisMetaStoreManager polarisMetaStoreManager, + @Nonnull PolarisCallContext polarisCallContext) { // by name cache this.byName = new ConcurrentHashMap<>(); + this.polarisCallContext = polarisCallContext; Review Comment: cc @gh-yzou who I believe is working on an application-scoped feature store -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org