| 172 | | * For the first binlog I executed: {{{'mysqlbinlog <binlog> | mysql -u root -p nebulous'}}} which took 3 hours: slowed down by COMMIT statements happening every other line or so... |
| 173 | | * For the second binlog I executed: {{{'mysqlbinlog <binlog> | grep -v 'COMMIT/*!*/' | mysql -u root -p nebulous'}}}. That took 75 minutes: slowed down by BEGIN statements... |
| | 172 | * For the first binlog I executed: {{{'mysqlbinlog <binlog> | mysql -u root -p nebulous'}}} which took 3 hours: slowed down by COMMIT statements happening every other line or so. |
| | 173 | * For the second binlog I executed: {{{'mysqlbinlog <binlog> | grep -v 'COMMIT/*!*/' | mysql -u root -p nebulous'}}}. That took 75 minutes: slowed down by BEGIN statements. |
| | 174 | * Further ingestions executed with: {{{'mysqlbinlog <binlog> | grep -v 'COMMIT/*!*/' | grep -v BEGIN | mysql -u root -p nebulous'}}}. |