morrySnow commented on code in PR #34698: URL: https://github.com/apache/doris/pull/34698#discussion_r1597843033
########## fe/fe-common/src/main/java/org/apache/doris/common/Config.java: ########## @@ -1314,12 +1314,18 @@ public class Config extends ConfigBase { * Minimum interval between last version when caching results, * This parameter distinguishes between offline and real-time updates */ + @ConfField(mutable = true, masterOnly = false) + public static int cache_last_version_interval_second = 30; Review Comment: add description in annotation ########## fe/fe-common/src/main/java/org/apache/doris/common/Config.java: ########## @@ -1314,12 +1314,18 @@ public class Config extends ConfigBase { * Minimum interval between last version when caching results, * This parameter distinguishes between offline and real-time updates */ + @ConfField(mutable = true, masterOnly = false) + public static int cache_last_version_interval_second = 30; + + /** + * Expire sql sql in frontend time + */ @ConfField( mutable = true, masterOnly = false, callbackClassString = "org.apache.doris.common.NereidsSqlCacheManager$UpdateConfig" ) - public static int cache_last_version_interval_second = 30; + public static int expire_sql_cache_in_fe_second = 300; Review Comment: add description in annotation -- 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...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org