Bug #106342 | Minimum value for global_connection_memory_limit variable | ||
---|---|---|---|
Submitted: | 1 Feb 2022 5:24 | Modified: | 1 Feb 2022 14:29 |
Reporter: | Chelluru Vidyadhar | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Documentation | Severity: | S3 (Non-critical) |
Version: | 8.0.28 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[1 Feb 2022 5:24]
Chelluru Vidyadhar
[1 Feb 2022 6:12]
MySQL Verification Team
Hello Chelluru, Thank you for the report and feedback. regards, Umesh
[1 Feb 2022 14:14]
Jon Stephens
sys_vars.cc shows the minimum as 1024*1024*16. 8.0.29-git shows: mysql> SELECT @@global_connection_memory_limit; +----------------------------------+ | @@global_connection_memory_limit | +----------------------------------+ | 18446744073709551615 | +----------------------------------+ 1 row in set (0.01 sec) mysql> SET GLOBAL global_connection_memory_limit = 16777216; Query OK, 0 rows affected (0.00 sec) mysql> SELECT @@global_connection_memory_limit; +----------------------------------+ | @@global_connection_memory_limit | +----------------------------------+ | 16777216 | +----------------------------------+ 1 row in set (0.00 sec)
[1 Feb 2022 14:29]
Jon Stephens
The minimum previously stated in the documentation was not accurate and has been corrected. The update will appear online shortly. Thanks! Closed.