From 60660c7d54de54703d0f185b4b3703dec33e813c Mon Sep 17 00:00:00 2001 From: Wesley Schaft Date: Thu, 16 Nov 2017 09:13:40 +0100 Subject: [PATCH] Changed gcs.limit to gcs.fc_limit, as there's no gcs.limit parameter. --- mysqltuner.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 40387ca..05c422d 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -5097,14 +5097,14 @@ having sum(if(c.column_key in ('PRI','UNI'), 1,0)) = 0" "wsrep_slave_threads is equal to 2, 3 or 4 times number of CPU(s)"; } - if ( get_wsrep_option('gcs.limit') != + if ( get_wsrep_option('gcs.fc_limit') != get_wsrep_option('wsrep_slave_threads') * 5 ) { - badprint "gcs.limit should be equal to 5 * wsrep_slave_threads"; - push @adjvars, "gcs.limit= wsrep_slave_threads * 5"; + badprint "gcs.fc_limit should be equal to 5 * wsrep_slave_threads"; + push @adjvars, "gcs.fc_limit= wsrep_slave_threads * 5"; } else { - goodprint "gcs.limit should be equal to 5 * wsrep_slave_threads"; + goodprint "gcs.fc_limit should be equal to 5 * wsrep_slave_threads"; } if ( get_wsrep_option('wsrep_slave_threads') > 1 ) {