From 16cecf236be09827b302fef1fd7fd15f88a8e09c Mon Sep 17 00:00:00 2001 From: Ed Shryane Date: Wed, 10 Apr 2024 16:46:18 +0200 Subject: [PATCH] reduce mariadb innodb memory usage to 1GB --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4f44df943d..535b0e7c79 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -75,7 +75,7 @@ release: - mysql -uroot -proot -h mariadb -e "CREATE USER 'dbint'@'%' IDENTIFIED BY '';" - mysql -uroot -proot -h mariadb -e "GRANT ALL ON *.* TO 'dbint'@'%' WITH GRANT OPTION;" - mysql -uroot -proot -h mariadb -e "SET GLOBAL innodb_file_per_table = 0;" - - mysql -uroot -proot -h mariadb -e "SET GLOBAL innodb_buffer_pool_size = 2147483648;" + - mysql -uroot -proot -h mariadb -e "SET GLOBAL innodb_buffer_pool_size = 1073741824;" - mysql -uroot -proot -h mariadb -e "SET GLOBAL max_connections=10000;" services: &mariadb_service - mariadb:10.2