ฉันคิดว่าฉันพบวิธีแก้ปัญหาแล้ว บางครั้งฉันได้ดูที่เซิร์ฟเวอร์ Percona เพื่อแทนที่เซิร์ฟเวอร์ MySQL ของฉันและตอนนี้ฉันคิดว่ามีเหตุผลที่ดีสำหรับสิ่งนี้
เซิร์ฟเวอร์ Percona แนะนำตาราง INFORMATION_SCHEMA ใหม่มากมายเช่น INNODB_TABLE_STATS ซึ่งไม่สามารถใช้งานได้ในเซิร์ฟเวอร์ MySQL มาตรฐาน เมื่อคุณทำ:
SELECT rows, modified FROM information_schema.innodb_table_stats WHERE table_schema='db' AND table_name='table'
คุณจะได้รับจำนวนแถวจริงและตัวนับ เอกสารอย่างเป็นทางการกล่าวว่าต่อไปนี้จะเกี่ยวกับด้านนี้:
หากค่าของคอลัมน์ที่แก้ไขมีค่าเกิน“ แถว / 16” หรือ 2000000000 การคำนวณใหม่จะทำเมื่อ innodb_stats_auto_update == 1 เราสามารถประเมินความล้าสมัยของสถิติด้วยค่านี้
ดังนั้นตัวนับนี้ล้อมรอบเป็นระยะ ๆ แต่คุณสามารถทำการตรวจสอบจำนวนแถวและตัวนับจากนั้นเมื่อมีการแก้ไขตารางทุกครั้งคุณจะได้รับเช็คซัมที่ไม่ซ้ำใคร เช่น:
SELECT MD5(CONCAT(rows,'_',modified)) AS checksum FROM information_schema.innodb_table_stats WHERE table_schema='db' AND table_name='table';
ฉันกำลังจะอัพเกรดเซิร์ฟเวอร์ของฉันเป็นเซิร์ฟเวอร์ Percona อยู่แล้วดังนั้นการ จำกัด ขอบเขตนี้ไม่ใช่ปัญหาสำหรับฉัน การจัดการทริกเกอร์หลายร้อยตัวและการเพิ่มเขตข้อมูลลงในตารางเป็นปัญหาสำคัญสำหรับแอปพลิเคชันนี้เนื่องจากการพัฒนายังช้า
นี่คือฟังก์ชั่น PHP ที่ฉันได้สร้างขึ้นเพื่อให้แน่ใจว่าสามารถตรวจสอบตารางใด ๆ ที่ใช้เครื่องมือและเซิร์ฟเวอร์:
function checksum_table($input_tables){
if(!$input_tables) return false; // Sanity check
$tables = (is_array($input_tables)) ? $input_tables : array($input_tables); // Make $tables always an array
$where = "";
$checksum = "";
$found_tables = array();
$tables_indexed = array();
foreach($tables as $table_name){
$tables_indexed[$table_name] = true; // Indexed array for faster searching
if(strstr($table_name,".")){ // If we are passing db.table_name
$table_name_split = explode(".",$table_name);
$where .= "(table_schema='".$table_name_split[0]."' AND table_name='".$table_name_split[1]."') OR ";
}else{
$where .= "(table_schema=DATABASE() AND table_name='".$table_name."') OR ";
}
}
if($where != ""){ // Sanity check
$where = substr($where,0,-4); // Remove the last "OR"
$get_chksum = mysql_query("SELECT table_schema, table_name, rows, modified FROM information_schema.innodb_table_stats WHERE ".$where);
while($row = mysql_fetch_assoc($get_chksum)){
if($tables_indexed[$row[table_name]]){ // Not entirely foolproof, but saves some queries like "SELECT DATABASE()" to find out the current database
$found_tables[$row[table_name]] = true;
}elseif($tables_indexed[$row[table_schema].".".$row[table_name]]){
$found_tables[$row[table_schema].".".$row[table_name]] = true;
}
$checksum .= "_".$row[rows]."_".$row[modified]."_";
}
}
foreach($tables as $table_name){
if(!$found_tables[$table_name]){ // Table is not found in information_schema.innodb_table_stats (Probably not InnoDB table or not using Percona Server)
$get_chksum = mysql_query("CHECKSUM TABLE ".$table_name); // Checksuming the old-fashioned way
$chksum = mysql_fetch_assoc($get_chksum);
$checksum .= "_".$chksum[Checksum]."_";
}
}
$checksum = sprintf("%s",crc32($checksum)); // Using crc32 because it's faster than md5(). Must be returned as string to prevent PHPs signed integer problems.
return $checksum;
}
คุณสามารถใช้สิ่งนี้:
// checksum a signle table in the current db
$checksum = checksum_table("test_table");
// checksum a signle table in db other than the current
$checksum = checksum_table("other_db.test_table");
// checksum multiple tables at once. It's faster when using Percona server, because all tables are checksummed via one select.
$checksum = checksum_table(array("test_table, "other_db.test_table"));
ฉันหวังว่านี่จะช่วยลดปัญหาให้กับผู้อื่นที่มีปัญหาเดียวกัน