<?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 Efficiency - Job status in ONTAP Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62701#M14804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without knowing your history I am going to make some assumptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assumption 1 - you are speaking about the dashboard in OnCommand Unified Manager or a report in OnCommand Report&lt;/P&gt;&lt;P&gt;Assumption 2 - these volumes had dedupe on at some point and you turned it off&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASIS(deduplication) runs at the volume level and compares all the data in 4k blocks of data.&amp;nbsp; This means that we are not looking into the files for savings, but directly at the disk which allows for more deduplication than general file compression can provide in a lot of circumstances.&amp;nbsp; NetApp ASIS does not need to have the same files or even the same type of data in a volume to get deduplication savings due to this.&amp;nbsp; A database, Excel files, and an Outlook PST file can all be compared against one another and deduplicated(assuming they have any identical 4k blocks stored on disk) as long as they are in the same volume.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The report is showing the amount of space that you saved by running dedupe.&amp;nbsp; If you simple run "sis off /vol/VOLUME", any data that was deduplicated before is still deduplicated.&amp;nbsp; To re-inflated the data you would need to run "sis undo /vol/VOLNAME", but as you have used the processing power to save the space, there isn't a reason currently to undo that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if they have never had any data in them or dedupe was never turned on for the particular volume, that would be very interesting as someone would have to take a much deeper look into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Sep 2013 11:57:55 GMT</pubDate>
    <dc:creator>cscott</dc:creator>
    <dc:date>2013-09-10T11:57:55Z</dc:date>
    <item>
      <title>Storage Efficiency - Job status</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62687#M14797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, we have alot of performance problems with our netapp and have been told one of the problems is due to the amount of SIS jobs we have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we have a better understanding on when to use SIS, we have turned most of them off, however we still have performance issues and I wondered if there was a why to display SIS jobs and their current status, whether they where still running etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:54:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62687#M14797</guid>
      <dc:creator>ittechnical</dc:creator>
      <dc:date>2025-06-05T05:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Storage Efficiency - Job status</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62692#M14799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are a few ways to do this depending on your method of obtaining data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the CLI, you could run sis status to pull the information&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some initial script possibilities(note these are not full scripts, just the relevant base commands)&lt;/P&gt;&lt;P&gt;If you have a Unix admin host a simple shell script of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to put all jobs into a single file:&lt;/P&gt;&lt;P&gt;sis status |grep Enabled &amp;gt; sis_on.txt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to separate idle and running jobs&lt;/P&gt;&lt;P&gt;sis status |grep Enabled |grep Idle &amp;gt; FILE&lt;/P&gt;&lt;P&gt;sis status |grep Enabled |grep Active &amp;gt; FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from the powershell toolkit on Windows&lt;/P&gt;&lt;P&gt;for all jobs to one file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get-naSis |select Path,Status | out-file FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each status&lt;/P&gt;&lt;P&gt;get-naSis | where-object {$_.State -eq "Enabled"} | where-object {$_.Status -eq "Active"} | select Path,Status |out-file FILE&lt;/P&gt;&lt;P&gt;get-naSis | where-object {$_.State -eq "Enabled"} | where-object {$_.Status -eq "Idle"} | select Path,Status |out-file FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Sep 2013 16:02:39 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62692#M14799</guid>
      <dc:creator>cscott</dc:creator>
      <dc:date>2013-09-09T16:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Storage Efficiency - Job status</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62698#M14801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great very helpful thanks for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got some further questions &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;, on a volume that has storage efficiency enabled, on the tab called storage efficiency (oncommand) it mentions 'deduplication savings'&lt;/P&gt;&lt;P&gt;How is that worked out? Does that mean it has found other instances of the data within the volume on the netapp and that would be the savings? The reason I ask is we had dedup setup on volumes that would not have the data within them anywhere else however it said there where dedup savings listed (confused &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 08:59:56 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62698#M14801</guid>
      <dc:creator>ittechnical</dc:creator>
      <dc:date>2013-09-10T08:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Storage Efficiency - Job status</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62701#M14804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without knowing your history I am going to make some assumptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assumption 1 - you are speaking about the dashboard in OnCommand Unified Manager or a report in OnCommand Report&lt;/P&gt;&lt;P&gt;Assumption 2 - these volumes had dedupe on at some point and you turned it off&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASIS(deduplication) runs at the volume level and compares all the data in 4k blocks of data.&amp;nbsp; This means that we are not looking into the files for savings, but directly at the disk which allows for more deduplication than general file compression can provide in a lot of circumstances.&amp;nbsp; NetApp ASIS does not need to have the same files or even the same type of data in a volume to get deduplication savings due to this.&amp;nbsp; A database, Excel files, and an Outlook PST file can all be compared against one another and deduplicated(assuming they have any identical 4k blocks stored on disk) as long as they are in the same volume.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The report is showing the amount of space that you saved by running dedupe.&amp;nbsp; If you simple run "sis off /vol/VOLUME", any data that was deduplicated before is still deduplicated.&amp;nbsp; To re-inflated the data you would need to run "sis undo /vol/VOLNAME", but as you have used the processing power to save the space, there isn't a reason currently to undo that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if they have never had any data in them or dedupe was never turned on for the particular volume, that would be very interesting as someone would have to take a much deeper look into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 11:57:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/Storage-Efficiency-Job-status/m-p/62701#M14804</guid>
      <dc:creator>cscott</dc:creator>
      <dc:date>2013-09-10T11:57:55Z</dc:date>
    </item>
  </channel>
</rss>

