Microsoft Virtualization Discussions

get-ncsnapshot against 9.1 cluster with 200K snapshots

clueless1
4,463 Views

I'm trying to speed up the process of acquiring the "Created" field on each snapshot returned from get-ncsnapshot.   It currently takes many hours to return a generic get-ncsnapshot against a Ontap 9.1P2 cluster with >200K snapshots.

 

I've tried the following:

 

$snaptemplate = get-ncsnapshot -Template

get-ncsnapshot -Attributes $snaptemplate

 

While this does yield significant performance improvements, it doesn't include the "Created" property.

 

I can't initialize-ncobjectproperty against created as it's an alias for AccessTimeDT.   I can't initialize AccessTimeDT as it's read-only as follows:

 

Initialize-NcObjectProperty -Object $snaptemplate -Name AccessTimeDT
WARNING: Property AccessTimeDT on object  is not writable

Name                      Volume               Vserver                   Created      Total Cumulative Dependency                                                                
----                      ------               -------                   -------      ----- ---------- ----------                                                                
                                                                                                                            

 

I need to be able to initialize AccessTimeDT within the $snaptemplate object in order to be able to return the results needed.

 

 $snaptemplate | get-member


   TypeName: DataONTAP.C.Types.Snapshot.SnapshotInfo

Name                                       MemberType    Definition                                                             
----                                       ----------    ----------                                                             
Created                                    AliasProperty Created = AccessTimeDT                                                 
Cumulative                                 AliasProperty Cumulative = CumulativeTotal                                           
Equals                                     Method        bool Equals(System.Object obj)                                         
GetHashCode                                Method        int GetHashCode()                                                      
GetType                                    Method        type GetType()                                                         
ToString                                   Method        string ToString()                                                      
Validate                                   Method        void Validate()                                                        
AccessTime                                 Property      System.Object AccessTime {get;set;}                                    
AccessTimeDT                               Property      System.Nullable[datetime] AccessTimeDT {get;}       

 

Anyone have any ideas on how to modify the template to have AccessTimeDT writable so it can be used to speed up get-ncsnapshot?

 

Thanks...

 

 

 

1 ACCEPTED SOLUTION

asulliva
4,451 Views

I find it easier to use the hash notation for these types of attribute limit examples...

 

Get-NcSnapshot -Attributes @{ AccessTime = "" }

The AccessTime is turned into a PowerShell DateTime object by PSTK and accessed using hte AccessTimeDT property of the resulting object.  That's why it doesn't recognize it when trying to limit the attributes returned.

 

Hope that helps.

 

Andrew

If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

View solution in original post

4 REPLIES 4

cole
4,453 Views

The problem is that AccessTimeDT is not a property being returned from ZAPI, but rather is a calculated property coming from the toolkit. You can use your current method but initialize the AccessTime property instead and then calculate the DT property yourself (you can use the cmdlet 'ConvertTo-DateTime -Seconds $_.AccessTime' to calculate the DT property).

 

I hope this helps.

 

Jason

 

 

cole
4,444 Views

Nevermind. What Andrew said. 🙂

asulliva
4,452 Views

I find it easier to use the hash notation for these types of attribute limit examples...

 

Get-NcSnapshot -Attributes @{ AccessTime = "" }

The AccessTime is turned into a PowerShell DateTime object by PSTK and accessed using hte AccessTimeDT property of the resulting object.  That's why it doesn't recognize it when trying to limit the attributes returned.

 

Hope that helps.

 

Andrew

If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

clueless1
4,434 Views

That makes sense. 

 

Thanks for your help....

Public