<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: 'Storage Disk Replace' Multiple Drives in ONTAP Hardware</title>
    <link>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/135351#M8469</link>
    <description>&lt;P&gt;Using this topic to ask a follow-up question...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I plan to use VOL MOVE to evacuate all&amp;nbsp;volumes from an aggregate that resides on a&amp;nbsp;shelf in need of replacement.&amp;nbsp; However, as luck would have it, one of the disks belongs to a root aggregate.&amp;nbsp; Are there any special concerns with running the "disk replace" command against a disk that is part of a root aggr?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;</description>
    <pubDate>Tue, 17 Oct 2017 19:49:05 GMT</pubDate>
    <dc:creator>GregNOAA</dc:creator>
    <dc:date>2017-10-17T19:49:05Z</dc:date>
    <item>
      <title>'Storage Disk Replace' Multiple Drives</title>
      <link>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/118054#M7347</link>
      <description>&lt;P&gt;I'm running 8.3.1P1, and need to perform 12 disk replaces on SATA to evacuate a shelf. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have done the 'disk replace' command several times before with success, but that was one at a time. Does Ontap Allow me to perform multiple disk replaces at the sametime, and it just queue the replacements? These would be 12 from the same aggregate, and some would be in the same raidgroup.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I couldn't find any document specifying what it does when you run multiple commands for multiple disk replaces. &amp;nbsp;Anyone have any experience with this. I really don't want to write a script to monitor the event log for the status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Corey&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2016 14:18:42 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/118054#M7347</guid>
      <dc:creator>coreywanless</dc:creator>
      <dc:date>2016-04-07T14:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: 'Storage Disk Replace' Multiple Drives</title>
      <link>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/118056#M7349</link>
      <description>&lt;P&gt;The disk replace operations are queued. &amp;nbsp;Issue the start for each disk, and you will see them marked for replacement in aggr status -r, with copy percentages on the ones in flight.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2016 14:44:50 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/118056#M7349</guid>
      <dc:creator>SeanHatfield</dc:creator>
      <dc:date>2016-04-07T14:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: 'Storage Disk Replace' Multiple Drives</title>
      <link>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/118065#M7350</link>
      <description>&lt;P&gt;Thanks.. And because I don't like to check myself I wrote this powershell script that emails me the status.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The ontap module is required of course.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;param($cluster,$emailaddress,$smtpserver)&lt;BR /&gt;if ($global:CurrentNcController.name -ne $cluster){connect-nccontroller $cluster}&lt;/P&gt;&lt;P&gt;$subject = 'Report: Disk Replace Status'&lt;BR /&gt;$from = 'No-Reply@mydomain.com'&lt;/P&gt;&lt;P&gt;$diskinfo = @()&lt;BR /&gt;foreach ($disk in get-ncdisk | where-object { $_.diskraidInfo.diskaggregateinfo.IsReplacing -eq $true })&lt;BR /&gt;{&lt;BR /&gt;$diskinfo += [PSCustomObject]@{&lt;BR /&gt;Disk = $disk.name&lt;BR /&gt;Aggregate = $disk.aggregate&lt;BR /&gt;RaidGroup = $disk.DiskRaidInfo.DiskAggregateInfo.Raidgroupname&lt;BR /&gt;CopyDestinationName = $disk.DiskRaidInfo.DiskAggregateInfo.CopyDestinationName&lt;BR /&gt;CopyPercentComplete = $disk.DiskRaidInfo.DiskAggregateInfo.CopyPercentComplete&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;if ($diskinfo)&lt;BR /&gt;{&lt;BR /&gt;$messageParameters = @{&lt;BR /&gt;Subject = $subject&lt;BR /&gt;Body = $diskinfo | Sort-Object -Property CopyPercentComplete -Descending | select Aggregate, RaidGroup, Disk, CopyDestinationName, CopyPercentComplete | ConvertTo-HTML | Out-String&lt;BR /&gt;From = $from&lt;BR /&gt;To = $emailaddress.split(",")&lt;BR /&gt;SmtpServer = $smtpserver&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;$messageParameters = @{&lt;BR /&gt;Subject = $subject&lt;BR /&gt;Body = "There are no Disk Replaces Occuring"&lt;BR /&gt;From = $from&lt;BR /&gt;To = $emailaddress.split(",")&lt;BR /&gt;SmtpServer = $smtpserver&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;Send-MailMessage @messageParameters -BodyAsHtml&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2016 18:32:12 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/118065#M7350</guid>
      <dc:creator>coreywanless</dc:creator>
      <dc:date>2016-04-07T18:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: 'Storage Disk Replace' Multiple Drives</title>
      <link>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/135351#M8469</link>
      <description>&lt;P&gt;Using this topic to ask a follow-up question...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I plan to use VOL MOVE to evacuate all&amp;nbsp;volumes from an aggregate that resides on a&amp;nbsp;shelf in need of replacement.&amp;nbsp; However, as luck would have it, one of the disks belongs to a root aggregate.&amp;nbsp; Are there any special concerns with running the "disk replace" command against a disk that is part of a root aggr?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 19:49:05 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Hardware/Storage-Disk-Replace-Multiple-Drives/m-p/135351#M8469</guid>
      <dc:creator>GregNOAA</dc:creator>
      <dc:date>2017-10-17T19:49:05Z</dc:date>
    </item>
  </channel>
</rss>

