FANNG1 commented on code in PR #8980:
URL: https://github.com/apache/gravitino/pull/8980#discussion_r2618186184
##########
iceberg/iceberg-common/src/main/java/org/apache/gravitino/iceberg/common/IcebergConfig.java:
##########
@@ -283,6 +283,38 @@ public class IcebergConfig extends Config implements
OverwriteDefaultConfig {
.intConf()
.createWithDefault(60);
+ public static final ConfigEntry<String> SCAN_PLAN_CACHE_IMPL =
+ new ConfigBuilder(IcebergConstants.SCAN_PLAN_CACHE_IMPL)
+ .doc(
+ "The implementation of the scan plan cache. Gravitino provides a
built-in "
+ + "LocalScanPlanCache that stores cached data in memory. If
not specified, "
+ + "LocalScanPlanCache will be used by default. You can
implement a custom scan plan "
+ + "cache by implementing the ScanPlanCache interface.")
+ .version(ConfigConstants.VERSION_1_1_0)
Review Comment:
seems we couldn't meet `VERSION_1_1_0`, how about using `VERSION_1_2_0`?
--
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]