1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
#!/usr/bin/env php
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
require(__DIR__ . '/../site/include/cli_check.php');
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
global $debug;
$innodb = false;
$utf8 = false;
$latin = false;
$debug = false;
$size = 1000000;
$force = false;
$rebuild = false;
$dynamic = false;
$table_name = '';
$skip_tables = array();
$installer = false;
$local = false;
if (cacti_sizeof($parms)) {
foreach($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter, 2);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '-d':
case '--debug':
$debug = true;
break;
case '-r':
case '--rebuild':
$rebuild = true;
break;
case '--dynamic':
$dynamic = true;
break;
case '--local':
$local = true;
break;
case '-s':
case '--size':
$size = $value;
break;
case '-t':
case '--table':
$table_name = $value;
break;
case '-i':
case '--innodb':
$innodb = true;
break;
case '-l':
case '--latin1':
$latin = true;
break;
case '-n':
case '--skip-innodb':
$skip_tables = explode(' ', $value);
break;
case '-f':
case '--force':
$force = true;
break;
case '-u':
case '--utf8':
$utf8 = true;
break;
case '--installer':
$installer = true;
require_once(__DIR__ . '../install/functions.php');
break;
case '--version':
case '-V':
case '-v':
display_version();
exit(0);
case '--help':
case '-H':
case '-h':
display_help();
exit(0);
default:
print 'ERROR: Invalid Parameter ' . $parameter . "\n\n";
display_help();
exit(1);
}
}
}
if (cacti_sizeof($skip_tables) && $table_name != '') {
print_or_log($installer, "ERROR: You can not specify a single table and skip tables at the same time.\n\n");
display_help();
exit;
}
if (!($innodb || $utf8 || $latin)) {
print_or_log($installer, "ERROR: Must select either UTF8, LATIN1 or InnoDB conversion.\n\n");
display_help();
exit;
}
if (!$local && $config['poller_id'] > 1) {
db_switch_remote_to_main();
print_or_log($installer, "NOTE: Repairing Tables for Main Database\n");
} else {
print_or_log($installer, "NOTE: Repairing Tables for Local Database\n");
}
if (cacti_sizeof($skip_tables)) {
foreach($skip_tables as $table) {
if (!db_table_exists($table)) {
print_or_log($installer, "ERROR: Skip Table $table does not Exist. Can not continue.\n\n");
display_help();
exit;
}
}
}
$convert = $innodb ? 'InnoDB' : '';
if ($utf8) {
$convert .= (strlen($convert) ? ' and ' : '') . ' utf8';
}
print_or_log($installer, "Converting Database Tables to $convert with less than '$size' Records\n");
if ($innodb) {
$engines = db_fetch_assoc('SHOW ENGINES');
foreach($engines as $engine) {
if (strtolower($engine['Engine']) == 'innodb' && strtolower($engine['Support'] == 'off')) {
print_or_log($installer, "InnoDB Engine is not enabled\n");
exit;
}
}
$file_per_table = db_fetch_row("show global variables like 'innodb_file_per_table'");
if (strtolower($file_per_table['Value']) != 'on') {
print_or_log($installer, 'innodb_file_per_table not enabled');
exit;
}
}
if (strlen($table_name)) {
$tables = array($table_name);
} else {
$tables = get_cacti_base_tables();
}
if (cacti_sizeof($tables)) {
foreach($tables AS $table) {
$table_data = db_fetch_row_prepared('SELECT *
FROM information_schema.TABLES
WHERE TABLE_NAME = ?
AND TABLE_SCHEMA = ?',
array($table, $database_default));
$canConvert = $rebuild;
$canInnoDB = false;
if (!$canConvert && $innodb) {
if ($table_data['ENGINE'] == 'MyISAM') {
$canConvert = true;
$canInnoDB = true;
} elseif ($table_data['ENGINE'] == 'Aria') {
$canConvert = true;
}
}
if (in_array($table, $skip_tables)) {
$canInnoDB = false;
}
if (!$canConvert && $utf8) {
$canConvert = $table_data['TABLE_COLLATION'] != 'utf8mb4_unicode_ci';
}
if (!$canConvert && $latin) {
$canConvert = $table_data['TABLE_COLLATION'] != 'latin1';
}
if ($dynamic && $table_data['ROW_FORMAT'] == 'Compact') {
$canConvert = true;
}
if ($dynamic && $table_data['ROW_FORMAT'] == 'Page') {
$canConvert = false;
}
if ($canConvert) {
if ($table_data['TABLE_ROWS'] < $size || $force) {
print_or_log($installer, "Converting Table > '$table'");
$sql = '';
if ($utf8) {
$sql .= ' CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci';
} elseif ($latin) {
$sql .= ' CONVERT TO CHARACTER SET latin1';
}
if ($innodb && $canInnoDB) {
$sql .= (strlen($sql) ? ',' : '') . ' ENGINE=Innodb';
}
$status = db_execute("ALTER TABLE `$table`" . ($dynamic ? ' ROW_FORMAT=Dynamic, ':'') . $sql);
if ($status === false) {
print_or_log($installer, ' Failed' . PHP_EOL);
record_log($installer, "FATAL: Conversion of Table '$table' Failed. Command: 'ALTER TABLE `$table` $sql'");
} else {
print_or_log($installer, ' Successful' . PHP_EOL);
}
} else {
print_or_log($installer, "Skipping Table > '$table' too many rows '{$table_data['TABLE_ROWS']}'" . PHP_EOL);
}
} else {
print_or_log($installer, "Skipping Table > '$table'" . PHP_EOL);
}
}
}
function print_or_log($installer, $text) {
if ($installer) {
log_install_and_file(POLLER_VERBOSITY_MEDIUM, rtrim($text), 'CONVERT', true);
} else {
print $text;
}
}
function record_log($installer, $text) {
if ($installer) {
log_install_and_file(POLLER_VERBOSITY_MEDIUM, rtrim($text), 'CONVERT', true);
} else {
cacti_log($text, false, 'CONVERT');
}
}
/* display_version - displays version information */
function display_version() {
$version = get_cacti_cli_version();
print "Cacti Database Conversion Utility, Version $version, " . COPYRIGHT_YEARS . "\n";
}
/* display_help - displays the usage of the function */
function display_help () {
display_version();
print "\nusage: convert_tables.php [--debug] [--innodb] [--utf8] [--latin1] [--table=N] [--size=N] [--rebuild] [--dynamic]\n\n";
print "A utility to convert a Cacti Database from MyISAM to the InnoDB table format.\n";
print "MEMORY tables are not converted to InnoDB in this process.\n\n";
print "Required (one or more):\n";
print "-i | --innodb - Convert any MyISAM tables to InnoDB\n";
print "-u | --utf8 - Convert any non-UTF8 tables to utf8mb4_unicode_ci\n";
print "-l | --latin1 - Convert any non-latin1 tables to latin1\n\n";
print "Optional:\n";
print "-t | --table=S - The name of a single table to change\n";
print "-n | --skip-innodb=\"table1 table2 ...\" - Skip converting tables to InnoDB\n";
print "-s | --size=N - The largest table size in records to convert. Default is 1,000,000 rows.\n";
print "-r | --rebuild - Will compress/optimize existing InnoDB tables if found\n";
print " --dynamic - Convert a table to Dynamic row format if available\n";
print " --local - Perform the action on the Remote Data Collector if run from there\n";
print "-f | --force - Proceed with conversion regardless of table size\n\n";
print "-d | --debug - Display verbose output during execution\n\n";
}
|