These release notes were created with the assistance of MySQL HeatWave GenAI.
-
MySQL Router can now enforce limits on HTTP connections, and request and response body sizes. The following
http_serverconfiguration parameters are introduced:max_http_connections: Maximum number of simultaneously active client connections the HTTP server will allow. Permitted range is 1 to 100000 connections. Default value is 1024.max_request_body_size: Maximum allowed size, in bytes, of a HTTP request body. Permitted range is 0 to 2147483648 (2 GiB). Default value is 16777216 (16MiB).max_response_body_size: Maximum allowed size, in bytes, of a HTTP response body sent by the HTTP server. Permitted range is 0 to 2147483648 (2 GiB). Default value is 16777216 (16MiB).
If a connection or request breaches any of the defined limits, the HTTP server rejects the connection or request. (Bug #39268619, WL #17288)