HonestManXin opened a new pull request, #67622: URL: https://github.com/apache/doris/pull/67622
Previously the per-user connection limit `max_user_connections` was hard-coded to a maximum of 10000. When operators raised the FE global connection limit `qe_max_connection` above 10000, a single user could not be granted more than 10000 connections, which is unreasonable since the effective limit is already bounded by the global setting. Now the upper bound of `max_user_connections` is `Math.max(qe_max_connection,10000)`, so a user can be configured up to the global limit while still keeping the original 10000 floor for backward compatibility. -- 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]
