wangbo commented on code in PR #37559: URL: https://github.com/apache/doris/pull/37559#discussion_r1683757683
########## fe/fe-common/src/main/java/org/apache/doris/common/Config.java: ########## @@ -1759,6 +1759,15 @@ public class Config extends ConfigBase { @ConfField(mutable = true, varType = VariableAnnotation.EXPERIMENTAL) public static boolean enable_cpu_hard_limit = false; + @ConfField(mutable = true, description = { + "当BE内存用量大于该值时,查询会进入排队逻辑,默认值为-1,代表该值不生效。取值范围0~1的小数", + "When be memory usage bigger than this value, query could queue, " + + "default value is -1, means this value not work. Decimal value range from 0 to 1"}) + public static double query_queue_by_be_used_memory = -1; Review Comment: this is a 0~1 float value, so it's not a mb or bytes -- 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