hililiwei commented on code in PR #6111: URL: https://github.com/apache/iceberg/pull/6111#discussion_r1012530287
########## flink/v1.15/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalog.java: ########## @@ -102,14 +102,18 @@ public FlinkCatalog( String defaultDatabase, Namespace baseNamespace, CatalogLoader catalogLoader, - boolean cacheEnabled) { + boolean cacheEnabled, + long cacheExpirationIntervalMs) { super(catalogName, defaultDatabase); this.catalogLoader = catalogLoader; this.baseNamespace = baseNamespace; this.cacheEnabled = cacheEnabled; Catalog originalCatalog = catalogLoader.loadCatalog(); - icebergCatalog = cacheEnabled ? CachingCatalog.wrap(originalCatalog) : originalCatalog; + icebergCatalog = + cacheEnabled Review Comment: Can we drop `cacheEnabled` and just use `cacheExpirationIntervalMs`? When `cacheExpirationIntervalMs` is zero, it is disabled. ########## flink/v1.15/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalogFactory.java: ########## @@ -145,8 +145,26 @@ protected Catalog createCatalog( baseNamespace = Namespace.of(properties.get(BASE_NAMESPACE).split("\\.")); } - boolean cacheEnabled = Boolean.parseBoolean(properties.getOrDefault(CACHE_ENABLED, "true")); - return new FlinkCatalog(name, defaultDatabase, baseNamespace, catalogLoader, cacheEnabled); + boolean cacheEnabled = + Boolean.parseBoolean(properties.getOrDefault(CatalogProperties.CACHE_ENABLED, "true")); Review Comment: Now that you have introduced `PropertyUtil`, can we unify the style? -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org