seawinde commented on code in PR #61004:
URL: https://github.com/apache/doris/pull/61004#discussion_r2889628478
##########
fe/fe-common/src/main/java/org/apache/doris/common/Config.java:
##########
@@ -3603,6 +3607,10 @@ public static int metaServiceRpcRetryTimes() {
@ConfField(mutable = true)
public static int audit_event_log_queue_size = 250000;
+ @ConfField(mutable = true, description = {"血缘事件队列最大长度,超过长度事件会被舍弃",
+ "Max size of lineage event queue, events will be discarded when
exceeded"})
+ public static int lineage_event_queue_size = 50000;
Review Comment:
Good catch. Removed mutable = true from lineage_event_queue_size. The
LinkedBlockingDeque capacity is fixed at construction time with no
setCapacity() API, so runtime changes via SET GLOBAL would silently have no
effect. Queue size is a low-frequency config — restarting FE to apply changes
is acceptable.
--
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]