rdblue commented on code in PR #4518:
URL: https://github.com/apache/iceberg/pull/4518#discussion_r855664074


##########
core/src/main/java/org/apache/iceberg/CatalogProperties.java:
##########
@@ -53,6 +56,57 @@ private CatalogProperties() {
   public static final long CACHE_EXPIRATION_INTERVAL_MS_DEFAULT = 
TimeUnit.SECONDS.toMillis(30);
   public static final long CACHE_EXPIRATION_INTERVAL_MS_OFF = -1;
 
+  /**
+   * When using {@link CachingFileIO} as io-impl, define the internal FileIO 
that is
+   * wrapped by CachingFileIO.
+   * <p>
+   * Default to {@link HadoopFileIO} if not defined.
+   */
+  public static final String CONTENT_CACHE_WRAPPED_FILE_IO_IMPL = 
"cache.content.wrapped-io-impl";
+  public static final String CONTENT_CACHE_WRAPPED_FILE_IO_IMPL_DEFAULT = 
HadoopFileIO.class.getName();

Review Comment:
   I think this would be an `io.cache-enabled` property.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to