hubgeter commented on code in PR #39239: URL: https://github.com/apache/doris/pull/39239#discussion_r1720791038
########## fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HMSExternalCatalog.java: ########## @@ -101,6 +106,12 @@ public void checkProperties() throws DdlException { "The parameter " + FILE_META_CACHE_TTL_SECOND + " is wrong, value is " + fileMetaCacheTtlSecond); } + enableHmsEventsIncrementalSync = + catalogProperty.getOrDefault(HMSProperties.ENABLE_HMS_EVENTS_INCREMENTAL_SYNC, "false").equals("true"); + + hmsEventsBatchSizePerRpc = + Integer.valueOf(catalogProperty.getOrDefault(HMSProperties.HMS_EVENTIS_BATCH_SIZE_PER_RPC, "-1")); Review Comment: Originally I wanted to indicate that this value was not set, but now I want its default value to be `Config.hms_events_batch_size_per_rpc` -- 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