|
1 | 1 | #!/usr/bin/env perl
|
2 |
| -# mysqltuner.pl - Version 1.7.22 |
| 2 | +# mysqltuner.pl - Version 1.7.23 |
3 | 3 | # High Performance MySQL Tuning Script
|
4 | 4 | # Copyright (C) 2006-2020 Major Hayden - major@mhtx.net
|
5 | 5 | #
|
@@ -56,7 +56,7 @@ package main;
|
56 | 56 | #use Env;
|
57 | 57 |
|
58 | 58 | # Set up a few variables for use in the script
|
59 |
| -my $tunerversion = "1.7.22"; |
| 59 | +my $tunerversion = "1.7.23"; |
60 | 60 | my ( @adjvars, @generalrec );
|
61 | 61 |
|
62 | 62 | # Set defaults
|
@@ -5369,15 +5369,15 @@ sub mariadb_galera {
|
5369 | 5369 |
|
5370 | 5370 | if ( get_wsrep_option('gcs.fc_limit') != $myvar{'wsrep_slave_threads'} * 5 )
|
5371 | 5371 | {
|
5372 |
| - badprint "gcs.fc_limit should be equal to 5 * wsrep_slave_threads"; |
5373 |
| - push @adjvars, "gcs.fc_limit= wsrep_slave_threads * 5"; |
| 5372 | + badprint "gcs.fc_limit should be equal to 5 * wsrep_slave_threads (=".($myvar{'wsrep_slave_threads'} * 5). ")"; |
| 5373 | + push @adjvars, "gcs.fc_limit= wsrep_slave_threads * 5 (=".($myvar{'wsrep_slave_threads'} * 5). ")"; |
5374 | 5374 | }
|
5375 | 5375 | else {
|
5376 |
| - goodprint "gcs.fc_limit is equal to 5 * wsrep_slave_threads"; |
| 5376 | + goodprint "gcs.fc_limit is equal to 5 * wsrep_slave_threads ( =".get_wsrep_option('gcs.fc_limit') .")"; |
5377 | 5377 | }
|
5378 | 5378 |
|
5379 | 5379 | if ( get_wsrep_option('gcs.fc_factor') != 0.8 ) {
|
5380 |
| - badprint "gcs.fc_factor should be equal to 0.8"; |
| 5380 | + badprint "gcs.fc_factor should be equal to 0.8 (=".get_wsrep_option('gcs.fc_factor').")"; |
5381 | 5381 | push @adjvars, "gcs.fc_factor=0.8";
|
5382 | 5382 | }
|
5383 | 5383 | else {
|
@@ -6480,7 +6480,7 @@ sub which {
|
6480 | 6480 |
|
6481 | 6481 | =head1 NAME
|
6482 | 6482 |
|
6483 |
| - MySQLTuner 1.7.22 - MySQL High Performance Tuning Script |
| 6483 | + MySQLTuner 1.7.23 - MySQL High Performance Tuning Script |
6484 | 6484 |
|
6485 | 6485 | =head1 IMPORTANT USAGE GUIDELINES
|
6486 | 6486 |
|
|
0 commit comments