From 587d72880ab28d2c5ee8b8f5c5bd52661e868626 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Tue, 10 Jun 2025 10:31:11 +0200 Subject: [PATCH] nixos/slurm: remove mysql/InnoDB tuning settings, unbreak test The tuning settings are recommended for production setups: (https://slurm.schedmd.com/accounting.html#slurm-accounting-configuration-before-build) These are not needed in the test and broke the MySQL service. (cherry picked from commit 68d450a5b8102f104db6e9f2ea133730398256d5) --- nixos/tests/slurm.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nixos/tests/slurm.nix b/nixos/tests/slurm.nix index 02fe38c6ecfe..0ae9f73697e1 100644 --- a/nixos/tests/slurm.nix +++ b/nixos/tests/slurm.nix @@ -119,12 +119,6 @@ import ./make-test-python.nix ( name = "slurm"; } ]; - settings.mysqld = { - # recommendations from: https://slurm.schedmd.com/accounting.html#mysql-configuration - innodb_buffer_pool_size = "1024M"; - innodb_log_file_size = "64M"; - innodb_lock_wait_timeout = 900; - }; }; };