{"id":2312,"date":"2015-10-19T19:51:17","date_gmt":"2015-10-19T19:51:17","guid":{"rendered":"http:\/\/kedar.nitty-witty.com\/?p=2312"},"modified":"2024-01-27T17:29:36","modified_gmt":"2024-01-27T17:29:36","slug":"pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain","status":"publish","type":"post","link":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain","title":{"rendered":"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">I recently came across an issue where the task was to checksum databases using Percona&#8217;s <a href=\"https:\/\/www.percona.com\/doc\/percona-toolkit\/2.2\/pt-table-checksum.html\" rel=\"nofollow\">pt-table-checksum<\/a>. The command continued well for all the databases but when it came to specific DB, it kept on showing following error:<br><small><br><\/small><\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Waiting to check replicas for differences: 0% 00:00 remain<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">As this did not change for hours (was in screen session), I cross-checked that nothing blocks the process and other options!<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">I killed pt-table-checksum &amp; re-ran the command with PTDEBUG to get detailed debug info:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[kedar@nitty-witty ~] PTDEBUG=1 \/usr\/bin\/pt-table-checksum --config \/home\/kedar\/pt-table-checksum-config   --recursion-method dsn=h=localhost,D=DB_A,t=dsns --replicate DB_A.checksums --no-check-replication-filters --no-check-binlog-format --chunk-time=3 --max-load Threads_running=18 --check-interval=1 --max-lag=1000 --no-check-plan --ignore-databases mysql,performance_schema,information_schema --databases DB_A,DB_B,DB_C,DB_D --resume &gt; checksum.log 2&gt;&amp;1\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><i>The environment variable PTDEBUG enables verbose debugging output to STDERR.<\/i><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">From the logs I found that the checksum command was stuck because following query was returning NULL:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql&gt; SELECT MAX(chunk) FROM `DB_A`.`checksums` WHERE db='DB_D' AND tbl='a_c' AND master_crc IS NOT NULL;\n+------------+\n| MAX(chunk) |\n+------------+\n|       NULL |\n+------------+\n1 row in set (0.00 sec)\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">I ran the query with only <i>db=&#8217;DB_D&#8217;<\/i> condition and found that all the tables of this database returned NULL! The database DB_D was very well present on master and all the slaves.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Debugging further get me to following status output of the slave:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql&gt; show slave status\\G\n*************************** 1. row ***************************\n               Slave_IO_State: Waiting for master to send event\n                  Master_Host: master.mysite.com\n                  Master_User: slave2\n                  Master_Port: 3306\n                Connect_Retry: 60\n              Master_Log_File: mysql-bin.000908\n          Read_Master_Log_Pos: 576546786\n               Relay_Log_File: mysqld-relay-bin.002738\n                Relay_Log_Pos: 576546932\n        Relay_Master_Log_File: mysql-bin.000908\n             Slave_IO_Running: Yes\n            Slave_SQL_Running: Yes\n<b>              Replicate_Do_DB: DB_A,DB_B,DB_C<\/b>\n          Replicate_Ignore_DB: \n           Replicate_Do_Table: \n       Replicate_Ignore_Table: \n      Replicate_Wild_Do_Table: \n  Replicate_Wild_Ignore_Table: \n                   Last_Errno: 0\n                   Last_Error: \n                 Skip_Counter: 0\n          Exec_Master_Log_Pos: 576546786\n              Relay_Log_Space: 576547132\n              Until_Condition: None\n               Until_Log_File: \n                Until_Log_Pos: 0\n           Master_SSL_Allowed: No\n           Master_SSL_CA_File: \n           Master_SSL_CA_Path: \n              Master_SSL_Cert: \n            Master_SSL_Cipher: \n               Master_SSL_Key: \n        Seconds_Behind_Master: 0\nMaster_SSL_Verify_Server_Cert: No\n                Last_IO_Errno: 0\n                Last_IO_Error: \n               Last_SQL_Errno: 0\n               Last_SQL_Error: \n  Replicate_Ignore_Server_Ids: \n             Master_Server_Id: 1\n1 row in set (0.00 sec)\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Look at &#8220;Replicate_Do_DB&#8221; closely -&gt; &#8220;DB_A,DB_B,DB_C&#8221;. That&#8217;s right, DB_D is not replicated !!<br>So, that explains us the NULL results of max-chunk finding query and our error of waiting-to-check-replicas-for-differences.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Well, so the solution here is, as DB_D does not replicate, we shall remove it from the list of databases to checksum. Add DB_D in to the list of &#8211;ignore-databases and rerun the command to get things started!<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[kedar@nitty-witty ~] PTDEBUG=1 \/usr\/bin\/pt-table-checksum --config \/home\/kedar\/pt-table-checksum-config   --recursion-method dsn=h=localhost,D=DB_A,t=dsns --replicate DB_A.checksums --no-check-replication-filters --no-check-binlog-format --chunk-time=3 --max-load Threads_running=18 --check-interval=1 --max-lag=1000 --no-check-plan --ignore-databases DB_D,mysql,performance_schema,information_schema --databases DB_A,DB_B,DB_C --resume &gt; checksum.log 2&gt;&amp;1\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This worked well and killed &#8220;Waiting to check replicas for differences: 0% 00:00 remain&#8221;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note that we&#8217;re using &#8211;no-check-replication-filters so that our checksum will continue over the replication filters. Also review &#8211;replicate-database option which can also be used to specify databases to be USEd.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I think fix in pt-table-checksum here could be that: <i>In a condition where max-chunk returns NULL and slave is in sync (seconds_behind_master: 0), pt-table-checksum should exit with appropriate warning.<\/i><br>I may be overlooking many other options but that&#8217;s something I could quickly think. Comment for corrections \/ if-and-buts.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hope this helps.<\/p>\n","protected":false},"excerpt":{"rendered":"This post discuss the pt-table-checksum &#038; error &#8220;Waiting to check replicas for differences:   0% 00:00 remain&#8221; with a use-case and solution.\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[8,870,377],"tags":[575,576,572,574,573],"class_list":["post-2312","post","type-post","status-publish","format-standard","category-mysql","category-mysql-tools","category-mysql-articles","tag-data-consistency","tag-mysql-replication","tag-pt-table-checksum","tag-seconds_behind_master","tag-waiting-to-check-replicas"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kedar\"\/>\n\t<meta name=\"google-site-verification\" content=\"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA\" \/>\n\t<meta name=\"msvalidate.01\" content=\"116B62074CBCA1BA99B8CCE09CCF2FB8\" \/>\n\t<meta name=\"keywords\" content=\"pt-table-checksum,error,replication filters,mysql,data consistency,mysql replication,seconds_behind_master,waiting to check replicas\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Change Is Inevitable | Kedar Vaijanapurkar&#039;s Blog for MySQL, technology and various subjects\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"pt-table-checksum &amp; Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable\" \/>\n\t\t<meta property=\"og:description\" content=\"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-10-19T19:51:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-01-27T17:29:36+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"pt-table-checksum &amp; Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#article\",\"name\":\"pt-table-checksum & Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable\",\"headline\":\"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain\",\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"},\"datePublished\":\"2015-10-19T19:51:17+00:00\",\"dateModified\":\"2024-01-27T17:29:36+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#webpage\"},\"articleSection\":\"MySQL, MySQL tools, MySQL-Articles, Data consistency, MySQL Replication, pt-table-checksum, seconds_behind_master, Waiting to check replicas\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"name\":\"MySQL\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"position\":2,\"name\":\"MySQL\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles#listItem\",\"name\":\"MySQL-Articles\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles#listItem\",\"position\":3,\"name\":\"MySQL-Articles\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#listItem\",\"name\":\"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"name\":\"MySQL\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#listItem\",\"position\":4,\"name\":\"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-articles#listItem\",\"name\":\"MySQL-Articles\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#webpage\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain\",\"name\":\"pt-table-checksum & Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable\",\"description\":\"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2015-10-19T19:51:17+00:00\",\"dateModified\":\"2024-01-27T17:29:36+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/\",\"name\":\"..::CHANGE is INEVITABLE::..\",\"description\":\"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"pt-table-checksum & Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable","description":"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.","canonical_url":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain","robots":"max-image-preview:large","keywords":"pt-table-checksum,error,replication filters,mysql,data consistency,mysql replication,seconds_behind_master,waiting to check replicas","webmasterTools":{"google-site-verification":"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA","msvalidate.01":"116B62074CBCA1BA99B8CCE09CCF2FB8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#article","name":"pt-table-checksum & Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable","headline":"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain","author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"},"datePublished":"2015-10-19T19:51:17+00:00","dateModified":"2024-01-27T17:29:36+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#webpage"},"isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#webpage"},"articleSection":"MySQL, MySQL tools, MySQL-Articles, Data consistency, MySQL Replication, pt-table-checksum, seconds_behind_master, Waiting to check replicas"},{"@type":"BreadcrumbList","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/kedar.nitty-witty.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","name":"MySQL"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","position":2,"name":"MySQL","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles#listItem","name":"MySQL-Articles"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles#listItem","position":3,"name":"MySQL-Articles","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#listItem","name":"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","name":"MySQL"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#listItem","position":4,"name":"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain","previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles#listItem","name":"MySQL-Articles"}}]},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author","url":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"WebPage","@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#webpage","url":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain","name":"pt-table-checksum & Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable","description":"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain#breadcrumblist"},"author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"datePublished":"2015-10-19T19:51:17+00:00","dateModified":"2024-01-27T17:29:36+00:00"},{"@type":"WebSite","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website","url":"https:\/\/kedar.nitty-witty.com\/blog\/","name":"..::CHANGE is INEVITABLE::..","description":"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","inLanguage":"en-US","publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Change Is Inevitable | Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","og:type":"article","og:title":"pt-table-checksum &amp; Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable","og:description":"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.","og:url":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain","article:published_time":"2015-10-19T19:51:17+00:00","article:modified_time":"2024-01-27T17:29:36+00:00","twitter:card":"summary","twitter:title":"pt-table-checksum &amp; Waiting to check replicas for differences: 0% 00:00 remain | Change Is Inevitable","twitter:description":"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain."},"aioseo_meta_data":{"post_id":"2312","title":"pt-table-checksum &amp; Waiting to check replicas for differences: 0% 00:00 remain | #site_title","description":"Solution to pt-table-checksum stuck on Waiting to check replicas for differences: 0% 00:00 remain.","keywords":[{"label":"pt-table-checksum","value":"pt-table-checksum"},{"label":"error","value":"error"},{"label":"replication filters","value":"replication filters"},{"label":"mysql","value":"mysql"}],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-24 17:40:44","updated":"2025-08-16 19:16:14","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\" title=\"MySQL\">MySQL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles\" title=\"MySQL-Articles\">MySQL-Articles<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tpt-table-checksum &amp; Waiting to check replicas for differences:   0% 00:00 remain\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kedar.nitty-witty.com\/blog"},{"label":"MySQL","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql"},{"label":"MySQL-Articles","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-articles"},{"label":"pt-table-checksum &#038; Waiting to check replicas for differences:   0% 00:00 remain","link":"https:\/\/kedar.nitty-witty.com\/blog\/pt-table-checksum-waiting-to-check-replicas-for-differences-0-0000-remain"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/2312","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/comments?post=2312"}],"version-history":[{"count":10,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/2312\/revisions"}],"predecessor-version":[{"id":2873,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/2312\/revisions\/2873"}],"wp:attachment":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/media?parent=2312"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/categories?post=2312"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/tags?post=2312"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}