Hi! ----- Original Message ----- From: ""Sp.Raja"" <[EMAIL PROTECTED]> Newsgroups: mailing.database.myodbc Sent: Tuesday, July 27, 2004 5:52 PM Subject: Re: Innodb assertion failure after binary backup-restore
> Thanks for your replies. > > Now I have three ways to go > > 1. replication=20 > 2. innodb hot backup tool > 3. Make sure that no one is writing in to the database and start backup= > when modified db pages in "BUFFER POOL AND MEMORY" becomes zero > > #FLUSH TABLES WITH READ LOCK > still_to_flush=3D1=20=20 > while [ $still_to_flush !=3D 0 ] > do > still_to_flush=3D`/usr/local/mysql/bin/mysql -e "SHOW INNODB STATUS= > \G" | grep "Modified db pages" | awk '{print $4}'` > sleep 1 > done > #UNLOCK TABLES > > Do you think #3 will work? not in the general case, since purge or the insert buffer merge may still be running. You must wait that the status of the InnoDB main thread is 'Waiting for server activity'. Then, if you are sure that clients are not doing anything (calling COMMIT, for example), then probably all the buffer pool data has been flushed to files, nothing is being written to the ib_logfiles. I am not absolutely sure about this, I would need to check the code in log0log.c and srv0srv.c. You can then copy the data files and ib_logfiles as-is. To be safe, best that you check also the modification times of the files after copying them. Check that they did not change while you were copying. > Regards, > Sp.Raja Best regards, Heikki Tuuri Innobase Oy Foreign keys, transactions, and row level locking for MySQL InnoDB Hot Backup - a hot backup tool for InnoDB which also backs up MyISAM tables http://www.innodb.com/order.php Order MySQL technical support from https://order.mysql.com/ > > ------------Original Message------------ > > From: "Heikki Tuuri" <[EMAIL PROTECTED]> > > To: [EMAIL PROTECTED] > > Date: Tue, Jul-27-2004 6:24 PM > > Subject: Re: Innodb assertion failure after binary backup-restore > >=20 > > Hi! > >=20 > > sync will not help. > >=20 > > You can run SHOW INNODB STATUS\G to monitor when InnoDB has flushed its > > buffer pool. > >=20 > > Best regards, > >=20 > > Heikki > > Innobase Oy > > InnoDB - transactions, row level locking, and foreign keys for MySQL > > InnoDB Hot Backup - a hot backup tool for InnoDB which also backs up=20 > > MyISAM > > tables > > http://www.innodb.com/order.php > >=20 > > Order MySQL support from http://www.mysql.com/support/index.html > >=20 > > > > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED] > -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]