<?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: What a Resilver Looks Like in ZFS (and a Bug and/or Feature)	</title>
	<atom:link href="https://systembash.com/what-a-resilver-looks-like-in-zfs/feed/" rel="self" type="application/rss+xml" />
	<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/</link>
	<description>Technology and System Administration</description>
	<lastBuildDate>Fri, 02 Mar 2012 17:23:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.3.1</generator>
	<item>
		<title>
		By: Egurzi		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-42007</link>

		<dc:creator><![CDATA[Egurzi]]></dc:creator>
		<pubDate>Fri, 02 Mar 2012 17:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-42007</guid>

					<description><![CDATA[how many compartments and what kind of wood backing and what does it have to do with those orange traffic cones?]]></description>
			<content:encoded><![CDATA[<p>how many compartments and what kind of wood backing and what does it have to do with those orange traffic cones?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Benjamin Close		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41989</link>

		<dc:creator><![CDATA[Benjamin Close]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 00:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41989</guid>

					<description><![CDATA[If you want to make it so zfs doesn&#039;t recognise the drive, you have to zero out the area zfs uses to store the drives GUID. Once that&#039;s done you can reuse it in the pool. dd if=/dev/zero of=/dev/sde in this case. Then you can reuse the disk. It even tells you this must be done manually: 

the following errors must be manually repaired:

/dev/sde is part of active pool &#039;media&#039;

Though it doesn&#039;t tell you how to fix it. ZFS pretty much is preventing you shooting yourself in the foot by nuking what could be an active drive. 

ZFS also doesn&#039;t care where the disks are, it relies on GUID&#039;s in the meta data it places on the disk. Shift your disks around all you like and it&#039;ll find them where ever they are and reconstruct the pool accordingly. Try running: zdb  poolname   you&#039;ll see what I mean
]]></description>
			<content:encoded><![CDATA[<p>If you want to make it so zfs doesn&#8217;t recognise the drive, you have to zero out the area zfs uses to store the drives GUID. Once that&#8217;s done you can reuse it in the pool. dd if=/dev/zero of=/dev/sde in this case. Then you can reuse the disk. It even tells you this must be done manually: </p>
<p>the following errors must be manually repaired:</p>
<p>/dev/sde is part of active pool &#8216;media&#8217;</p>
<p>Though it doesn&#8217;t tell you how to fix it. ZFS pretty much is preventing you shooting yourself in the foot by nuking what could be an active drive. </p>
<p>ZFS also doesn&#8217;t care where the disks are, it relies on GUID&#8217;s in the meta data it places on the disk. Shift your disks around all you like and it&#8217;ll find them where ever they are and reconstruct the pool accordingly. Try running: zdb  poolname   you&#8217;ll see what I mean</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rudd-O		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41975</link>

		<dc:creator><![CDATA[Rudd-O]]></dc:creator>
		<pubDate>Thu, 20 Oct 2011 23:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41975</guid>

					<description><![CDATA[I&#039;m a zfs-fuse and zfs in kernel developer.

You should add your drives using the /dev/disk/by-id directory.  That way the drive will be picked up consistently regardless of the device node in /dev/.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a zfs-fuse and zfs in kernel developer.</p>
<p>You should add your drives using the /dev/disk/by-id directory.  That way the drive will be picked up consistently regardless of the device node in /dev/.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41883</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Wed, 10 Aug 2011 19:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41883</guid>

					<description><![CDATA[I think you can work around this issue for NEW raidz pools.  It won&#039;t help with your test pool, but &quot;zpool create&quot; is perfectly happy working with symlinks.  Just create something like:
ln -s /dev/sda2 /my-drive2
ln -s /dev/sda3 /my-drive3
ln -s /dev/sda4 /my-drive4

Then create your pool with my-drive2, my-drive3, and my-drive4.]]></description>
			<content:encoded><![CDATA[<p>I think you can work around this issue for NEW raidz pools.  It won&#8217;t help with your test pool, but &#8220;zpool create&#8221; is perfectly happy working with symlinks.  Just create something like:<br />
ln -s /dev/sda2 /my-drive2<br />
ln -s /dev/sda3 /my-drive3<br />
ln -s /dev/sda4 /my-drive4</p>
<p>Then create your pool with my-drive2, my-drive3, and my-drive4.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dave Drager		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41841</link>

		<dc:creator><![CDATA[Dave Drager]]></dc:creator>
		<pubDate>Mon, 16 May 2011 20:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41841</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41840&quot;&gt;Giovanni Tirloni&lt;/a&gt;.

 Thanks for your feedback Giovanni! ]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41840">Giovanni Tirloni</a>.</p>
<p> Thanks for your feedback Giovanni! </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Giovanni Tirloni		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41840</link>

		<dc:creator><![CDATA[Giovanni Tirloni]]></dc:creator>
		<pubDate>Mon, 16 May 2011 09:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41840</guid>

					<description><![CDATA[Wrong. ZFS doesn&#039;t rely on devices being at the same location all the time. In fact, I&#039;ve had to swap chassis and removed all disks, added them in random fashion and ZFS detected everything just fine. With the zdb -l command you can see how it marks each disk.

You should change the title to &quot;What a Resilver Looks like in FUSE-ZFS&quot; because it seems you&#039;re hitting bugs in Fuse&#039;s implementation.]]></description>
			<content:encoded><![CDATA[<p>Wrong. ZFS doesn&#8217;t rely on devices being at the same location all the time. In fact, I&#8217;ve had to swap chassis and removed all disks, added them in random fashion and ZFS detected everything just fine. With the zdb -l command you can see how it marks each disk.</p>
<p>You should change the title to &#8220;What a Resilver Looks like in FUSE-ZFS&#8221; because it seems you&#8217;re hitting bugs in Fuse&#8217;s implementation.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dave Drager		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41839</link>

		<dc:creator><![CDATA[Dave Drager]]></dc:creator>
		<pubDate>Sun, 15 May 2011 13:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41839</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41838&quot;&gt;Robbyt&lt;/a&gt;.

 Thanks - will take a look at it. I am probably going to format the system and use FreeBSD as I hear their implementation of ZFS is pretty solid. ZFS on Linux has actually come a long way and has a posix enabled implementation available as of May 5th!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41838">Robbyt</a>.</p>
<p> Thanks &#8211; will take a look at it. I am probably going to format the system and use FreeBSD as I hear their implementation of ZFS is pretty solid. ZFS on Linux has actually come a long way and has a posix enabled implementation available as of May 5th!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Robbyt		</title>
		<link>https://systembash.com/what-a-resilver-looks-like-in-zfs/#comment-41838</link>

		<dc:creator><![CDATA[Robbyt]]></dc:creator>
		<pubDate>Sun, 15 May 2011 13:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=974#comment-41838</guid>

					<description><![CDATA[It sounds like your zfs problems are all due to using the beta implementation on Linux. zfs itself is really solid when running on Solaris. You might want to give OpenIndianana a shot.]]></description>
			<content:encoded><![CDATA[<p>It sounds like your zfs problems are all due to using the beta implementation on Linux. zfs itself is really solid when running on Solaris. You might want to give OpenIndianana a shot.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
