<?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: clone split show for a source volume in ONTAP Rest API Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447438#M579</link>
    <description>&lt;P&gt;Thanks Jeff. I did try with GET but somehow i didnt get the split estimate. Probably because of the fields. i put it as fields=*&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Sep 2023 16:15:24 GMT</pubDate>
    <dc:creator>kbhonagiri</dc:creator>
    <dc:date>2023-09-05T16:15:24Z</dc:date>
    <item>
      <title>clone split show for a source volume</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447370#M574</link>
      <description>&lt;P&gt;Hi All, is there an API/CLI which provides information on all clones under split for a source volume?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 09:45:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447370#M574</guid>
      <dc:creator>kbhonagiri</dc:creator>
      <dc:date>2025-06-04T09:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: clone split show for a source volume</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447371#M575</link>
      <description>&lt;P&gt;"volume clone split show" is the CLI command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For REST, you can do a GET /storage/volumes and retrieve fields like:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;clone.split_complete_percent&lt;/LI&gt;&lt;LI&gt;clone.split_estimate&lt;/LI&gt;&lt;LI&gt;clone.split_initiated&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 31 Aug 2023 20:33:33 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447371#M575</guid>
      <dc:creator>steiner</dc:creator>
      <dc:date>2023-08-31T20:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: clone split show for a source volume</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447383#M576</link>
      <description>&lt;P&gt;Thanks Jeff. Should this be a PATCH/GET ? Since, i use PATCH for clone stop and start using&amp;nbsp;&lt;SPAN&gt;split_initiated:"true"/"false" . Something like this&lt;BR /&gt;&lt;BR /&gt;payload = {&lt;BR /&gt;+ "clone.split_initiated": "false"&lt;BR /&gt;+ }&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How should i do it from&amp;nbsp;split_complete_percent and&amp;nbsp;split_estimate?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 21:33:30 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447383#M576</guid>
      <dc:creator>kbhonagiri</dc:creator>
      <dc:date>2023-08-31T21:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: clone split show for a source volume</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447433#M578</link>
      <description>&lt;P&gt;As a general rule, POST is for creating something or executing an operation, PATCH is for changing something, and GET is just retrieving information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested this now:&lt;/P&gt;&lt;PRE&gt;GET &lt;A href="https://10.192.160.45/api/storage/volumes?fields=uuid,size,svm.name,svm.uuid,clone.split_initiated,clone.split_complete_percent,clone.split_estimate,nas.path,aggregates,type&amp;amp;name=*&amp;amp;svm.name=jfs_svm2" target="_blank"&gt;https://10.192.160.45/api/storage/volumes?fields=uuid,size,svm.name,svm.uuid,clone.split_initiated,clone.split_complete_percent,clone.split_estimate,nas.path,aggregates,type&amp;amp;name=*&amp;amp;svm.name=jfs_svm2&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;and it returned what you'd expect on a system without any current split operations for each volume:&lt;/P&gt;&lt;PRE&gt;-&amp;gt;doREST:REST:RESPONSE: "clone": {&lt;BR /&gt;-&amp;gt;doREST:REST:RESPONSE: "split_estimate": 3266568192,&lt;BR /&gt;-&amp;gt;doREST:REST:RESPONSE: "split_initiated": false&lt;/PRE&gt;&lt;P&gt;The split_estimate is misleading. That's the amount of used space on the volume to be split. It does NOT mean that amount of data will be copied or consumed after the split. The space consumption after a split depends on what the space allocation polices are for the volume. If you're in fully thin provisioned configuration, splitting a clone requires no additional space. If you're thick provisioned, the split clone would allocate its full size on the aggregate for itself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 15:04:06 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447433#M578</guid>
      <dc:creator>steiner</dc:creator>
      <dc:date>2023-09-05T15:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: clone split show for a source volume</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447438#M579</link>
      <description>&lt;P&gt;Thanks Jeff. I did try with GET but somehow i didnt get the split estimate. Probably because of the fields. i put it as fields=*&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 16:15:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/clone-split-show-for-a-source-volume/m-p/447438#M579</guid>
      <dc:creator>kbhonagiri</dc:creator>
      <dc:date>2023-09-05T16:15:24Z</dc:date>
    </item>
  </channel>
</rss>

