<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: xtrabackup-0.5, bugfixes, incremental backup introduction</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/</link>
	<description>Everything about MySQL Performance</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:23:57 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Leon</title>
		<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/comment-page-1/#comment-534628</link>
		<dc:creator>Leon</dc:creator>
		<pubDate>Fri, 10 Apr 2009 09:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=653#comment-534628</guid>
		<description>Actually I see incremental is not supported in innobackupex , do you know when this is available?
For now I guess I need to backup triggers/user accounts myself and use xtrabackup to get the data.
How would the prepare work using xtrabackup with the above example? 

Would I copy all my backup data onto a new server at /data and issue this?

xtrabackup --prepare --datadir=/data

Then how would incrementals work lets say the incremental is at /data/backup/02 would this command be correct usage?

xtrabackup --prepare --datadir=/data --incremental-dir=/data/backup/02</description>
		<content:encoded><![CDATA[<p>Actually I see incremental is not supported in innobackupex , do you know when this is available?<br />
For now I guess I need to backup triggers/user accounts myself and use xtrabackup to get the data.<br />
How would the prepare work using xtrabackup with the above example? </p>
<p>Would I copy all my backup data onto a new server at /data and issue this?</p>
<p>xtrabackup &#8211;prepare &#8211;datadir=/data</p>
<p>Then how would incrementals work lets say the incremental is at /data/backup/02 would this command be correct usage?</p>
<p>xtrabackup &#8211;prepare &#8211;datadir=/data &#8211;incremental-dir=/data/backup/02</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon</title>
		<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/comment-page-1/#comment-534617</link>
		<dc:creator>Leon</dc:creator>
		<pubDate>Fri, 10 Apr 2009 09:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=653#comment-534617</guid>
		<description>Hi,
Thanks for the response I am using InnoDB. I have actually just been using xtrabackup at this point to create backups. As I am doing incremental backups I didn&#039;t think compression was supported yet.

Is it ok to use the xtrabackup command to backup and innobackupex to restore?

The above prepare looks pretty easy, how would increments be added after the main backup?

Thanks again

Leon</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the response I am using InnoDB. I have actually just been using xtrabackup at this point to create backups. As I am doing incremental backups I didn&#8217;t think compression was supported yet.</p>
<p>Is it ok to use the xtrabackup command to backup and innobackupex to restore?</p>
<p>The above prepare looks pretty easy, how would increments be added after the main backup?</p>
<p>Thanks again</p>
<p>Leon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim</title>
		<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/comment-page-1/#comment-533954</link>
		<dc:creator>Vadim</dc:creator>
		<pubDate>Thu, 09 Apr 2009 21:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=653#comment-533954</guid>
		<description>Leon,

To restore data you can copy backup to final /data directory directly and run
innobackupex --apply-log /data
it should execute prepare and create iblogs ready to use, that is MySQL will be ready to start.

As for trigger/user it depends what tool you use.
xtrabackup binary works only with innodb tables.
innobackupex handles all instance including MyISAM, user accounts, triggers, views etc.

As for compression you can use it already in stream mode, i.e.
innobackupex --stream=tar tmp &#124; gzip - &gt; backup.tar.gz.

Are you looking for different compression way ?</description>
		<content:encoded><![CDATA[<p>Leon,</p>
<p>To restore data you can copy backup to final /data directory directly and run<br />
innobackupex &#8211;apply-log /data<br />
it should execute prepare and create iblogs ready to use, that is MySQL will be ready to start.</p>
<p>As for trigger/user it depends what tool you use.<br />
xtrabackup binary works only with innodb tables.<br />
innobackupex handles all instance including MyISAM, user accounts, triggers, views etc.</p>
<p>As for compression you can use it already in stream mode, i.e.<br />
innobackupex &#8211;stream=tar tmp | gzip &#8211; > backup.tar.gz.</p>
<p>Are you looking for different compression way ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon</title>
		<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/comment-page-1/#comment-533830</link>
		<dc:creator>Leon</dc:creator>
		<pubDate>Thu, 09 Apr 2009 19:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=653#comment-533830</guid>
		<description>Well I am very impressed so far. I have mounted a remote drive using fuse and ssfhs and incrementally backing up straight to that which is working great. Not using it in production yet as need to test the restores.

I have a couple of questions if you could possibly answer, as I can&#039;t seem to make sense of the documents.

When doing a --prepare, lets say the current database server has died, we can first download our backup to a new server on /data/backup we then want to restore the data to /data what would the prepare command look like?

Also are triggers /user accounts backed up or is it just data and schema?

Thanks very much I am honestly very impressed with it and looking forward to compression etc in future releases</description>
		<content:encoded><![CDATA[<p>Well I am very impressed so far. I have mounted a remote drive using fuse and ssfhs and incrementally backing up straight to that which is working great. Not using it in production yet as need to test the restores.</p>
<p>I have a couple of questions if you could possibly answer, as I can&#8217;t seem to make sense of the documents.</p>
<p>When doing a &#8211;prepare, lets say the current database server has died, we can first download our backup to a new server on /data/backup we then want to restore the data to /data what would the prepare command look like?</p>
<p>Also are triggers /user accounts backed up or is it just data and schema?</p>
<p>Thanks very much I am honestly very impressed with it and looking forward to compression etc in future releases</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim</title>
		<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/comment-page-1/#comment-533814</link>
		<dc:creator>Vadim</dc:creator>
		<pubDate>Thu, 09 Apr 2009 19:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=653#comment-533814</guid>
		<description>leon,

yes, that&#039;s right xtrabackup can read last lsn by itself without additional scripting</description>
		<content:encoded><![CDATA[<p>leon,</p>
<p>yes, that&#8217;s right xtrabackup can read last lsn by itself without additional scripting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leon</title>
		<link>http://www.mysqlperformanceblog.com/2009/04/07/xtrabackup-05-bugfixes-introduction-incremental-backup/comment-page-1/#comment-533647</link>
		<dc:creator>leon</dc:creator>
		<pubDate>Thu, 09 Apr 2009 13:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=653#comment-533647</guid>
		<description>Great stuff! Just testing this. From the doucmentation it seems to show a different use case for incremental.

It states you just pass the last increments directory in as --incremental-basedir= and the backup process should read the lsn from the checkfile in this last increment directory. I&#039;ve tested that and it seems to work. This suggests we just need to know the path to our last increment and pass this in each time we increment and we don&#039;t actually need to script the reading of the incremental_lsn.

Have I understood this correctly?

Thanks again 
Leon</description>
		<content:encoded><![CDATA[<p>Great stuff! Just testing this. From the doucmentation it seems to show a different use case for incremental.</p>
<p>It states you just pass the last increments directory in as &#8211;incremental-basedir= and the backup process should read the lsn from the checkfile in this last increment directory. I&#8217;ve tested that and it seems to work. This suggests we just need to know the path to our last increment and pass this in each time we increment and we don&#8217;t actually need to script the reading of the incremental_lsn.</p>
<p>Have I understood this correctly?</p>
<p>Thanks again<br />
Leon</p>
]]></content:encoded>
	</item>
</channel>
</rss>
