Hello. We plan to use the "cluster-remove-node API" to remove ONTAP nodes. As far as I checked the options of "cluster-remove-node API", it seems that the process to execute "eligibility=false" when the node to be removed is the master node is not included. It is difficult to check the contents of the API source code, but does the API actually include processing for "eligibility=false"?
... View more
Hello Community, Getting below error while importing the ONTAP module, please help. PS C:\Program Files\WindowsPowerShell\Modules\NetApp.ONTAP> Import-Module .\NetApp.ONTAP.psd1 Import-Module : Could not load file or assembly 'file:///C:\Program Files\WindowsPowerShell\Modules\NetApp.ONTAP\OntapiPS.dll' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515) At line:1 char:1 + Import-Module .\NetApp.ONTAP.psd1 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (:) [Import-Module], FileLoadException + FullyQualifiedErrorId : FormatXmlUpdateException,Microsoft.PowerShell.Commands.ImportModuleCommand Regards, Kabir
... View more
Hello everyone, I have set up Grafana on the customer site. Is there a way to upload and analyze performance archive data, instead of collecting data in real time? I mean, a method to view the data in Grafana within the customer’s environment, rather than using pas.activeiq or SmartSolve. I would appreciate any advice. Thank you.
... View more
Hello community, I try to read the contents of a volume snapshot by using Read-NcDirectory but I get always "WARNING: Record doesn't exist". The volume itself is readable, also the .snapshot directory, but not the contents of a snapshot. Using NFS or CIFS there is no problem to read the contents. snapdir-acces of the volume: true 172.17.208.200 is a Vserver LIF. Login user role: vsadmin Login user application: http PSTK Version: 9.16.1.2501 ONTAP Version: 9.12.1P3 PS C:\Windows\system32> Connect-NcController 172.17.208.200
Name Address Vserver Version
---- ------- ------- -------
172.17.208.200 172.17.208.200 mytestvs NetApp Release 9.12.1P3: Tue May 02 13:02:11 UTC 2023
PS C:\Windows\system32> Read-NcDirectory -Path /vol/mytestvol/.snapshot
Name Type Size Created Modified Owner Group Perm Empty
---- ---- ---- ------- -------- ----- ----- ---- -----
. directory 4 KB 5/19/2021 2/27/2025 0 0 777 False
.. directory 4 KB 5/19/2021 1/31/2025 0 0 777 False
daily.2025-02-21_0010 directory 4 KB 5/19/2021 1/31/2025 0 0 777 False
PS C:\Windows\system32> Read-NcDirectory -Path /vol/mytestvol/.snapshot/daily.2025-02-21_0010
WARNING: Record doesn't exist
PS C:\Windows\system32> Every hint / idea is welcome.
... View more
Hello, I have a java app in which I'm trying to interface with a NetApp S3 API gateway in order to store large files there. It was pretty straightforward to make a connection with an S3Client. And I know that I set things up correctly because I'm able to do a listBuckets and it correctly lists all of the existing buckets. String accessKeyId = "MyAccessKeyID";
String secretAccesskey = "MySecretAccessKey";
String endpointUrl = "https://theendpointurltomynetappstoragegrid:10444";
StaticCredentialsProvider credentialsProvider = StaticCredentialsProvider.create(
AwsBasicCredentials.create(accessKeyId, secretAccesskey));
// Create S3 client
S3Client s3Client = S3Client.builder()
.credentialsProvider(credentialsProvider)
.region(Region.US_EAST_1)
.endpointOverride(URI.create(endpointUrl))
.overrideConfiguration(ClientOverrideConfiguration.builder()
.build())
.build();
//This actually works fine to list the buckets - indicating I am connecting fine
ListBucketsResponse listBucketsResponse = s3Client.listBuckets(); However it crashes with the UnknownHostException when I try to do a createBucket or postObject. CreateBucketRequest createBucketRequest = CreateBucketRequest.builder()
.bucket("testbucket11")
.build();
//However this always crashes with a SdkClientException: Received an UnknownHostException
s3Client.createBucket(createBucketRequest); BTW I am able to do a create-bucket through the aws command-line interface. This actually does create a bucket. aws --endpoint-url https://theendpointurltomynetappstoragegrid:10444 s3api create-bucket --bucket testbucket11 Any suggestions? Thank you.
... View more