<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>A NetApp Technical Diary</title>
	
	<link>http://www.wafl.co.uk</link>
	<description>Thoughts from a NetApp Consultant</description>
	<lastBuildDate>Sun, 14 Mar 2010 22:03:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Wafl-ATechnicalDiary" /><feedburner:info uri="wafl-atechnicaldiary" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.0/</creativeCommons:license><feedburner:emailServiceId>Wafl-ATechnicalDiary</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>SnapMirror Setup Script</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/mpBBRT8Cb4s/</link>
		<comments>http://www.wafl.co.uk/snapmirror-setup-script/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 22:03:51 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[initialise]]></category>
		<category><![CDATA[initialize]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[SnapMirror]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1392</guid>
		<description><![CDATA[I had the task of replicating an existing customers filer to their new DR system. This was quite a large system, and as much as creating SnapMirrors isn&#8217;t particularly complex, it is time consuming. So as with many things I do, I wrote a script to help my achieve this task quicker, and go have [...]]]></description>
			<content:encoded><![CDATA[<p>I had the task of replicating an existing customers filer to their new DR system. This was quite a large system, and as much as creating SnapMirrors isn&#8217;t particularly complex, it is time consuming. So as with many things I do, I wrote a script to help my achieve this task quicker, and go have yet another coffee.</p>
<p>You&#8217;ll need pre-shared keys setup (as ever), but the rest is prompted for. There&#8217;s no data validation (no surprise). The script will output 4 text files, one for creating/restricting all the volumes, one for the &#8220;snapmirror.conf&#8221;, on to be used in place of &#8220;snapmirror.conf&#8221; while you are doing the baseline initialization, and finally one to actually initialize the snapmirrors. There&#8217;s no intelligence around concurrent streams, so initialization is still a bit of a juggling act and waiting game.</p>
<p>Please let me know if you find this useful.</p>
<blockquote><p>#!/bin/bash</p>
<p>echo &#8220;Please enter the name of the PRIMARY filer: &#8221;<br />
read PRI_FILER</p>
<p>echo &#8220;Please enter the name of the DR filer: &#8221;<br />
read DR_FILER</p>
<p>ConnectString=&#8221;ssh -c 3des&#8221;<br />
#ConnectString=&#8221;rsh&#8221;</p>
<p>SnapMirrorHour=22<br />
SnapMirrorMinute=0<br />
SnapMirrorStagger=5</p>
<p>echo &#8220;&#8221; &gt; ${DR_FILER}_filer_volumes.txt<br />
echo &#8220;&#8221; &gt; ${DR_FILER}_snapmirror.conf<br />
echo &#8220;&#8221; &gt; ${DR_FILER}_sm_initialize.txt<br />
echo &#8220;&#8221; &gt; ${DR_FILER}_snapmirror_init.conf</p>
<p>for AGGR in `${ConnectString} $PRI_FILER &#8220;aggr status&#8221; | awk &#8216;$2!~/State/{print $1}&#8217;`<br />
do<br />
 SIZE=`${ConnectString} $PRI_FILER &#8220;df -Ah $AGGR&#8221; | sed &#8217;s/\([0-9][KMGT]\)B/\1/g&#8217; | awk &#8216;$1!~/.snapshot|Aggregate/{print $2}&#8217;`<br />
 for VOL in `${ConnectString} $PRI_FILER &#8220;aggr show_space $AGGR&#8221; | awk &#8216;$1!~/Space/{print $0}&#8217; | awk &#8216;$4~/volume|file|none/{print $1}&#8217;`<br />
 do<br />
  echo &#8220;vol create ${VOL} -s none ${AGGR} ${SIZE} &#8221; &gt;&gt; ${DR_FILER}_filer_volumes.txt<br />
  echo &#8220;vol restrict ${VOL}&#8221; &gt;&gt; ${DR_FILER}_filer_volumes.txt<br />
  echo &#8220;snapmirror initialize -S ${PRI_FILER}:${VOL} ${DR_FILER}:${VOL}&#8221; &gt;&gt; ${DR_FILER}_sm_initialize.txt<br />
  echo &#8220;${PRI_FILER}:${VOL} ${DR_FILER}:${VOL} &#8211; ${SnapMirrorMinute} ${SnapMirrorHour} * *&#8221; &gt;&gt; ${DR_FILER}_snapmirror.conf<br />
  echo &#8220;${PRI_FILER}:${VOL} ${DR_FILER}:${VOL} &#8211; - &#8211; - -&#8221; &gt;&gt; ${DR_FILER}_snapmirror_init.conf</p>
<p>  SnapMirrorMinute=`expr $SnapMirrorMinute + $SnapMirrorStagger`</p>
<p>  if [ $SnapMirrorMinute -gt 58 ]<br />
  then<br />
   SnapMirrorMinute=0<br />
   SnapMirrorHour=`expr $SnapMirrorHour + 1`<br />
  fi<br />
  if [ $SnapMirrorHour -gt 23 ]<br />
  then<br />
   SnapMirrorHour=0<br />
  fi<br />
 done<br />
done</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=mpBBRT8Cb4s:WUiT6htQp1E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=mpBBRT8Cb4s:WUiT6htQp1E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=mpBBRT8Cb4s:WUiT6htQp1E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=mpBBRT8Cb4s:WUiT6htQp1E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=mpBBRT8Cb4s:WUiT6htQp1E:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/mpBBRT8Cb4s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/snapmirror-setup-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/snapmirror-setup-script/</feedburner:origLink></item>
		<item>
		<title>Hot Spindles</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/XLHLuToyeSU/</link>
		<comments>http://www.wafl.co.uk/hot-spindles/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 07:15:18 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[disk performance]]></category>
		<category><![CDATA[fragmentation]]></category>
		<category><![CDATA[hot spindles]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[reallocate]]></category>
		<category><![CDATA[stats show]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1388</guid>
		<description><![CDATA[Excuse the absence in both presence and posts. It’s been a roller-coaster past year with personal injury and flat-out work schedules, so I have had little time or motivation to blog or show my face around the communities. My apologies, and I am determined to break this habit and get back into things once again! [...]]]></description>
			<content:encoded><![CDATA[<p>Excuse the absence in both presence and posts. It’s been a roller-coaster past year with personal injury and flat-out work schedules, so I have had little time or motivation to blog or show my face around the communities. My apologies, and I am determined to break this habit and get back into things once again! But enough of the chatter, get on with the writings&#8230;</p>
<p>This isn’t something I see very often, but when I do, it’s interesting to see the stats speak for themselves. I’m with a customer who had a scripted deployment of their NetApp estate a few years ago, and it wasn’t designed or delivered with too much care or attention (something I want to discuss another day). They have a VMware estate with SQL, Exchange and other things. It all runs across a total of over 100 15k FC spindles. It’s not a huge estate in comparison with other sites, so I’m intrigued into why they have such performance issues.</p>
<p>Now when you run through “sysstat –u”, you can see that the filer itself is doing very little, quite happily getting on with what it should do. But the disk is hitting 100% quite often. Immediately this shows a disk problem. They need more spindles, obviously?</p>
<p>Firstly there is an imbalance of spindles. They have a second aggregate on the partner controller that only has test volumes. I get permission to remove this and hot, I re-allocate these to the other controller and expand the existing aggregate. This doubles the spindle count, but I know it’s not going to do anything for existing performance (in that the data won’t automatically redistribute itself!).</p>
<p>If I run through “stats show disk:*:disk_busy” I can see something pretty obvious. There is a single disk in the entire system that is hitting 100%, the rest are not. There are a bunch of other disks (about 10), that are running 50-60%, and then the remaining disks ticking away at around 20-30%. So what has happened here? NetApp technology should prevent any form of hot spindle in the system.</p>
<p>My theory is this. The filer was racked and stacked out of the box, but the aggregate wasn’t grown (3 disk aggregate, 1 data, 2 parity). Some storage was provisioned and data migrated. They ran out of space, so grew the aggregate (a little), then copied a bunch more data onto the disks. After all this, they then added the rest of the disks. Now because data won’t automatically re-allocate on the fly, any data that remains unchanged (as will happen with VM System Disks, old Exchange emails, and old Data Warehousing data), then they are still sat on the original spindles or even spindle as when they were first installed.</p>
<p>So I’m now looking forward to the weekend. We’ll be upgrading them to Data ONTAP 7.3.2 and I can then run some reallocation scans across the system without impacting snapshot space usage (huge bonus, thank you NetApp!). I’m hoping that this will remove the hot spindle issue. I have some before stats, and I’ll pull out some after stats next week. I’ll update this post accordingly.</p>
<p>Lesson from the story? Setup your storage system COMPLETELY and thoroughly before you start throwing data at it. Don’t get excited about using your new storage toy and throw data on it immediately. I have seen the above scenario on several occasions now, and prior to ONTAP 7.3, it was a pain to fix.</p>
<p>Quick snapshot of the stats output. Keep in mind that across a cluster this will show all disks, so all disk stats are entirely relevant. The busy disks here just don&#8217;t add up to the actual number of disks in the system, and you can clearly see the one busy disk.</p>
<blockquote><p>&gt; sysstat -u 1<br />
 CPU   Total    Net kB/s    Disk kB/s    Tape kB/s Cache Cache  CP  CP Disk<br />
       ops/s    in   out   read  write  read write   age   hit time ty util<br />
 11%    3220  6942  3270   4232      0     0     0    12   95%   0%  -  60%<br />
 11%    2898  7385  4030   4892      0     0     0    11   94%   0%  -  69%<br />
  9%    3547  1820  3496   3920     24     0     0    11   93%   0%  -  89%<br />
  7%    2329  1160  3048   3892      0     0     0    11   93%   0%  -  81%<br />
 10%    3173  2055  4851   4644      8     0     0    11   93%   0%  -  67%<br />
  9%    2491  1860  4547   4568     24     0     0    11   91%   0%  -  98%<br />
  9%    2523  2960  4404   5372      0     0     0    11   90%   0%  -  89%<br />
 14%    5136  8173  4465   3352      0     0     0    11   95%   0%  -  81%</p>
<p>&gt; stats show disk:*:disk_busy<br />
&#8230; snip &#8230;</p>
<p>disk:88922F61:C2026AF9:E5D68A17:B49415B1:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:51%<br />
disk:B677DDF1:8588AAF1:D71B2CFD:3C2BB6D4:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:34%<br />
disk:08F03F36:067E5BD0:749AF2F3:429BBEC2:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:41%<br />
disk:54DA4952:17856AC1:22FB0FCE:A283EF92:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:57%<br />
disk:7CD76662:56D914F1:EC90930B:EC01EC2C:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:51%<br />
disk:2777F697:BC2DE4B1:A6967344:3FF4F607:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:46%<br />
disk:3BC9BA7A:D0085F2E:06DF43C8:5498E687:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:0%<br />
disk:07EBF5F5:904AEAD8:03BAC8B5:CAF1F896:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:55%<br />
disk:03AE8BA0:8D269AF9:4FF4F01B:B5BA8B7A:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:40%<br />
disk:326B6A85:20FA7613:86E60929:2C2559B9:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:90%<br />
disk:EFEDE851:60FD51E3:A7D780C4:0D4E1CC0:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:37%<br />
disk:6A89A9E3:575C15F3:E369B326:CD51EBFF:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:0%<br />
disk:A6840DBD:8D81796E:A2E9CF67:663F9940:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:0%<br />
disk:6D37E864:7426A291:2C946571:F96E0F84:00000000:00000000:00000000:00000000:00000000:00000000:disk_busy:54%</p>
<p>&#8230; snip &#8230;</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=XLHLuToyeSU:_qHkU1_hpEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=XLHLuToyeSU:_qHkU1_hpEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=XLHLuToyeSU:_qHkU1_hpEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=XLHLuToyeSU:_qHkU1_hpEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=XLHLuToyeSU:_qHkU1_hpEc:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/XLHLuToyeSU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/hot-spindles/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/hot-spindles/</feedburner:origLink></item>
		<item>
		<title>Movember</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/Le_Vz9_YcZE/</link>
		<comments>http://www.wafl.co.uk/movember/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 07:46:46 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1380</guid>
		<description><![CDATA[It&#8217;s a busy busy time at the moment, hence the lack of recent updates. However, one very important thing I am currently working on is Movember.
This basically entails growing a stately &#8216;tash for the month of November in order to raise money for Prostate Cancer charity.
Please sponsor me by heading over to my Mo-Space page [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a busy busy time at the moment, hence the lack of recent updates. However, one very important thing I am currently working on is Movember.</p>
<p>This basically entails growing a stately &#8216;tash for the month of November in order to raise money for Prostate Cancer charity.</p>
<p>Please sponsor me by heading over to my Mo-Space page &#8211; http://uk.movember.com/mospace/13540</p>
<div id="attachment_1381" class="wp-caption alignnone" style="width: 370px"><a href="http://www.wafl.co.uk/wp-content/uploads/2009/11/20091112-3.jpg"><img class="size-full wp-image-1381 " title="Movember" src="http://www.wafl.co.uk/wp-content/uploads/2009/11/20091112-3.jpg" alt="My Mo-tash after 2 weeks" width="360" height="391" /></a><p class="wp-caption-text">My Mo-tash after 2 weeks</p></div>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://sassholes.blogspot.com/2009/11/hair-todaycancer-gone-tomorrow-make.html">Hair Today&#8230;Cancer Gone Tomorrow? Make Movember Matter!</a> (sassholes.blogspot.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.huffingtonpost.com/2009/11/02/movember-sport-a-stache-t_n_343150.html">Movember: Sport A &#8216;Stache To Support Men&#8217;s Health</a> (huffingtonpost.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/62b364f5-89da-4dde-b283-7d292a23e67a/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=62b364f5-89da-4dde-b283-7d292a23e67a" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=Le_Vz9_YcZE:Cb0QOBP97oA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=Le_Vz9_YcZE:Cb0QOBP97oA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=Le_Vz9_YcZE:Cb0QOBP97oA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=Le_Vz9_YcZE:Cb0QOBP97oA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=Le_Vz9_YcZE:Cb0QOBP97oA:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/Le_Vz9_YcZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/movember/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/movember/</feedburner:origLink></item>
		<item>
		<title>Data Protection</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/fpX2kBI5eTc/</link>
		<comments>http://www.wafl.co.uk/data-protection/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 09:31:39 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[business value]]></category>
		<category><![CDATA[data protection]]></category>
		<category><![CDATA[Information privacy]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[Risk Analysis]]></category>
		<category><![CDATA[risk register]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1372</guid>
		<description><![CDATA[We are currently going through a fairly large project internally, and part of this is a &#8220;risk register&#8221; against the business. Now this includes a lot more information than just simply data on disk, but also people, reputation and so on. For me, now that I have started this project, that is a key part [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">We are currently going through a fairly large project internally, and part of this is a &#8220;<a class="zem_slink" title="Risk register" rel="wikipedia" href="http://en.wikipedia.org/wiki/Risk_register">risk register</a>&#8221; against the business. Now this includes a lot more information than just simply data on disk, but also people, reputation and so on. For me, now that I have started this project, that is a key part of data protection.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">It&#8217;s an interesting topic, and something that I&#8217;d like to share with you at this early stage in my own project as it makes you look at the storage aspects in a different light.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">What affects a piece of data&#8217;s risk class?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<ol>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: Arial; mso-fareast-language: EN-GB;"><span style="mso-list: Ignore;"><span style="font: 7pt 'Times New Roman';"> </span></span></span><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Who has access to it?</span></div>
</li>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">How confidential is it?</span></div>
</li>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Does it have a tangible value?</span></div>
</li>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">How portable is it?</span></div>
</li>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Could it potentially damage the business reputation?</span></div>
</li>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Is it protected?</span></div>
</li>
<li>
<div class="MsoNormal" style="margin: 2.4pt 0cm; text-indent: -18pt; line-height: normal; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: Arial; mso-fareast-language: EN-GB;"><span style="mso-list: Ignore;"><span style="font: 7pt 'Times New Roman';">  </span></span></span><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">&#8230; probably a lot more!</span></div>
</li>
</ol>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Some of these are all questions we already have asked about the data sets as we need to define snapshot, replication and tape policies, but <a class="zem_slink" title="Information privacy" rel="wikipedia" href="http://en.wikipedia.org/wiki/Information_privacy">data protection</a> goes a lot further than just this. Interestingly the Zemanta plugin for my blog has linked &#8220;data protection&#8221; with &#8220;Information Privacy&#8221;, which is a key point!</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Who has access to it?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Not just from a front-end authorised point of view, although you do need to know this. Payroll for instance, generally it would just be HR and Accounting that have access to this, but is there a mechanism for anyone else to gain access to it? If so, is there any audit control to check who has been granted access, or who has gained access? The audit control is almost more important than the security in the first place. Security can and will always be broken, but if you can prove it was broken, then you can fix it!</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">How confidential is it?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Most of us have a fair grasp on what is confidential and what is not. Employee data, Customer data, Payroll, Accounting, are all obvious candidates for highly confidential data. But other things are still confidential, even if they are not classified as highly confidential. External IP schema&#8217;s, low level system passwords, although they may be freely accessible by the technical teams, they are not available to the secretaries for instance, so this makes them confidential in some way. Are they marked as confidential? Other than applying common sense, have you ever told anyone that they shouldn&#8217;t email a domain administrator password around for instance?</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Does it have a tangible value?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Very difficult one to play and the analysts will love this! But some things have a real immediate tangible value, purchase order or a signed contract maybe. There is scope for defining a cost scoring system against data, but it is very difficult to calculate. Something will cost money in very indirect ways, for instance if something damages the company’s reputation, it could cause loss of revenue. This should really be assessed in other areas and not necessarily spend time putting a tangible value on every piece of data (I want to finish my project this year!!!).</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">How portable is it?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">With the age of Virtual Machines, portability is very important, and very dangerous. Someone can literally just walk off with an entire database system now on a portable hard drive! How do you protect against this? Is there any way to bind key systems, or police raw access to them? As much as technology and WAN speeds have come along, it&#8217;s still fairly unreasonable to assume you could email an entire system. However it is very easy to email spreadsheets and documents around. Preventing this from happening can be restrictive on day-to-day running of a business, so we fall back to auditing and monitoring. There are a lot of bases to cover, portable media, email, file shares, etc.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Could it damage the business reputation?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">This is a good one, and not something you might immediately think of. Not just necessarily &#8220;dirt&#8221; on the business, but perhaps the business has a key technology or system that means they are unique in the market. If this is leaked to another company, it could damage the reputation as others could then start doing the same. Could the business reputation be damaged if the data were absent? If a key system was offline for a period of time, how would the business reputation be damaged (take a look at some start-up Cloud companies!). A damaged reputation could sink a company. Naturally company ethics and business practices are a good way of destroying a reputation. I have many friends that still won&#8217;t buy Nestle!</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Is it protected?</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">And this is an amalgamation of all of the above really. The questions above help you to define the business value on a particular data asset. So if it has a high value, how protected is it? How protected should it be? How long can the business survive while it is being recovered? How much would data loss actually cost the company?</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Depending on the risk class and business value will greatly affect the protection and auditing you deploy around it.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">Putting this into action</span></strong></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">I’d love to hear from people about how you put the above into action. We use NetApp ourselves (definitely practice what we preach), and this gives me a great level of control over my data sets and the protection we employ. Protection goes further than just snapshots and tape backup however; we need to protect it from more than just data loss. While NetApp have some great tools for protecting against data loss, there is a requirement to help with the other areas of data protection, and I’d love to see NetApp build on this space.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">I have some experience using tools like <a href="http://www.varonis.com/" target="_blank">Varonis</a>, <a href="http://www.f5.com/solutions/storage/" target="_blank">Acopia</a>, <a href="http://www.northern.net/" target="_blank">Northern Storage Suite</a>, <a href="http://www.ntpsoftware.com/products/QFS.aspx" target="_blank">NTP QFS</a>, <a href="http://www.tek-tools.com/" target="_blank">TekTools</a>, to name a few, and these have all helped us in the past in deploying a complete solution. I have said on several occasions, and it’s something I really believe in so I’ll say it again; a complete solution is a combination of many different technologies that complement each other.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal;"><span style="font-size: 10pt; color: #333333; font-family: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB;">I’d like to revisit this topic again in a few months when I have progressed my project further, but I’d like to hear from the field to see what other people are doing to gain complete data protection.</span></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3916457e-3d24-45ab-9024-acfb4099e9bb/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=3916457e-3d24-45ab-9024-acfb4099e9bb" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=fpX2kBI5eTc:yCJjLAMl4eI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=fpX2kBI5eTc:yCJjLAMl4eI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=fpX2kBI5eTc:yCJjLAMl4eI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=fpX2kBI5eTc:yCJjLAMl4eI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=fpX2kBI5eTc:yCJjLAMl4eI:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/fpX2kBI5eTc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/data-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/data-protection/</feedburner:origLink></item>
		<item>
		<title>NetApp SnapManager for VI 2.0</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/Hq0-SDanvOQ/</link>
		<comments>http://www.wafl.co.uk/netapp-snapmanager-for-vi-20/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 08:31:22 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[NetApp News]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[smvi]]></category>
		<category><![CDATA[snapmanager]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1369</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=VWy1Sc9dtGs
New YouTube video showing some of the new features and functionality of NetApp SMVI 2.0. Not sure on a release date just yet, but looks promising!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=VWy1Sc9dtGs">http://www.youtube.com/watch?v=VWy1Sc9dtGs</a></p>
<p>New YouTube video showing some of the new features and functionality of NetApp SMVI 2.0. Not sure on a release date just yet, but looks promising!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=Hq0-SDanvOQ:x0i8XnGu28k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=Hq0-SDanvOQ:x0i8XnGu28k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=Hq0-SDanvOQ:x0i8XnGu28k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=Hq0-SDanvOQ:x0i8XnGu28k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=Hq0-SDanvOQ:x0i8XnGu28k:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/Hq0-SDanvOQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/netapp-snapmanager-for-vi-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/netapp-snapmanager-for-vi-20/</feedburner:origLink></item>
		<item>
		<title>Visual Cheat Sheet</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/a2N3lUp1b-o/</link>
		<comments>http://www.wafl.co.uk/visual-cheat-sheet/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 18:18:00 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[create storage]]></category>
		<category><![CDATA[flow chart]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[provision]]></category>
		<category><![CDATA[visual]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1357</guid>
		<description><![CDATA[I am actually quite proud of these. I did them awhile ago and I still refer to them quite a lot. The idea is simple, if you only configure a filer once or twice a month, the process might not stick in your head exactly and you may easily miss out a step. Rather than [...]]]></description>
			<content:encoded><![CDATA[<p>I am actually quite proud of these. I did them awhile ago and I still refer to them quite a lot. The idea is simple, if you only configure a filer once or twice a month, the process might not stick in your head exactly and you may easily miss out a step. Rather than reams and reams of documentation, the idea is to have a couple of these pinned around your monitor and you have quite a quick visual guide on how you should configure things and it&#8217;s easy to keep to a certain standard.</p>
<p>I&#8217;m going to try produce more of these for various guides I do, they are much easier to understand quickly when you&#8217;re in a hurry.</p>
<p>The SnapDrive one here is a little dated, so please don&#8217;t hold that against the content.</p>

<a href='http://www.wafl.co.uk/visual-cheat-sheet/presenting-storage-to-vmware/' title='presenting-storage-to-vmware'><img width="150" height="150" src="http://www.wafl.co.uk/wp-content/uploads/2009/07/presenting-storage-to-vmware-150x150.png" class="attachment-thumbnail" alt="" title="presenting-storage-to-vmware" /></a>
<a href='http://www.wafl.co.uk/visual-cheat-sheet/presenting-storage-via-snapdrive/' title='presenting-storage-via-snapdrive'><img width="150" height="150" src="http://www.wafl.co.uk/wp-content/uploads/2009/07/presenting-storage-via-snapdrive-150x150.png" class="attachment-thumbnail" alt="" title="presenting-storage-via-snapdrive" /></a>
<a href='http://www.wafl.co.uk/visual-cheat-sheet/snapmirror-relationships/' title='snapmirror-relationships'><img width="150" height="150" src="http://www.wafl.co.uk/wp-content/uploads/2009/07/snapmirror-relationships-150x150.png" class="attachment-thumbnail" alt="" title="snapmirror-relationships" /></a>
<a href='http://www.wafl.co.uk/visual-cheat-sheet/storage-setup-requirement/' title='storage-setup-requirement'><img width="150" height="150" src="http://www.wafl.co.uk/wp-content/uploads/2009/07/storage-setup-requirement-150x150.png" class="attachment-thumbnail" alt="" title="storage-setup-requirement" /></a>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=a2N3lUp1b-o:E0El2gB0l0w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=a2N3lUp1b-o:E0El2gB0l0w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=a2N3lUp1b-o:E0El2gB0l0w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=a2N3lUp1b-o:E0El2gB0l0w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=a2N3lUp1b-o:E0El2gB0l0w:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/a2N3lUp1b-o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/visual-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/visual-cheat-sheet/</feedburner:origLink></item>
		<item>
		<title>EMC DataDomain</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/ktm6tBWp6lQ/</link>
		<comments>http://www.wafl.co.uk/emc-datadomain/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 17:38:11 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[NetApp News]]></category>
		<category><![CDATA[Data domain]]></category>
		<category><![CDATA[DataDomain]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[NetApp]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1354</guid>
		<description><![CDATA[Well it was sort of inevitable, EMC have finally won the bidding war for DataDomain. So what happens next? This gives EMC industry leading de-dupe technology at last, and a real foot in the market. What will EMC do with DataDomain? Will they adopt the code into the primary tier storage and finally give NetApp [...]]]></description>
			<content:encoded><![CDATA[<p>Well it was sort of inevitable, EMC have finally won the bidding war for DataDomain. So what happens next? This gives EMC industry leading de-dupe technology at last, and a real foot in the market. What will EMC do with DataDomain? Will they adopt the code into the primary tier storage and finally give NetApp a run for their money in primary tier dedupe? I&#8217;m hoping that EMC don&#8217;t consume DataDomain as they did with Avamar. DataDomain is a great technology in it&#8217;s place and it would be a shame to see it restricted to EMC only estates.</p>
<p>What&#8217;s NetApp&#8217;s next play? NetApp were very excited a month ago about this potential aqcuisition, so it must fall as quite a disappointment. I heard someone (not from NetApp) voicing the possibility of a Quantum purchase. That would be interesting and very comical as EMC have a lot of that technology in their products! But other than annoying EMC, what benefits would it bring them? Quantum are in a lot of trouble at the moment, so it&#8217;d probably be a cheap purchase all the same. </p>
<p>I guess this can only be good news for the consumer though. NetApp will be driven to improve and excel with their de-dupe technology, and maybe give VTL a much-needed make-over.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.xconomy.com/boston/2009/07/08/netapp-bows-out-clearing-way-for-emc-data-domain-nuptials/"> NetApp Bows Out, Clearing Way for EMC-Data Domain Nuptials </a> (xconomy.com)</li>
<li class="zemanta-article-ul-li"><a href="http://gigaom.com/2009/07/08/emc-snagged-data-domain-so-whats-next-for-netapp/"> EMC Snagged Data Domain, So What&#8217;s Next for NetApp? </a> (gigaom.com)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//www10.nytimes.com/2009/07/09/technology/companies/09data.html%3F_r%3D5%26partner%3Drss%26amp%3Bemc%3Drss&amp;a=6070322&amp;rid=2aeefe22-ce7b-4bc2-bb98-fa8736c35061&amp;e=5ec9b18e7a382e2d44042a798d72d5d1"> EMC Wins Bidding War for Data Domain </a> (nytimes.com)</li>
</ul>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=2aeefe22-ce7b-4bc2-bb98-fa8736c35061" alt="Reblog this post [with Zemanta]"><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=ktm6tBWp6lQ:rvSGrCGjobA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=ktm6tBWp6lQ:rvSGrCGjobA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=ktm6tBWp6lQ:rvSGrCGjobA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=ktm6tBWp6lQ:rvSGrCGjobA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=ktm6tBWp6lQ:rvSGrCGjobA:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/ktm6tBWp6lQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/emc-datadomain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/emc-datadomain/</feedburner:origLink></item>
		<item>
		<title>Operations Manager Reporting</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/9YrQ_jvXJtk/</link>
		<comments>http://www.wafl.co.uk/operations-manager-reporting-2/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 17:12:04 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[dfm]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[operations manager]]></category>
		<category><![CDATA[reporting]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1349</guid>
		<description><![CDATA[I have met a lot of people that have a fear of Operations Manager. I&#8217;ve had a fair play with this now, and once you get to grips with the interface and the thinking behind it all, it is actually quite straight forward. I did a quick guide for one of my customers who wanted [...]]]></description>
			<content:encoded><![CDATA[<p>I have met a lot of people that have a fear of Operations Manager. I&#8217;ve had a fair play with this now, and once you get to grips with the interface and the thinking behind it all, it is actually quite straight forward. I did a quick guide for one of my customers who wanted to be able to schedule reports and also make some custom ones. This was based on 3.7, so I&#8217;m not sure how much this has changed recently, but I will try to update through later versions.</p>
<p><span id="more-1349"></span></p>
<p style="margin-left: 11pt"><a href="#toc_1">Management Group<br />
</a></p>
<p style="margin-left: 11pt"><a href="#toc_2">Chargeback<br />
</a></p>
<p style="margin-left: 11pt"><a href="#toc_3">Generate Pre-Built Report<br />
</a></p>
<p style="margin-left: 22pt"><a href="#toc_4">Volume Growth<br />
</a></p>
<p style="margin-left: 22pt"><a href="#toc_5">User usage<br />
</a></p>
<p style="margin-left: 11pt"><a href="#toc_6">Build a Custom Report<br />
</a></p>
<p style="margin-left: 11pt"><a href="#toc_7">Scheduled Reports<br />
</a></p>
<h2><a name="toc_1">Management Group</a></h2>
<p>Creating custom reports from within Ops Mgr is relatively simple. The first step is to create some Management Groups so that we can run reports on certain areas of storage rather than across the entire system.</p>
<p>Next to Groups, click &#8220;Edit Groups&#8221;</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm1.png" alt="" /></p>
<p>Now give the new group a name. If some groups already exist, you can place the new group inside another if needed. Here we are going to add a new group at the global level. Then click &#8220;Add&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm2.png" alt="" /></p>
<p>The new group appears at the bottom, but you&#8217;ll notice the &#8220;Group Membership&#8221; reads &#8220;Empty&#8221;. Click on &#8220;Empty&#8221; so we can add some filesystem members to this group.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm3.png" alt="" /></p>
<p>From the drop down on the next page, choose the volumes (or other areas if you wish) that you want to add to this reporting group (use shift or ctrl to select multiples) and use the &#8220;&gt;&gt;&#8221; button to add them. The page will refresh each time you click this, so it&#8217;s easier to select and add multiples. Here we have added all the VMware volumes.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 308px;"></col>
<col style="width: 308px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">
<p style="text-align: center"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm4.png" alt="" /></p>
</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">
<p style="text-align: center"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm5.png" alt="" /></p>
</td>
</tr>
</tbody>
</table>
</div>
<p>There is no commit button or save button. When you click &#8220;&gt;&gt;&#8221; these are then added to the group. Over the left hand side we can see this new group, and any related warnings are passed down to it.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm6.png" alt="" /></p>
<h2><a name="toc_2">Chargeback</a></h2>
<p>When you have management groups setup, you can then setup charging mechanisms per group. This is incredibly useful to help work out the TCO of a NetApp system and also obviously how to charge departments back for their usage (or even just show them how much their usage is costing).</p>
<p>How to calculate your cost per GB should be is outside of the scope of this doc, but should take into account several aspects of the filer management, user admin costs and also the basic costs of storage. To get a full costing all aspects need to be reviewed and adjusted for (power, cooling, space, admin costs, management, and so on). For this example we are simply using 5 per GB (although 50 may be closer to reality on a large system). 5 can be $, £, or whatever you want. Because the £ symbol is not a standard ASCII symbol, we have to enter the HTML character code for it. This is &#8220;&amp;#163;&#8221;. The currency can be set in &#8220;Setup&#8221;, &#8220;Options&#8221;, &#8220;Chargeback&#8221;. You can also set the defaults here.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 285px;"></col>
<col style="width: 247px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm7.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm8.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt" colspan="2"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm9.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt" colspan="2"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm10.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>Got back into &#8220;Edit Groups&#8221;</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm11.png" alt="" /></p>
<p>And choose the group we have just setup (here we setup a new group for the User Home Directories).</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm12.png" alt="" /></p>
<p>At the bottom of the page we have an &#8220;Annual Charge Rate (per GB)&#8221; and you&#8217;ll see the default we&#8217;ve now set. You can alter this for different areas, so VMware may have a different cost to users home directories. Or FC disk may have a different cost to SATA disk.</p>
<p>Chargeback works on averages, so if this is a fresh system or you have just initialised the quota&#8217;s, then this may not give any useful information just yet.</p>
<h2><a name="toc_3">Generate Pre-Built Report</a></h2>
<h3><a name="toc_4">Volume Growth</a></h3>
<p>Now we can create some reports based on this. Click on &#8220;Reports&#8221; and &#8220;All&#8221; and we can generate a pre-built report based on our new management group.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm13.png" alt="" /></p>
<p>We want to create a growth report here, so on the left hand side, under &#8220;Logical Objects&#8221; choose &#8220;Volumes&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm14.png" alt="" /></p>
<p>Then choose &#8220;Volume Growth&#8221;</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm15.png" alt="" /></p>
<p>At the bottom under &#8220;Using Resource&#8221;, click &#8220;Browse&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm16.png" alt="" /></p>
<p>Then under &#8220;Resources&#8221; and &#8220;Groups&#8221; drill down to our newly created group. Just select the top level group and not the individual members. OK this.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm17.png" alt="" /></p>
<p>The selection a the bottom changes and click on &#8220;Show&#8221; and we&#8217;ll get our volume growth for this management group.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm18.png" alt="" /></p>
<p>The below example had only recently been setup, the growth rates have not had chance to be registered.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm19.png" alt="" /></p>
<h3><a name="toc_5">User usage</a></h3>
<p>For this to work successfully, you need to have some quota&#8217;s setup on the users home directories. These don&#8217;t have to be hard quota&#8217;s, in this example we will be setting up some soft quota&#8217;s on the filer, and then reporting against this.</p>
<p>From FilerView, goto &#8220;Volumes&#8221;, &#8220;Quotas&#8221;, &#8220;Add&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm20.png" alt="" /></p>
<p>Here we have a single home directory volume and we are going to add a default User quota based on this.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm21.png" alt="" /></p>
<p>In this particular volume we have a qtree setup for &#8220;normal&#8221; users. In this example this is actually just one qtree for all users, but this can be setup to report on multiple qtrees if needed.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm22.png" alt="" /></p>
<p>For this example here we don&#8217;t actually want to use quota&#8217;s, we simply want to report against our users. So we are going to use a soft quota of 5 GB. I have also put a soft quota on 50,000 (50k) files. All other entries are left blank to prevent any hard limits or other limits being enforced.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm23.png" alt="" /></p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm24.png" alt="" /></p>
<p>Remember to enable this quota we need to go back to the manage page, check it, and click &#8220;on&#8221; at the bottom. If it has already been enabled, click &#8220;resize&#8221; to reload the quota details.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 183px;"></col>
<col style="width: 251px;"></col>
<col style="width: 204px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm25.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm26.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm27.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>The filer will now scan the volume, if it is large it may take some time…</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm28.png" alt="" /></p>
<p>Once this has complete, verify that it is working as expected by looking at &#8220;Quotas&#8221; and &#8220;Report&#8221;. We can see the soft limits working in place for our example here.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm29.png" alt="" /></p>
<p>I also have setup a &#8220;Tree&#8221; quota, again with soft limits, on a departmental share with separate Qtrees for each department. We can see the results of that quota below.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm30.png" alt="" /></p>
<p>Back in Operations Manager. By default the monitoring period for Qtree&#8217;s and Quota&#8217;s is 8 hours and 1 day respectively. If we are demo&#8217;ing this, or setting this up for a customer, we may want to reduce this to allow us to show the immediate effects.</p>
<p>Goto &#8220;Setup&#8221;, &#8220;Discovery&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm31.png" alt="" /></p>
<p>Then goto &#8220;Monitoring&#8221;</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm32.png" alt="" /></p>
<p>And update the Qtree Monitoring and User Quota Monitoring intervals. Here I have changed them to 5 minutes and had a quick coffee break.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm33.png" alt="" /></p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm34.png" alt="" /></p>
<p>We will need a new management group this, so I have created a new group called &#8220;User Areas&#8221; and I added in the Qtree &#8220;/home/normal&#8221; into the list of members.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm35.png" alt="" /></p>
<p>We can check that this has successfully picked up our new quotas and is recognising the users by looking at the &#8220;Group Status&#8221; and then &#8220;Quotas&#8221; tab.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm36.png" alt="" /></p>
<p>We now see  a list of all the users and the status of their level. Users with green status will be under quota, those with yellow will be over quota.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm37.png" alt="" /></p>
<p>Now we can finally report on this usage! Under &#8220;Reports&#8221;, &#8220;All&#8221;, then under &#8220;Monitoring&#8221; choose &#8220;User Quotas&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm38.png" alt="" /></p>
<p>Choose &#8220;User Quotas, All&#8221; and make sure you are &#8220;Using Resource&#8221; for the management group we just setup.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm39.png" alt="" /></p>
<p>This report is almost identical to the one shown within FilerView, but it is a little easier to understand and is sortable.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm40.png" alt="" /></p>
<p>Users that no longer exist on the domain will appear with their SID rather than their username.</p>
<p>The limitation here is that Quota&#8217;s are entirely driven by ownership. So if a user does not own their home directory, then the above process will not work, you will find that &#8220;Administrator&#8221; owns a large proportion of user files. This should be addressed as it is best practice to make sure all users own their own files anyway.</p>
<h2><a name="toc_6">Build a Custom Report</a></h2>
<p>If we want to build a custom report, maybe comparing 2 data fields that don&#8217;t normally exist on the same report, we can do so. Under &#8220;Reports&#8221; click &#8220;Custom&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm41.png" alt="" /></p>
<p>You&#8217;ll be taken through to the &#8220;Create a Report&#8221; page by default. There is a veritable banquet of options for custom reports, so have a careful think before simply diving in to create or show this feature off. It may be best to base what you require on an existing report. Most things are available in the pre-built reports, so it may be that you just want to customise this slightly.</p>
<p>For this example, I want a single report to display the username, disk space used, files used, chargeback, daily growth rate % and days to full.</p>
<p>Whatever report you create must have at least one field taken from the &#8220;Base Catalog&#8221;, so choose the &#8220;Base Catalog&#8221; that best suits what you are trying to report on. For this example it is obviously going to be &#8220;UserQuota&#8221;.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm42.png" alt="" /></p>
<p>The display tab is quite important as this shows where in Operations Manager this report will be visible from a drop down menu. When you are different pages, Operations Manager gives you different lists that you can choose from. Again, on this occasion it makes sense to include this report in the &#8220;Quotas&#8221; tab.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm43.png" alt="" /></p>
<p>Next we need to start defining what information we want to include in this report. So from what I defined at the start, I will start filling out my report. Remember you need at least 1 field from the top level.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 272px;"></col>
<col style="width: 366px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">Daily Growth Rate %</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm44.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">Days to Full</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm45.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">Disk Space Used</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm46.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">Files Used</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm47.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">Username (note I have to drill down a level to get this info)</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm48.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt">Chargeback</td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm49.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>Then I need to order this in the way I defined for my report.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 310px;"></col>
<col style="width: 320px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm50.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm51.png" alt="" /></td>
</tr>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  none; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt" colspan="2">
<p style="text-align: center"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm52.png" alt="" /></p>
</td>
</tr>
</tbody>
</table>
</div>
<p>And finally click &#8220;Create&#8221; and we see our new Custom report at the bottom.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm53.png" alt="" /></p>
<p>To see this report in action, go back &#8220;Home&#8221;, then click on &#8220;User Home Directories&#8221; (my custom group), &#8220;Quotas&#8221; and chose this from the drop down &#8220;Report&#8221; at the top right.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 83px;"></col>
<col style="width: 218px;"></col>
<col style="width: 149px;"></col>
<col style="width: 188px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm54.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm55.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm56.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm57.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>As mentioned earlier, there are some blanks in this as the report hasn&#8217;t been collecting data for long, so there is no data for the growth rate or the chargeback amounts.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm58.png" alt="" /></p>
<p>If you want to tweak this report, you can go back into &#8220;Reports&#8221;, &#8220;Custom&#8221; and select &#8220;Edit&#8221; from the list at the bottom of the page.</p>
<h2><a name="toc_7">Scheduled Reports</a></h2>
<p>Once you know which reports are useful, or perhaps pulled certain aspects out of different reports to create your own custom one, then you may want to schedule these reports and get them emailed to you. Goto &#8220;Reports&#8221; and &#8220;Schedule&#8221;</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm59.png" alt="" /></p>
<p>First we want to create a schedule, so click on the &#8220;Schedule&#8221; tab and click &#8220;Add New Schedule&#8221;</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 283px;"></col>
<col style="width: 355px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm60.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm61.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>Create a schedule based on what your requirements are. Here I want a report generated every Sunday at 8pm.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm62.png" alt="" /></p>
<p>Now back to &#8220;Report Schedules&#8221; and we can &#8220;Add New Report Schedule&#8221;.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 338px;"></col>
<col style="width: 300px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm63.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm64.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>From here I can now create my Scheduled Report and the email recipients. I am going to get my new custom report (User Custom Usage) to run against my new management group (User Home Directories) to get generated per my new schedule (Weekly Sunday Evening) and emailed to myself. I&#8217;m going to keep the standard HTML formatting and all the other standard settings.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm65.png" alt="" /></p>
<p>Make sure that a valid mail server has been configured before generating any reports. Goto &#8220;Setup&#8221;, &#8220;Options&#8221;, &#8220;Events and Alerts&#8221;. Here I have also updated the purge interval as I don&#8217;t want alerts older than 1 week.</p>
<p><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm66.png" alt="" /></p>
<p>To test this schedule, I want to run it now. Check the checkbox of my new schedule and click &#8220;Run Selected&#8221;.</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width: 290px;"></col>
<col style="width: 348px;"></col>
</colgroup>
<tbody>
<tr>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  solid black 0.5pt; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm67.png" alt="" /></td>
<td style="padding-left: 7px; padding-right: 7px; border-top:  solid black 0.5pt; border-left:  none; border-bottom:  solid black 0.5pt; border-right:  solid black 0.5pt"><img src="http://www.wafl.co.uk/wp-content/uploads/2009/07/070909-1700-operationsm68.png" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p>The report will be attached in a zip file.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=9YrQ_jvXJtk:ZEtCEZXpXmc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=9YrQ_jvXJtk:ZEtCEZXpXmc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=9YrQ_jvXJtk:ZEtCEZXpXmc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=9YrQ_jvXJtk:ZEtCEZXpXmc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=9YrQ_jvXJtk:ZEtCEZXpXmc:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/9YrQ_jvXJtk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/operations-manager-reporting-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/operations-manager-reporting-2/</feedburner:origLink></item>
		<item>
		<title>NetApp Man Pages</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/ywx53Nx16VI/</link>
		<comments>http://www.wafl.co.uk/netapp-man-pages/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 01:20:46 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Manual Pages]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[man]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[ONTAP]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=1134</guid>
		<description><![CDATA[NetApp have kindly given me permission to republish their man pages here. They still need a little tidying up, but the sheer quantity means it&#8217;ll take me awhile to get them all sorted and cross-referenced properly, please excuse any visual issues for the moment. I wrote a quick parsing tool to get all the info [...]]]></description>
			<content:encoded><![CDATA[<p>NetApp have kindly given me permission to republish their man pages here. They still need a little tidying up, but the sheer quantity means it&#8217;ll take me awhile to get them all sorted and cross-referenced properly, please excuse any visual issues for the moment. I wrote a quick parsing tool to get all the info on here, so there may be a few issues resulting from that still.</p>
<p>I&#8217;ve always liked the way that PHP have their function pages giving users the ability to comment directly onto them. This allows people to leave feedback on functions and tools, and also follow up with some extra uses or syntax for commands that aren&#8217;t necessarily clearly published. Hopefully this can feed back into NetApp to improve their documentation.</p>
<p>I&#8217;d definitely like to encourage people to comment on the man pages with anything that may be useful, and hopefully build this into a useful little reference section. Many thanks again for the NetApp folk for helping me with this.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=ywx53Nx16VI:lBcdwiMLHlk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=ywx53Nx16VI:lBcdwiMLHlk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=ywx53Nx16VI:lBcdwiMLHlk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=ywx53Nx16VI:lBcdwiMLHlk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=ywx53Nx16VI:lBcdwiMLHlk:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/ywx53Nx16VI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/netapp-man-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/netapp-man-pages/</feedburner:origLink></item>
		<item>
		<title>aggr</title>
		<link>http://feedproxy.google.com/~r/Wafl-ATechnicalDiary/~3/g8W6xEbX3-k/</link>
		<comments>http://www.wafl.co.uk/aggr-2/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 01:11:55 +0000</pubDate>
		<dc:creator>Chris Kranz</dc:creator>
				<category><![CDATA[Manual Pages]]></category>
		<category><![CDATA[aggr]]></category>
		<category><![CDATA[man]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[ONTAP]]></category>

		<guid isPermaLink="false">http://www.wafl.co.uk/?p=656</guid>
		<description><![CDATA[ Table of Contents  NAME   aggr &#8211; commands for managing aggregates&#44;  displaying aggregate status&#44;  and copying aggregates   SYNOPSIS  aggr command argument &#8230;   DESCRIPTION  The aggr command family manages aggregates. The aggr commands can create new aggregates&#44;  destroy existing ones&#44;  undestroy previously destroyed [...]]]></description>
			<content:encoded><![CDATA[<p><P> <A HREF="#toc">Table of Contents</A><P>  <H2><A NAME="sect1" HREF="#toc1">NAME</A></H2>   aggr &#8211; commands for managing aggregates&#44;  displaying aggregate status&#44;  and copying aggregates <P>  <H2><A NAME="sect2" HREF="#toc2"><B>SYNOPSIS</B></A></H2>  <B>aggr</B> <I>command</I> <I>argument</I> <I>&#8230;</I> <P>  <H2><A NAME="sect3" HREF="#toc3"><B>DESCRIPTION</B></A></H2>  The <B>aggr</B> command family manages <I>aggregates</I>. The <B>aggr</B> commands can create new aggregates&#44;  destroy existing ones&#44;  undestroy previously destroyed aggregate&#44;  manage plexes within a mirrored aggregate&#44;  change aggregate status&#44;  apply options to an aggregate&#44;  copy one aggregate to another&#44;  and display their status. Aggregate commands often affect the volume(s) contained within aggregates. <P> The <B>aggr</B> command family is new in Data ONTAP 7.0. The <B>vol</B> command family provided control over the <I>traditional</I> <I>vol_</I>u<I>mes</I> that fused a single user-visible file system and a single RAID-level storage container (aggregate) into an indivisible unit&#44;  and still does. To allow for more flexible use of storage&#44;  aggregates now also support the ability to contain multiple&#44;  independent user-level file systems named <I>flexible</I> <I>volumes</I>. <P> Data ONTAP 7.0 fully supports both traditional and flexible volumes. The <B>aggr</B> command family is the preferred method for managing a filer&#8217;s aggregates&#44;  including those that are embedded in traditional volumes. <P> Note that most of the <B>aggr</B> commands apply equally to both the type of aggregate that contains flexible volumes and the type that is tightly bound to form a traditional volume. Thus&#44;  the term <B>aggregate</B> is often used here to refer to <B>both</B> storage classes. In those cases&#44;  it provides a shorthand for the longer and more unwieldy phrase &quot;aggregates and traditional volumes&#8221;. <P> Aggregates may either be mirrored or unmirrored. A <I>plex</I> is a physical copy of the WAFL storage within the aggregate. A mirrored aggregate consists of two plexes; unmirrored aggregates contain a single plex. In order to create a mirrored aggregate&#44;  you must have a filer configuration that supports RAID-level mirroring. When mirroring is enabled on the filer&#44;  the spare disks are divided into two disk pools. When an aggregate is created&#44;  all of the disks in a single plex must come from the same disk pool&#44;  and the two plexes of a mirrored aggregate must consist of disks from separate pools&#44;  as this maximizes fault isolation. This policy can be overridden with the <B>-f</B> option to <B>aggr</B> <B>create</B>&#44;  <B>aggr</B> <B>add</B> and <B>aggr</B> <B>mirror</B>&#44;  but it is not recommended. <P> An aggregate name can contain letters&#44;  numbers&#44;  and the underscore character(_)&#44;  but the first character must be a letter or underscore. A combined total of up to 200 aggregates (including those embedded in traditional volumes) can be created on each filer. <P> A plex may be online or offline. If it is offline&#44;  it is not available for read or write access. Plexes can be in combinations of the following states: <P> <B>normal</B> All RAID groups in the plex are functional. <P> <B>failed</B> At least one of the RAID groups in the plex has failed. <P> <B>empty</B> The plex is part of an aggregate that is being created&#44;  and one or more of the disks targeted to the aggregate need to be zeroed before being added to the plex. <P> <B>active</B> The plex is available for use. <P> <B>inactive</B><BR>  The plex is not available for use. <P> <B>resyncing</B><BR>  The plex&#8217;s contents are currently out of date and are in the process of being resynchronized with the contents of the other plex of the aggregate (applies to mirrored aggregates only). <P> <B>adding</B> <B>disks</B><BR>  Disks are being added to the plex&#8217;s RAID group(s). <P> <B>out-of-date</B><BR>  This state only occurs in mirrored aggregates where one of the plexes has failed. The non-failed plex will be in this state if it needed to be resynchronized at the time the other plex failed. <P> A plex is named using the name of the aggregate&#44;  a slash character delimiter&#44;  and the name of the plex. The system automatically selects plex names at creation time. For example&#44;  the first plex created in aggregate <B>aggr0</B> would be <B>aggr0/plex0</B>. <P> An aggregate may be online&#44;  restricted&#44;  or offline. When an aggregate is offline&#44;  no read or write access is allowed. When an aggregate is restricted&#44;  certain operations are allowed (such as aggregate copy&#44;  parity recomputation or RAID reconstruction) but data access is not allowed. Aggregates that are not a part of a traditional volume can only be restricted or offlined if they do not contain any flexible volumes. <P> Aggregates can be in combinations of the following states: <P> <B>aggr</B> The aggregate is a modern-day aggregate; it is capable of containing zero or more flexible volumes. <P> <B>copying</B><BR>  The aggregate is currently the target aggregate of an active <B>aggr</B> <B>copy</B> operation. <P> <B>degraded</B><BR>  The aggregate contains at least one degraded RAID group that is not being reconstructed. <P> <B>foreign</B><BR>  The disks that the aggregate contains were moved to the current filer from another filer. <P> <B>growing</B><BR>  Disks are in the process of being added to the aggregate. <P> <B>initializing</B><BR>  The aggregate is in the process of being initialized. <P> <B>invalid</B><BR>  The aggregate contains no volumes and none can be added. Typically this happens only after an aborted <B>aggregate</B> <B>copy</B> operation. <P> <B>ironing</B><BR>  A WAFL consistency check is being performed on this aggregate. <P> <B>mirror</B> <B>degraded</B><BR>  The aggregate is a mirrored aggregate&#44;  and one of its plexes is offline or resyncing. <P> <B>mirrored</B><BR>  The aggregate is mirrored and all of its RAID groups are functional. <P> <B>needs</B> <B>check</B><BR>  A WAFL consistency check needs to be performed on the aggregate. <P> <B>partial</B><BR>  At least one disk was found for the aggregate&#44;  but two or more disks are missing. <P> <B>raid0</B> The aggregate consists of RAID-0 (no parity) RAID groups (V-Series and NetCache only). <P> <B>raid4</B> The aggregate consists of RAID-4 RAID groups. <P> <B>raid_dp</B><BR>  The aggregate consists of RAID-DP (Double Parity) RAID groups. <P> <B>reconstruct</B><BR>  At least one RAID group in the aggregate is being reconstructed. <P> <B>redirect</B><BR>  Aggregate reallocation or file reallocation with the -p option has been started on the aggregate. Read performance to volumes in the aggregate may be degraded. <P> <B>resyncing</B><BR>  One of the plexes of a mirrored aggregate is being resynchronized. <P> <B>snapmirrored</B><BR>  The aggregate is a snapmirrored replica of another aggregate. This state can only arise if the aggregate is part of a traditional volume. <P> <B>trad</B> The aggregate is fused with a single volume. This is also referred to as a traditional volume and is exactly equivalent to the volumes that existed before Data OnTAP 7.0. Flexible volumes can not be created inside of this aggregate. <P> <B>verifying</B><BR>  A RAID mirror verification operation is currently being run on the aggregate. <P> <B>wafl</B> <B>inconsistent</B><BR>  The aggregate has been marked corrupted. Please contact Customer Support if you see an aggregate in this state. <P>  <H2><A NAME="sect4" HREF="#toc4"><B>USAGE</B></A></H2>  The following commands are available in the <B>aggr</B> suite: <P> <DL> <DT><PRE>  add             mirror          restrict        undestroy   copy            offline         scrub           verify   create          online          show_space   destroy         options         split   media_scrub     rename          status </PRE>  <P> </DD> </DL> <B>aggr</B> <B>add</B> <I>aggrname</I><BR>  [ <B>-f</B> ]<BR>  [ <B>-n</B> ]<BR>  [ <B>-g</B> {<I>raidgroup</I> | <B>new</B> | <B>all</B>} ]<BR>  { <I>ndisks</I>[@<I>size</I>]<BR>  <DL> <DT>| <DD><B>-d</B> <I>disk1</I> [ <I>disk2</I> ... ] [ <B>-d</B> <I>diskn</I> [ <I>diskn+1</I> ... ] ] } <P> </DD> </DL> Adds disks to the aggregate named <I>aggrname</I>. Specify the disks in the same way as for the <B>aggr</B> <B>create</B> command. If the aggregate is mirrored&#44;  then the <B>-d</B> argument must be used twice (if at all). <P> If the <B>-g</B> option is not used&#44;  the disks are added to the most recently created RAID group util it is full&#44;  and then one or more new RAID groups are created and the remaining disks are added to new groups. Any other existing RAID groups that are not full remain partially filled. <P> The <B>-g</B> option allows specification of a RAID group (for example&#44;  <I>rg0</I>) to which the indicated disks should be added&#44;  or a method by which the disks are added to new or existing RAID groups. <P> If the <B>-g</B> option is used to specify a RAID group&#44;  that RAID group must already exist. The disks are added to that RAID group util it is full. Any remaining disks are ignored. <P> If the <B>-g</B> option is followed by <B>new</B>&#44;  Data ONTAP creates one or more new RAID groups and adds the disks to them&#44;  even if the disks would fit into an existing RAID group. Any existing RAID groups that are not full remain partially filled. The name of the new RAID groups are selected automatically. It is not possible to specify the names for the new RAID groups. <P> If the <B>-g</B> option is followed by <B>all</B>&#44;  Data ONTAP adds the specified disks to existing RAID groups first. After all existing RAID groups are full&#44;  it creates one or more new RAID groups and adds the specified disks to the new groups. <P> The <B>-n</B> option can be used to display the command that the system will execute&#44;  without actually making any changes. This is useful for displaying the automatically selected disks&#44;  for example. <P> By default&#44;  the filer fills up one RAID group with disks before starting another RAID group. Suppose an aggregate currently has one RAID group of 12 disks and its RAID group size is 14. If you add 5 disks to this aggregate&#44;  it will have one RAID group with 14 disks and another RAID group with 3 disks. The filer does not evenly distribute disks among RAID groups. <P> You cannot add disks to a mirrored aggregate if one of the plexes is offline. <P> The disks in a plex are not permitted to span disk pools. This behavior can be overridden with the <B>-f</B> flag when used together with the <B>-d</B> argument to list disks to add. The <B>-f</B> flag&#44;  in combination with <B>-d</B>&#44;  can also be used to force adding disks that have a rotational speed that does not match that of the majority of existing disks in the aggregate. <P> <B>aggr</B> <B>copy</B> <B>abort</B> <B>[</B> <B>-h]</B> <I>operation_number</I> | <B>all</B> <P> Terminates aggregate copy operations. The <I>opera_</I>t<I>ion_number</I> parameter specifies which operation to terminate. If you specify <B>all</B>&#44;  all aggregate active copy operations are terminated. <P> <B>aggr</B> <B>copy</B> <B>start</B><BR>  [ <B>-S</B> | <B>-s</B> <I>snapshot</I> ] [ <B>-C</B> <B>]</B><BR>  <I>source</I> <I>destination</I> <P> Copies all data&#44;  including snapshots and flexible volumes&#44;  from one aggregate to another. If the <B>-S</B> flag is used&#44;  the command copies all snapshots in the source aggregate to the destination aggregate. To specify a particular snapshot to copy&#44;  use the <B>-s</B> flag followed by the name of the snapshot. If you use neither the <B>-S</B> nor <B>-s</B> flag in the command&#44;  the filer creates a snapshot at the time when the <B>aggr</B> <B>copy</B> <B>start</B> command is executed and copies only that snapshot to the destination aggregate. <P> The <B>-C</B> flag is required if the source aggregate has had free-space defragmentation performed on it&#44;  or if the destination aggregate will be free-space defragmented. Free-space defragmentation can be performed on an aggregate using the <B>reallocate</B> command. <P> Aggregate copies can only be performed between aggregates that host flexible volumes. Aggregates that are embedded in traditional volumes cannot participate. <P> The source and destination aggregates can be on the same filer or different filers. If the source or destination aggregate is on a filer other than the one on which you enter the <B>aggr</B> <B>copy</B> <B>start</B> command&#44;  specify the aggregate name in the <I>filer_name</I>:<I>aggre_</I>g<I>ate_name</I> format. <P> The filers involved in an aggregate copy must meet the following requirements for the <B>aggr</B> <B>copy</B> <B>start</B> command to be completed successfully: <P> The source aggregate must be online and the destination aggregate must be restricted. <P> If the copy is between two filers&#44;  each filer must be defined as a trusted host of the other filer. That is&#44;  the filer&#8217;s name must be in the <I>/etc/hosts.equiv</I> file of the other filer. <P> If the copy is on the same filer&#44;  localhost must    be    included    in    the    filer&#8217;s <I>/etc/hosts.equiv</I> file. Also&#44;  the loopback address must be in the filer&#8217;s <I>/etc/hosts</I> file. Otherwise&#44;  the filer cannot send packets to itself through the loopback address when trying to copy data. <P> The usable disk space of the destination aggregate must be greater than or equal to the usable disk space of the source aggregate. Use the <B>df</B> <B>-A</B> <I>pathname</I> command to see the amount of usable disk space of a particular aggregate. <P> Each <B>aggr</B> <B>copy</B> <B>start</B> command generates two aggregate copy operations: one for reading data from the source aggregate and one for writing data to the destination aggregate. Each filer supports up to four simultaneous aggregate copy operations. <P> <B>aggr</B> <B>copy</B> <B>status</B> [ <I>operation_number</I> ] <P> Displays the progress of one or all <B>aggr</B> <B>copy</B> operations. The operations are numbered from 0 through 3. <P> Restart checkpoint information for all transfers is also displayed. <P> <B>aggr</B> <B>copy</B> <B>throttle</B> [ <I>operation_number</I> ] <I>value</I> <P> Controls the performance of the <B>aggr</B> <B>copy</B> operation. The <I>value</I> ranges from 10 (full speed) to 1 (one-tenth of full speed). The default value is maintained in the filer&#8217;s <B>aggr.copy.throttle</B> option and is set 10 (full speed) at the factory. You can apply the performance value to an operation specified by the <I>operation_number</I> parameter. If you do not specify an operation number in the <B>aggr</B> <B>copy</B> <B>throttle</B> command&#44;  the command applies to all <B>aggr</B> <B>copy</B> operations. <P> Use this command to limit the speed of the <B>aggr</B> <B>copy</B> operation if you suspect that the <B>aggr</B> <B>copy</B> operation is causing performance problems on your filer. In particular&#44;  the throttle is designed to help limit the CPU usage of the <B>aggr</B> <B>copy</B> operation. It cannot be used to fine-tune network bandwidth consumption patterns. <P> The <B>aggr</B> <B>copy</B> <B>throttle</B> command only enables you to set the speed of an <B>aggr</B> <B>copy</B> operation that is in progress. To set the default <B>aggr</B> <B>copy</B> speed to be used by future copy operations&#44;  use the <B>options</B> command to set the <B>aggr.copy.throttle</B> option. <P> <B>aggr</B> <B>create</B> <I>aggrname</I><BR>  [ <B>-f</B> ]<BR>  [ <B>-m</B> ]<BR>  [ <B>-n</B> ]<BR>  [ <B>-t</B> <I>raidtype</I> ]<BR>  [ <B>-r</B> <I>raidsize</I> ]<BR>  [ <B>-T</B> <I>disk-type</I> ]<BR>  [ <B>-R</B> <I>rpm</I> ]<BR>  [ <B>-L</B> [<B>compliance</B> | <B>enterprise</B>] ]<BR>  [ <B>-v</B> ]<BR>  [ <B>-l</B> <I>language-code</I> ]<BR>  { <I>ndisks</I>[@<I>size</I>]<BR>  <DL> <DT>| <DD><B>-d</B> <I>disk1</I> [ <I>disk2</I> ... ] [ <B>-d</B> <I>diskn</I> [ <I>diskn+1</I> ... ] ] } <P> </DD> </DL> Creates a new aggregate named <I>aggrname</I>. The aggregate name can contain letters&#44;  numbers&#44;  and the underscore character(_)&#44;  but the first character must be a letter or underscore. Up to 200 aggregates can be created on each filer. This number includes those aggregates that are embedded within traditional volumes. <P> An embedded aggregate can be created as part of a traditional volume using the <B>-v</B> option. It cannot contain any flexible volumes. <P> A regular aggregate&#44;  created without the <B>-v</B> option&#44;  can contain only flexible volumes. It cannot be incorporated into a traditional volume&#44;  and it contains no volumes immediately after creation. New flexible volumes can be created using the <B>vol</B> <B>create</B> command. <P> The <B>-t</B> <I>raidtype</I> argument specifies the type of RAID group(s) to be used to create the aggregate. The possible RAID group types are <B>raid4</B> for RAID-4&#44;  <B>raid_dp</B> for RAID-DP (Double Parity)&#44;  and <B>raid0</B> for simple striping without parity protection. The default <I>raidtype</I> for aggregates and traditional volumes on filers is <B>raid_dp</B>. Setting the <I>raidtype</I> is not permitted on V-Series systems; the default of <B>raid0</B> is always used. <P> The <B>-r</B> <I>raidsize</I> argument specifies the maximum number of disks in each RAID group in the aggregate. The maximum and default values of <I>raidsize</I> are platform-dependent&#44;  based on performance and reliability considerations. See <B>aggr</B> <B>options</B> <B>raidsize</B> for more details. <P> The <B>-T</B> <I>disk-type</I> argument specifies the type of disks to use when creating a new aggregate. It is needed only on systems connected to disks of different types. Possible disk types are: <B>ATA</B>&#44;  <B>FCAL</B>&#44;  <B>LUN</B>&#44;  <B>SAS</B>&#44;  <B>SATA</B>&#44;  and <B>SCSI</B>. Mixing disks of different types in one aggregate is not allowed. <B>-T</B> cannot be used together with <B>-d</B>. <P> <B>Disk</B> <B>type</B> identifies disk technology and connectivity type. <B>ATA</B> identifies ATA disks with either IDE or serial ATA interface in shelves connected in FCAL (Fibre Channel Arbitrated Loop). <B>FCAL</B> identifies FC disks in shelves connected in FC-AL. <B>LUN</B> identifies virtual disks exported from external storage arrays. The underlying disk technology and RAID type depends on implementation of such external storage arrays. <B>SAS</B> identifies Serial Attached SCSI disks in matching shelves. <B>SATA</B> identifies serial ATA disks in SAS shelves. <B>SCSI</B> stands for Small Computer System Interface&#44;  and it is included for backward compatibility with earlier disk technologies. <P> The <B>-R</B> <I>rpm</I> argument specifies the type of disks to use based on their rotational speed in revolutions per minute (rpm). It is needed only on systems having disks with different rotational speeds. Typical values for rotational speed are 5400&#44;  7200&#44;  10000&#44;  and 15000. <B>-R</B> cannot be used together with <B>-d</B>. <P> <I>ndisks</I> is the number of disks in the aggregate&#44;  including the parity disks. The disks in this newly created aggregate come from the pool of spare disks. The smallest disks in this pool join the aggregate first&#44;  unless you specify the @<I>size</I> argument. <I>size</I> is the disk size in GB&#44;  and disks that are within 10% of the specified size will be selected for use in the aggregate. <P> The <B>-m</B> option can be used to specify that the new aggregate be mirrored (have two plexes) upon creation. If this option is given&#44;  then the indicated disks will be split across the two plexes. By default&#44;  the new aggregate will not be mirrored. <P> The <B>-n</B> option can be used to display the command that the system will execute&#44;  without actually making any changes. This is useful for displaying the automatically selected disks&#44;  for example. <P> If you use the <B>-d</B> <I>disk1</I> [ <I>disk2</I> ... ] argument&#44;  the filer creates the aggregate with the specified spare disks <I>disk1</I>&#44;  <I>disk2</I>&#44;  and so on. You can specify a space-separated list of disk names. Two separate lists must be specified if the new aggregate is mirrored. In the case that the new aggregate is mirrored&#44;  the indicated disks must result in an equal number of disks on each new plex. <P> The disks in a plex are not permitted to span spare pools. This behavior can be overridden with the <B>-f</B> option. The same option can also be used to force using disks that do not have matching rotational speed. The <B>-f</B> option has effect only when used with the <B>-d</B> option specifying disks to use. <P> To create a <B>SnapLock</B> aggregate&#44;  specify the <B>-L</B> flag with the <B>aggr</B> <B>create</B> command. This flag is only supported if either <B>SnapLock</B> <B>Compliance</B> or <B>SnapLock</B> <B>Enterprise</B> is licensed. The type of the SnapLock aggregate created&#44;  either Compliance or Enterprise&#44;  is determined by the installed SnapLock license. If both <B>SnapLock</B> <B>Compliance</B> and <B>SnapLock</B> <B>Enterprise</B> are licensed&#44;  use <B>-L</B> <B>compliance</B> or <B>-L</B> <B>enterprise</B> to specify the desired aggregate type. <P> The <B>-l</B> <I>language_code</I> argument may be used only when creating a traditional volume using option <B>-v</B>. The filer creates the traditional volume with the language specified by the language code. The default is the language used by the filer&#8217;s root volume. See the <B> vol</B> <B></B> man page for a list of language codes. <P> <B>aggr</B> <B>destroy</B> <B>{</B> <I>aggrname</I> | <I>plexname</I> } [ <B>-f</B> ] <P> Destroys the aggregate named <I>aggrname</I>&#44;  or the plex named <I>plexname</I>. Note that if the specified aggregate is tied to a traditional volume&#44;  then the traditional volume itself is destroyed as well. <P> If an aggregate is specified&#44;  all plexes in the aggregate are destroyed. The named aggregate must also not contain any flexible volumes&#44;  regardless of their mount state (online&#44;  restricted&#44;  or offline). If a plex is specified&#44;  the plex is destroyed&#44;  leaving an unmirrored aggregate or traditional volume containing the remaining plex. Before destroying the aggregate&#44;  traditional volume or plex&#44;  the user is prompted to confirm the operation. The <B>-f</B> flag can be used to destroy an aggregate&#44;  traditional volume or plex without prompting the user. <P> The disks originally in the destroyed object become spare disks. Only offline aggregates&#44;  traditional volumes and plexes can be destroyed. <P> <B>aggr</B> <B>media_scrub</B> <B>status</B> [ <I>aggrname</I> | <I>plexname</I> | <I>groupname</I> ]<BR>  [ <B>-v</B> ] <P> Prints the media scrubbing status of the named aggregate&#44;  plex&#44;  or group. If no name is given&#44;  then status is printed for all RAID groups currently running a media scrub. The status includes a percent-complete and whether it is suspended. <P> The <B>-v</B> flag displays the date and time at which the last full media scrub completed&#44;  the date and time at which the current instance of media scrubbing started&#44;  and the current status of the named aggregate&#44;  plex&#44;  or group. If no name is given&#44;  this more verbose status is printed for all RAID groups with active media scrubs. <P> <B>aggr</B> <B>mirror</B> <I>aggrname</I><BR>  [ <B>-f</B> ]<BR>  [ <B>-n</B> ]<BR>  [ <B>-v</B> <I>victim_aggrname</I> ]<BR>  [ <B>-d</B> <I>disk1</I> [ <I>disk2</I> ... ] ] <P> Turns an unmirrored aggregate into a mirrored aggregate by adding a plex to it. The plex is either newly-formed from disks chosen from a spare pool&#44;  or&#44;  if the <B>-v</B> option is specified&#44;  is taken from another existing unmirrored aggregate. Aggregate <I>aggrname</I> must currently be unmirrored. Use <B>aggr</B> <B>create</B> to make a new&#44;  mirrored aggregate from scratch. <P> Disks may be specified explicitly using <B>-d</B> in the same way as with the <B>aggr</B> <B>create</B> and <B>aggr</B> <B>add</B> commands. The number of disks indicated must match the number present on the existing aggregate. The disks specified are not permitted to span disk pools. This behavior can be overridden with the <B>-f</B> option. The <B>-f</B> option&#44;  in combination with <B>-d</B>&#44;  can also be used to force using disks that have a rotational speed that does not match that of the majority of existing disks in the aggregate. <P> If disks are not specified explicitly&#44;  then disks are automatically selected to match those in the aggregate&#8217;s existing plex. <P> The <B>-v</B> option can be used to join <I>victim_aggrname</I> back into <I>aggrname</I> to form a mirrored aggregate. The result is a mirrored aggregate named <I>aggrname</I> which is otherwise identical to <I>aggrname</I> before the operation.     <I>Victim_aggrname</I>    is    effectively destroyed. <I>Victim_aggrname</I> must have been previously mirrored with <I>aggrname</I>&#44;  then separated via the aggr split command. <I>Victim_aggrname</I> must be offline. Combined with the <B>-v</B> option&#44;  the <B>-f</B> option can be used to join <I>aggrname</I> and <I>vic_</I>t<I>im_aggrname</I> without prompting the user. <P> The <B>-n</B> option can be used to display the command that the system will execute without actually making any changes. This is useful for displaying the automatically selected disks&#44;  for example. <P> <B>aggr</B> <B>offline</B> { <I>aggrname</I> | <I>plexname</I> }<BR>  [ <B>-t</B> <I>cifsdelaytime</I> ] <P> Takes the aggregate named <I>aggrname</I> (or the plex named <I>plexname</I>) offline. The command takes effect before returning. If the aggregate is already in restricted state&#44;  then it is already unavailable for data access&#44;  and much of the following description does not apply. <P> If the aggregate contains any flexible volumes&#44;  then the operation is aborted unless the filer is in maintenance mode. <P> Except in maintenance mode&#44;  the aggregate containing the current root volume may not be taken offline. An aggregate containing a volume that has been marked to become root (using <B>vol</B> <B>options</B> <I>vol_</I>n<I>ame</I> <B>root</B>) also cannot be taken offline. <P> If the aggregate is embedded in a traditional volume that has CIFS shares&#44;  users should be warned before taking the aggregate (and hence the entire traditional volume) offline. Use the <B>-t</B> switch for this. The <I>cifsdelaytime</I> argument specifies the number of minutes to delay before taking the embedded aggregate offline&#44;  during which time CIFS users of the traditional volume are warned of the pending loss of service. A time of 0 means take the aggregate offline immediately with no warnings given. CIFS users can lose data if they are not given a chance to terminate applications gracefully. <P> If a <I>plexname</I> is specified&#44;  the plex must be part of a mirrored aggregate and both plexes must be online. Prior to offlining a plex&#44;  the system will flush all internally-buffered data associated with the plex and create a snapshot that is written out to both plexes. The snapshot allows for efficient resynchronization when the plex is subsequently brought back online. <P> A number of operations being performed on the aggregate&#8217;s traditional volume can prevent <B>aggr</B> <B>offline</B> from succeeding&#44;  for various lengths of time. If such operations are found&#44;  there will be a one-second wait for such operations to finish. If they do not&#44;  the command is aborted. <P> A check is also made for files in the aggregate&#8217;s associated traditional volume opened by internal ONTAP processes. The command is aborted if any are found. <P> <B>aggr</B> <B>online</B> { <I>aggrname</I> | <I>plexname</I> }<BR>  [ <B>-f</B> ] <P> Brings the aggregate named <I>aggrname</I> (or the plex named <I>plexname</I>) online. This command takes effect immediately. If the specified aggregate is embedded in a traditional volume&#44;  the volume is also also brought online. <P> If an <I>aggrname</I> is specified&#44;  it must be currently offline&#44;  restricted&#44;  or foreign. If the aggregate is foreign&#44;  it will be made native before being brought online. A &#8220;foreign&#8221; aggregate is an aggregate that consists of disks moved from another filer and that has never been brought online on the current filer. Aggregates that are not foreign are considered &#8220;native.&#8221; <P> If the aggregate is inconsistent&#44;  but has not lost data&#44;  the user will be cautioned and prompted before bringing the aggregate online. The <B>-f</B> flag can be used to override this behavior. It is advisable to run WAFL_check (or do a <B>snapmirror</B> <B>initialize</B> in case of an aggregate embedded in a traditional volume) prior to bringing an inconsistent aggregate online. Bringing an inconsistent aggregate online increases the risk of further file system corruption. If the aggregate is inconsistent and has experienced possible loss of data&#44;  it cannot be brought online unless WAFL_check (or <B>snapmirror</B> <B>initialize</B> in the embedded case) has been run on the aggregate. <P> If a <I>plexname</I> is specified&#44;  the plex must be part of an online mirrored aggregate. The system will initiate resynchronization of the plex as part of online processing. <P> <B>aggr</B> <B>options</B> <I>aggrname</I> [ <I>optname</I> <I>optval</I> ] <P> Displays the options that have been set for aggregate <I>aggrname</I>&#44;  or sets the option named <I>optname</I> of the aggregate named <I>aggrname</I> to the value <I>optval</I>. The command remains effective after the filer is rebooted&#44;  so there is no need to add <B>aggr</B> <B>options</B> commands to the <I>/etc/rc</I> file. Some options have values that are numbers. Some options have values that may be <B>on</B> (which can also be expressed as <B>yes</B>&#44;  <B>true</B>&#44;  or <B>1</B> ) or <B>off</B> (which can also be expressed as <B>no</B>&#44;  <B>false</B>&#44;  or <B>0</B>). A mixture of uppercase and lowercase characters can be used when typing the value of an option. The <B>aggr</B> <B>status</B> command displays the options that are set per aggregate. <P> The following describes the options and their possible values: <P> <B>fs_size_fixed</B> <B>on</B> | <B>off</B> <P> This option only applies to aggregates that are embedded in traditional volumes. It causes the file system to remain the same size and not grow or shrink when a SnapMirrored volume relationship is broken&#44;  or an <B>aggr</B> <B>add</B> is performed on it. This option is automatically set to be <B>on</B> when a traditional volume becomes a SnapMirrored volume. It will remain on after the <B>snapmirror</B> <B>break</B> command is issued for the traditional volume. This allows a traditional volume to be SnapMirrored back to the source without needing to add disks to the source traditional volume. If the traditional volume size is larger than the file system size&#44;  turning off this option will force the file system to grow to the size of the traditional volume. The default setting is <B>off</B>. <P> <B>ignore_inconsistent</B> <B>on</B> | <B>off</B> <P> This command can only be used in maintenance mode. If this option is set&#44;  it allows the aggregate containing the root volume to be brought online on booting&#44;  even though it is inconsistent. The user is cautioned that bringing it online prior to running WAFL_check or wafliron may result in further file system inconsistency. <P> <B>nosnap</B> <B>on</B> | <B>off</B> <P> If this option is <B>on</B>&#44;  it disables automatic snapshots on the aggregate. The default setting is <B>off</B>. <P> <B>raidsize</B> <I>number</I> <P> The value of this option is the maximum size of a RAID group that can be created in the aggregate.    Changing the value of this option will not cause existing RAID groups to grow or shrink; it will only affect whether more disks will be added to the last existing RAID group and how large new RAID groups will be. <P> Legal values for this option depend on <B>raidtype</B>. For example&#44;  <B>raid_dp</B> allows larger RAID groups than <B>raid4</B>. Limits and default values are also different for different types of filer appliances and different types of disks. Following tables define limits and default values for <B>raidsize</B>. <P> <DL> <DT><PRE>  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;    raid4 raidsize       min   default   max   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;    R100                  2        8       8    R150                  2        6       6    FAS250                2        7      14    other (FCAL disks)    2        8      14    other (ATA disks)     2        7       7   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;     &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;    raid_dp raidsize     min   default   max   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;    R100                  3       12      12    R150                  3       12      16    other (FCAL disks)    3       16      28    other (ATA disks)     3       14      16   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; </PRE>  <P> </DD> </DL> Those values may change in future releases of Data ONTAP. <P> <B>raidtype</B> <B>raid4</B> | <B>raid_dp</B> | <B>raid0</B> <P> Sets the type of RAID used to protect against disk failures. Use of <B>raid4</B> provides one parity disk per RAID group&#44;  while <B>raid_dp</B> provides two. Changing this option immediately changes the RAID type of all RAID groups within the aggregate. When upgrading RAID groups from <B>raid4</B> to <B>raid_dp</B>&#44;  each RAID group begins a reconstruction onto a spare disk allocated for the second `dparity&#8217; parity disk. <P> Changing this option also changes <B>raidsize</B> to a more suitable value for new <B>raidtype</B>. When upgrading from <B>raid4</B> to <B>raid_dp</B>&#44;  <B>raidsize</B> will be increased to the default value for <B>raid_dp</B>. When downgrading from <B>raid_dp</B> to <B>raid4</B>&#44;  <B>raidsize</B> will be decreased to the size of the largest existing RAID group if it is between the default value and the limit for <B>raid4</B>. If the largest RAID group is above the limit for <B>raid4</B>&#44;  the new <B>raidsize</B> will be that limit. If the largest RAID group is below the default value for <B>raid4</B>&#44;  the new <B>raidsize</B> will be that default value. If <B>raidsize</B> is already below the default value for <B>raid4</B>&#44;  it will be reduced by 1. <P> <B>resyncsnaptime</B> <I>number</I> <P> This option is used to set the mirror resynchronization snapshot frequency (in minutes). The default value is 60 minutes. <P> <B>root</B> <P> If this option is set on a traditional volume&#44;  then the effect is identical as that defined in <B> vol</B> <B></B> man page. Otherwise&#44;  if this option is set on an aggregate capable of containing flexible volumes&#44;  then that aggregate is marked as being the one that will also contains the root flexible volume on the next reboot. This option can be used on only one aggregate or traditional volume at any given time. The existing root aggregate or traditional volume will become a non-root entity after the reboot. <P> Until the system is rebooted&#44;  the original aggregate and/or traditional volume will continue to show root as one of its options&#44;  and the new root aggregate or traditional volume will show <B>diskroot</B> as an option. In general&#44;  the aggregate that has the <B>diskroot</B> option is the one that will contain the root flexible volume following the next reboot. <P> The only way to remove the root status of an aggregate or traditional volume is to set the <B>root</B> option on another aggregate or traditional volume. <P> <B>snaplock_compliance</B> <P> This read only option indicates that the aggregate is a SnapLock Compliance aggregate. Aggregates can only be designated SnapLock Compliance aggregates at creation time. <P> <B>snaplock_enterprise</B> <P> This read only option indicates that the aggregate is a SnapLock Enterprise aggregate. Aggregates can only be designated SnapLock Enterprise aggregates at creation time. <P> <B>snapmirrored</B> <B>off</B> <P> If SnapMirror is enabled for a traditional volume (SnapMirror is not supported for aggregates that contain flexible volumes)&#44;  the filer automatically sets this option to <B>on</B>. Set this option to <B>off</B> if SnapMirror is no longer to be used to update the traditional volume mirror. After setting this option to <B>off</B>&#44;  the mirror becomes a regular writable traditional volume. This option can only be set to <B>off</B>; only the filer can change the value of this option from <B>off</B> to <B>on</B>. <P> <B>snapshot_autodelete</B> <B>on</B> | <B>off</B> <P> This option is used to set whether snapshot are automatically deleted in the aggr. If set to <B>on</B> then snapshots may be deleted in the aggr to recover storage as necessary. If set to <B>off</B> then snapshots in the aggr are not automatically deleted to recover storage. Note that snapshots may still be deleted for other reasons&#44;  such as maintaining the snapshot schedule for the aggr&#44;  or deleting snapshots that are associated with specific operations that no longer need the snapshot. To allow snapshots to be deleted in a timely manner the number of aggr snapshots is limited when snapshot_autodelete is enabled. Because of this&#44;  if there are too many snapshots in an aggr then some snapshots must be deleted before the snapshot_autodelete option can be enabled. <P> <B>aggr</B> <B>rename</B> <I>aggrname</I> <I>newname</I> <P> Renames the aggregate named <I>aggrname</I> to <I>newname</I>. If this aggregate is embedded in a traditional volume&#44;  then that volume&#8217;s name is also changed. <P> <B>aggr</B> <B>restrict</B> <I>aggrname</I><BR>  [ <B>-t</B> <I>cifsdelaytime</I> ] <P> Put the aggregate named <I>aggrname</I> in restricted state&#44;  starting from either online or offline state. The command takes effect before returning. <P> If the aggregate contains any flexible volumes&#44;  the operation is aborted unless the filer is in maintenance mode. <P> If the aggregate is embedded in a traditional volume that has CIFS shares&#44;  users should be warned before restricting the aggregate (and hence the entire traditional volume). Use the <B>-t</B> switch for this. The <I>cifsdelaytime</I> argument specifies the number of minutes to delay before taking the embedded aggregate offline&#44;  during which time CIFS users of the traditional volume are warned of the pending loss of service. A time of 0 means take the aggregate offline immediately with no warnings given. CIFS users can lose data if they are not given a chance to terminate applications gracefully. <P> <B>aggr</B> <B>scrub</B> <B>resume</B> [ <I>aggrname</I> | <I>plexname</I> | <I>groupname</I> ] <P> Resumes parity scrubbing on the named aggregate&#44;  plex&#44;  or group. If no name is given&#44;  resume all RAID groups currently undergoing a parity scrubbing that has been suspended. <P> <B>aggr</B> <B>scrub</B> <B>start</B> [ <I>aggrname</I> | <I>plexname</I> | <I>groupname</I> ] <P> Starts parity scrubbing on the named online aggregate. Parity scrubbing compares the data disks to the parity disk(s) in their RAID group&#44;  correcting the parity disk&#8217;s contents as necessary. If no name is given&#44;  parity scrubbing is started on all online aggregates. If an aggregate name is given&#44;  scrubbing is started on all RAID groups contained in the aggregate. If a plex name is given&#44;  scrubbing is started on all RAID groups contained in the plex. <P> <B>aggr</B> <B>scrub</B> <B>status</B> [ <I>aggrname</I> | <I>plexname</I> | <I>groupname</I> ] [ <B>-v</B> ] <P> Prints the status of parity scrubbing on the named aggregate&#44;  plex&#44;  or group; all RAID groups currently undergoing parity scrubbing if no name is given. The status includes a percent-complete&#44;  and the scrub&#8217;s suspended status. <P> The <B>-v</B> flag displays the date and time at which the last full scrub completed along with the current status on the named aggregate&#44;  plex&#44;  or group; all RAID groups if no name is given. <P> <B>aggr</B> <B>scrub</B> <B>stop</B> [ <I>aggrname</I> | <I>plexname</I> | <I>groupname</I> ] <P> Stops parity scrubbing on the named aggregate&#44;  plex&#44;  or group; if no name is given&#44;  on all RAID groups currently undergoing a parity scrubbing. <P> <B>aggr</B> <B>scrub</B> <B>suspend</B> [ <I>aggrname</I> | <I>plexname</I> | <I>groupname</I> ] <P> Suspends parity scrubbing on the named aggregate&#44;  plex&#44;  or group; if no name is given&#44;  on all RAID groups currently undergoing parity scrubbing. <P> <B>aggr</B> <B>show_space</B> [ <B>-h</B> <B>|</B> <B>-k</B> <B>|</B> <B>-m</B> <B>|</B> <B>-g</B> <B>|</B> <B>-t</B> <B>|</B> <B>-b</B> ] &lt; <I>aggrname</I> &gt; <P> Displays the space usage in an aggregate. Unlike df&#44;  this command shows the space usage for each flexible volume within an aggregate If <I>aggrname</I> is specified&#44;  <B>aggr</B> <B>show_space</B> only runs on the corresponding aggregate&#44;  otherwise it reports space usage on all the aggregates. <P> All sizes are reported in 1024-byte blocks&#44;  unless otherwise requested by one of the <B>-h</B>&#44;  <B>-k</B>&#44;  <B>-m</B>&#44;  <B>-g</B>&#44;  or <B>-t</B> options. The -k&#44;  -m&#44;  -g&#44;  and -t options scale each size-related field of the output to be expressed in kilobytes&#44;  megabytes&#44;  gigabytes&#44;  or terabytes respectively. <P> The following terminology is used by the command in reporting space. <P> <DL> <DT><PRE>      Total space      This is the amount of total disk space                        that the aggregate has.        WAFL reserve     WAFL reserves a percentage of the total                        total disk space for aggregate level metadata.                        The space used for maintaining the volumes in                        the aggregate comes out of the WAFL reserve.        Snap reserve     Snap reserve is the amount of space                        reserved for aggregate snapshots.        Usable space     This is the total amount of space that                        is available to the aggregate for provisioning.                        This is computed as                        Usable space = Total space &#8211;                                       WAFL reserve &#8211;                                       Snap reserve                        df displays this as the &#8216;total&#8217; space.        BSR NVLOG        This is valid for Synchronous SnapMirror                        destinations only. This is the amount of space                        used in the aggregate on the destination filer to                        store data sent from the source filer(s) before                        sending it to disk.        Allocated        This is the sum of the space reserved                        for the volume and the space used by non                        reserved data. For volume guaranteed                        volumes&#44;  this is at least the size of the                        volume since no data is unreserved. For                        volumes with space guarantee of none&#44;  this                        value is the same as the &#8216;Used&#8217; space                        (explained below) since no unused space is                        reserved. The Allocated space value                        shows the amount of space that the volume                        is taking from the aggregate. This value can                        be greater than the size of the volume because                        it also includes the metadata required to                        maintain the volume.        Used             This is the amount of space that is taking                        up disk blocks. This value is not the same                        as the &#8216;used&#8217; space displayed by the df                        command. The Used space in this case                        includes the metadata required to maintain                        the flexible volume.        Avail            Total amount of free space in the aggregate.                        This is the same as the avail space reported                        by df.  </PRE> <DD> <P> </DD> </DL> <B>aggr</B> <B>split</B> <I>plexname</I> <I>aggrname</I><BR>  [<B>-r</B> <I>oldvol</I> <I>newvol</I>] [<B>-r</B> <I>...</I>]<BR>  [<B>-s</B> <I>suffix</I>] <P> Removes <I>plexname</I> from a mirrored aggregate and creates a new unmirrored aggregate named <I>aggrname</I> that contains the plex. The original mirrored aggregate becomes unmirrored. The plex to be split from the original aggregate must be functional (not partial)&#44;  but it could be inactive&#44;  resyncing&#44;  or outof-date. Aggr split can therefore be used to gain access to a plex that is not up to date with respect to its partner plex&#44;  if its partner plex is currently failed. <P> If the aggregate in which <I>plexname</I> resides is embedded in a traditional volume&#44;  <B>aggr</B> <B>split</B> behaves identically to <B>vol</B> <B>split</B>. The new aggregate is embedded in a new traditional volume of the same name. <P> If the aggregate in which <I>plexname</I> resides contains exactly one flexible volume&#44;  <B>aggr</B> <B>split</B> will by default rename the flexible volume image in the split-off plex to be the same as the new aggregate. <P> If the aggregate in which <I>plexname</I> resides contains more than one flexible volume&#44;  it is necessary to specify how to name the volumes in the new aggregate resulting from the split. The <B>-r</B> option can be used repeatedly to give each flexible volume in the resulting aggregate a new name. In addition&#44;  the <B>-s</B> option can be used to specify a suffix that is added to the end of all flexible volume names not covered by a <B>-r</B>. <P> If the original aggregate is restricted at the time of the split&#44;  the resulting aggregate will also be restricted. If the restricted aggregate is hosting flexible volumes&#44;  they are not renamed at the time of the split. Flexible volumes will be renamed later&#44;  when the name conflict is detected while bringing an aggregate online. Flexible volumes in the aggregate that is brought online first keep their names. That aggregate can be either the original aggregate&#44;  or the aggregate resulting from the split. When the other aggregate is brought online later&#44;  flexible volumes in that aggregate will be renamed. <P> If the plex of an aggregate embedded within a traditional volume is offline at the time of the split&#44;  the resulting aggregate will be offline. When splitting a plex from an aggregate that hosts flexible volumes&#44;  if that plex is offline&#44;  but the aggregate is online&#44;  the resulting aggregate will come online&#44;  and its flexible volumes will be renamed. It is not allowed to split a plex from an offline aggregate. <P> A split mirror can be joined back together via the <B>-v</B> option to <B>aggr</B> <B>mirror</B>. <P> <B>aggr</B> <B>status</B> [ <I>aggrname</I> ]<BR>  [ <B>-r</B> | <B>-v</B> | <B>-d</B> | <B>-c</B> | <B>-b</B> | <B>-s</B> | <B>-f</B> | <B>-i</B> ] <P> Displays the status of one or all aggregates on the filer. If <I>aggrname</I> is used&#44;  the status of the specified aggregate is printed; otherwise the status of all aggregates in the filer are printed. By default&#44;  it prints a one-line synopsis of the aggregate which includes the aggregate name&#44;  whether it contains a single <I>traditional</I> volume or some number of <I>flexible</I> <I>volumes</I>&#44;  if it is online or offline&#44;  other states (for example&#44;  <B>partial</B>&#44;  <B>degraded</B>&#44;  <B>wafl</B> <B>inconsistent</B>&#44;  and so on) and peraggregate options. Per-aggregate options are displayed only if the options have been changed from the system default values by using the <B>aggr</B> <B>options</B> command&#44;  or by the <B>vol</B> <B>options</B> command if the aggregate is embedded in a traditional volume. If the <B>wafl</B> <B>inconsistent</B> state is displayed&#44;  please contact Customer Support. <P> The <B>-v</B> flag shows the on/off state of all peraggregate options and displays information about each volume&#44;  plex and RAID group contained in the aggregate. <P> The <B>-r</B> flag displays a list of the RAID information for that aggregate. If no <I>aggrname</I> is specified&#44;  it prints RAID information about all aggregates&#44;  information about file system disks&#44;  spare disks&#44;  and failed disks. For more information about failed disks&#44;  see the <B>-f</B> switch description below. <P> The <B>-d</B> flag displays information about the disks in the specified aggregate. The types of disk information are the same as those from the <B>sysconfig</B> <B>-d</B> command. <P> The <B>-c</B> flag displays the upgrade status of the Block Checksums data integrity protection feature. <P> The <B>-b</B> is used to get the size of source and destination aggregates for use with <B>aggr</B> <B>copy</B>. The output contains the storage in the aggregate and the possibly smaller size of the aggregate. The <B>aggregate</B> <B>copy</B> command uses these numbers to determine if the source and destination aggregate sizes are compatible. The size of the source aggregate must be equal or smaller than the size of the destination aggregate. <P> The <B>-s</B> flag displays a listing of the spare disks on the filer. <P> The <B>-f</B> flag displays a list of the failed disks on the filer. The command output includes the disk failure reason which can be any of following: <P> The <B>-i</B> flag displays a list of the flexible volumes contained in an aggregate. <P> <DL> <DT><PRE>      unknown           Failure reason unknown.       failed            Data ONTAP failed disk due to a                         fatal disk error.       admin failed      User issued a &#8216;disk fail&#8217; command                         for this disk.       labeled broken    Disk was failed under Data ONTAP                         6.1.X or an earlier version.       init failed       Disk initialization sequence failed.       admin removed     User issued a &#8216;disk remove&#8217; command                         for this disk.       not responding    Disk not responding to requests.       pulled            Disk was physically pulled&#44;  or no                         data path exists on which to access                         the disk.       bypassed          Disk was bypassed by ESH. </PRE>  <P> </DD> </DL> <B>aggr</B> <B>undestroy</B> [ <B>-n</B> ] &lt; <I>aggrname</I> &gt; <P> Undestroy a partially intact or previously destroyed aggregate or traditional volume. The command prints a list of candidate aggregates and traditional volumes matching the given name&#44;  which can be potentially undestroyed. <P> The <B>-n</B> option prints the list of disks contained by the aggregate or by the traditional volume&#44;  which can be potentially undestroyed. This option can be used to display the result of command execution&#44;  without actually making any changes. <P> <B>aggr</B> <B>verify</B> <B>resume</B> [ <I>aggrname</I> ] <P> Resumes RAID mirror verification on the named aggregate; if no aggregate name is given&#44;  on all aggregates currently undergoing a RAID mirror verification that has been suspended. <P> <B>aggr</B> <B>verify</B> <B>start</B> [ <I>aggrname</I> ] [ <B>-f</B> <B>plexnumber</B> ] <P> Starts RAID mirror verification on the named online mirrored aggregate. If no name is given&#44;  then RAID mirror verification is started on all online mirrored aggregates. Verification compares the data in both plexes of a mirrored aggregate. In the default case&#44;  all blocks that differ are logged&#44;  but no changes are made. If the <B>-f</B> flag is given&#44;  the plex specified is fixed to match the other plex when mismatches are found. A name must be specified with the <B>-f</B> <B>plexnumber</B> option. <P> <B>aggr</B> <B>verify</B> <B>stop</B> [ <I>aggrname</I> ] <P> Stops RAID mirror verification on the named aggregate; if no aggregate name is given&#44;  on all aggregates currently undergoing a RAID mirror verification. <P> <B>aggr</B> <B>verify</B> <B>status</B> [ <I>aggrname</I> ] <P> Prints the status of RAID mirror verification on the named aggregate; on all aggregates currently undergoing RAID mirror verification if no aggregate name is given. The status includes a percent-complete&#44;  and the verification&#8217;s suspended status. <P> <B>aggr</B> <B>verify</B> <B>suspend</B> [ <I>aggrname</I> ] <P> Suspends RAID mirror verification on the named aggregate; if no aggregate name is given&#44;  on all aggregates currently undergoing RAID mirror verification. <P>  <H2><A NAME="sect5" HREF="#toc5"><B>CLUSTER</B> <B>CONSIDERATIONS</B></A></H2>  Aggregates on different filers in a cluster can have the same name. For example&#44;  both filers in a cluster can have an aggregate named <I>aggr0</I>. <P> However&#44;  having unique aggregate names in a cluster makes it easier to migrate aggregates between the filers in the cluster. <P>  <H2><A NAME="sect6" HREF="#toc6"><B>EXAMPLES</B></A></H2>  <B>aggr</B> <B>create</B> <B>aggr1</B> <B>-r</B> <B>10</B> <B>20</B> <P> Creates an aggregate named <B>aggr1</B> with 20 disks. The RAID groups in this aggregate can contain up to 10 disks&#44;  so this new aggregate has two RAID groups. The filer adds the current spare disks to the new aggregate&#44;  starting with the smallest disk. <P> <B>aggr</B> <B>create</B> <B>aggr1</B> <B>20@9</B> <P> Creates an aggregate named <B>aggr1</B> with 20 9-GB disks. Because no RAID group size is specified&#44;  the default size (8 disks) is used. The newly-created aggregate contains two RAID groups with 8 disks and a third group with four disks. <P> <B>aggr</B> <B>create</B> <B>aggr1</B> <B>-d</B> <B>8a.1</B> <B>8a.2</B> <B>8a.3</B> <P> Creates an aggregate named <B>aggr1</B> with the specified three disks. <P> <B>aggr</B> <B>create</B> <B>aggr1</B> <B>10</B><BR>  <B>aggr</B> <B>options</B> <B>aggr1</B> <B>raidsize</B> <B>5</B> <P> The first command creates an aggregate named <B>aggr1</B> with 10 disks which belong to one RAID group. The second command specifies that if any disks are subsequently added to this aggregate&#44;  they will not cause any current RAID group to have more than five disks. Each existing RAID group will continue to have 10 disks and no more disks will be added to that RAID group. When new RAID groups are created&#44;  they will have a maximum size of five disks. <P> <B>aggr</B> <B>show_space</B> <B>-h</B> <B>ag1</B> <P> Displays the space usage of the aggregate `ag1&#8242; and scales the unit of space according to the size. <PRE>  Aggregate &#8216;ag1&#8242;    Total space    WAFL reserve    Snap reserve    Usable space       BSR NVLOG          66GB          6797MB           611MB            59GB            65KB    Space allocated to volumes in the aggregate    Volume            Allocated            Used       Guarantee   vol1                   14GB            11GB          volume   vol2                 8861MB          8871MB            file   vol3                 6161MB          6169MB            none   vol4                   26GB            25GB          volume   vol1_clone           1028MB          1028MB       (offline)    Aggregate         Allocated            Used           Avail   Total space            55GB            51GB          3494MB   Snap reserve          611MB            21MB           590MB   WAFL reserve         6797MB          5480KB          6792MB </PRE>  <P> </DD> </DL> <B>aggr</B> <B>status</B> <B>aggr1</B> <B>-r</B> <P> Displays the RAID information about aggregate <B>aggr1</B>. In the following example&#44;  we see that aggr1 is a RAID-DP aggregate protected by block checksums. It is online&#44;  and all disks are operating normally. The aggregate contains four disks -two data disks&#44;  one parity disk&#44;  and one doubleparity disk. Two disks are located on adapter 0b&#44;  and two on adapter 1b. The disk shelf and bay numbers for each disk are indicated. All four disks are 10&#44; 000 RPM FibreChannel disks attached via disk channel A. The disk &quot;Pool&quot; attribute is displayed only if SyncMirror is licensed&#44;  which is not the case here (if SyncMirror were licensed&#44;  Pool would be either 0 or 1). The amount of disk space that is used by Data ONTAP (&#8220;Used&#8221;) and is available on the disk (&#8220;Phys&#8221;) is displayed in the rightmost columns. <P> <DL> <DT><PRE>  Aggr aggr1 (online&#44;  raid_dp) (block checksums)     Plex /aggr1/plex0 (online&#44;  normal&#44;  active)       RAID group /aggr1/plex0/rg0 (normal)          RAID Disk Device  HA  SHELF BAY CHAN Pool Type  RPM  Used (MB/blks)    Phys (MB/blks)         &#8212;&#8212;&#8212; &#8212;&#8212;  &#8212;&#8212;&#8212;&#8212;- &#8212;- &#8212;- &#8212;- &#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8211;    &#8212;&#8212;&#8212;&#8212;&#8211;         dparity   0b.16   0b    1   0   FC:A   &#8211;  FCAL 10000 136000/278528000  137104/280790184         parity    1b.96   1b    6   0   FC:A   &#8211;  FCAL 10000 136000/278528000  139072/284820800         data      0b.17   0b    1   1   FC:A   &#8211;  FCAL 10000 136000/278528000  139072/284820800         data      1b.97   1b    6   1   FC:A   &#8211;  FCAL 10000 136000/278528000  139072/284820800  </PRE> <DD> <P> </DD> </DL>  <H2><A NAME="sect7" HREF="#toc7"><B>SEE</B> <B>ALSO</B></A></H2>  <B> vol</B> <B></B>&#44;  <B> partner</B> <B></B>&#44;  <B> snapmirror</B> <B></B>&#44;  <B> sysconfig</B> <B></B>. <P>  <HR><P> <A NAME="toc"><B>Table of Contents</B></A><P> <UL> <LI><A NAME="toc1" HREF="#sect1">NAME</A></LI> <LI><A NAME="toc2" HREF="#sect2">SYNOPSIS</A></LI> <LI><A NAME="toc3" HREF="#sect3">DESCRIPTION</A></LI> <LI><A NAME="toc4" HREF="#sect4">USAGE</A></LI> <LI><A NAME="toc5" HREF="#sect5">CLUSTER CONSIDERATIONS</A></LI> <LI><A NAME="toc6" HREF="#sect6">EXAMPLES</A></LI> <LI><A NAME="toc7" HREF="#sect7">SEE ALSO</A></LI> </UL></p>
<p>Copyright &copy; 1994-2008 NetApp&#44;  Inc. <a href="http://www.netapp.com/us/site/copyright.html">Legal Information</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=g8W6xEbX3-k:BUjZ6Utfltw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=g8W6xEbX3-k:BUjZ6Utfltw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=g8W6xEbX3-k:BUjZ6Utfltw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?a=g8W6xEbX3-k:BUjZ6Utfltw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wafl-ATechnicalDiary?i=g8W6xEbX3-k:BUjZ6Utfltw:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wafl-ATechnicalDiary/~4/g8W6xEbX3-k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wafl.co.uk/aggr-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wafl.co.uk/aggr-2/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.972 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-21 13:36:22 -->
