<?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: NetApp Snapshot Technology in ONTAP Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10744#M2478</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The short answer is yes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The longer answer is that for every 4KB WAFL block that has not been updated in the active filesystem since the snapshot was taken, you will be reading from the exact same block as one would in the active fielsystem.  What I can also tell you is that the native ONTAP dump command (which would also be used for an NDMP-based backup) gets a lower priority than protocol ops, but they will most likely be contending for the same blocks, and more importantly, the same disks.  If they were contending to read the same blocks at the same time, then read cache kicks in and tries to avoid making subsequent pulls from disk so you'd be less affected in that scenario.  It's when they want vastly different blocks that you end up contending for disk I/Os would probably be a bigger potential performance issue.  But there are stratgegies to help that as well, especially in sequential reads like backup (think aggressive read-aheads when one side does get the disks) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best paper I know of is still the old tried and true TR3002:  &lt;A href="http://media.netapp.com/documents/wp_3002.pdf" target="_blank"&gt; which is probably 15+ years old, but still has meaning.  I would be wary of any limitation #s in there as things have obviously changed in the last decade or so, but it still explains the concepts pretty well (note it even still talks about an "NFS File Serving Appliance", which is clearly dated).  I'm not sure if it addresses your exact concerns, I'll admit to having not read it in quite a while, but it's a good explanation of how it works. &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The important thing that WAFL does that most other snapshot technologies to not do is it keeps existing blocks IN PLACE, rather than copying them out to a separate area.  When a block is slated to be over-written, rather than copying it out, then over-writing the block, WAFL allocates a  new block and adjusts the pointers.  It's really efficient in that respect and you don't pay the signficant penalty the the other designs get when you deploy snapshots (I've seen some systems crumble at 5 or 10 snapshots, where WAFL keeps on rolling at 200+).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is at least a good start to answering your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2008 23:39:57 GMT</pubDate>
    <dc:creator>adamfox</dc:creator>
    <dc:date>2008-04-03T23:39:57Z</dc:date>
    <item>
      <title>NetApp Snapshot Technology</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10738#M2477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that a snapshot is simply pointers to the data on disk that was snapped.  Does this mean that if I interact with the snap (for instance if I back up to tape from the snap) that I am performing reads against the actual data (the snapshot pointers direct me to the data that has not changed)?  If there is a good doc you know of that describes the IO implications of interacting with snapshots please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 07:34:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10738#M2477</guid>
      <dc:creator>steve_ross</dc:creator>
      <dc:date>2025-06-05T07:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: NetApp Snapshot Technology</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10744#M2478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The short answer is yes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The longer answer is that for every 4KB WAFL block that has not been updated in the active filesystem since the snapshot was taken, you will be reading from the exact same block as one would in the active fielsystem.  What I can also tell you is that the native ONTAP dump command (which would also be used for an NDMP-based backup) gets a lower priority than protocol ops, but they will most likely be contending for the same blocks, and more importantly, the same disks.  If they were contending to read the same blocks at the same time, then read cache kicks in and tries to avoid making subsequent pulls from disk so you'd be less affected in that scenario.  It's when they want vastly different blocks that you end up contending for disk I/Os would probably be a bigger potential performance issue.  But there are stratgegies to help that as well, especially in sequential reads like backup (think aggressive read-aheads when one side does get the disks) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best paper I know of is still the old tried and true TR3002:  &lt;A href="http://media.netapp.com/documents/wp_3002.pdf" target="_blank"&gt; which is probably 15+ years old, but still has meaning.  I would be wary of any limitation #s in there as things have obviously changed in the last decade or so, but it still explains the concepts pretty well (note it even still talks about an "NFS File Serving Appliance", which is clearly dated).  I'm not sure if it addresses your exact concerns, I'll admit to having not read it in quite a while, but it's a good explanation of how it works. &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The important thing that WAFL does that most other snapshot technologies to not do is it keeps existing blocks IN PLACE, rather than copying them out to a separate area.  When a block is slated to be over-written, rather than copying it out, then over-writing the block, WAFL allocates a  new block and adjusts the pointers.  It's really efficient in that respect and you don't pay the signficant penalty the the other designs get when you deploy snapshots (I've seen some systems crumble at 5 or 10 snapshots, where WAFL keeps on rolling at 200+).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is at least a good start to answering your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 23:39:57 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10744#M2478</guid>
      <dc:creator>adamfox</dc:creator>
      <dc:date>2008-04-03T23:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: NetApp Snapshot Technology</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10749#M2479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WOW...what an outstanding answer.  Adam, I am very appreciative of this detailed answer.  It really addresses my question perfectly.  Thanks for taking the time to answer so well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 23:45:09 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/NetApp-Snapshot-Technology/m-p/10749#M2479</guid>
      <dc:creator>steve_ross</dc:creator>
      <dc:date>2008-04-03T23:45:09Z</dc:date>
    </item>
  </channel>
</rss>

