Hi all, we have a Windows Dynamic Disk (F:) which is distributed to 3 NetApp iSCSI LUNs. (10+10+5). The first LUN is completely full, the newly written data is being written to second 10TB LUN at the moment. Because of performance Problems we want to migrate second and third LUNs to another node in the Cluster (6 Node Cluster), the new Node is AFF. Can ONTAP and Windows handle this configuration or should unmap the disk from Windows, move all of the 3 disks to AFF Node Pair and map again? Thanks for the helps, Regards, M.
... View more
I'd like to leverage Nagios 4x integrations for NetApp, but it appears that we need to obtain and install the Perl SDK for "NM" - this is detailed in the README here: https://github.com/OutsideIT/check_netapp_ontap So far I've not been able to find it, but see the SDK for Python and Java - so I'm guessing that the Perl one is (understandably) no longer supported. That's fine - anyone know if there's a way to obtain an old Perl SDK somewhere? Thanks
... View more
Hello Folks, I have a 2-node FAS8200 cluster that already has a couple stacks of DS212c and DS224c shelves. I've been approved by management to acquire a DS46c shelf chassis with 20x16TB FSAS drives. I'd like some help to figure out what the RAID layout should be for the initial disks, with the expectation of adding about 30 more FSAS disks over the next year or two. We currently have a bunch of shelves and aggregates that are nearly maxed out and were created without any spares(!), so I'm hoping to migrate volumes into the new aggregate(s) on the DS460c and then clean up the existing aggregates likely by redefining them so that there will be spares. TL;DR: Getting 20x new 16TB FSAS drives, will be adding more - need thoughts on RAID-TEC group sizing. Thanks!
... View more
from the documentation: with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False): resource = QuotaReport( index=4612248968380809216, **{"volume.uuid": "cf480c37-2a6b-11e9-8513-005056a7657c"} ) resource.get() print(resource) from a real system: with HostConnection("10.54.126.30", username="admin", password="password", verify=False): ... resource = QuotaReport( ... index=2305843013508661248, ... **{"volume.uuid": "11b984a0-5fb7-11eb-848e-000c2933e33c"} ... ) ... resource.get() ... print(resource) ... Traceback (most recent call last): File "<input>", line 6, in <module> File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resources/quota_report.py", line 1339, in get return super()._get(**kwargs) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/utils.py", line 55, in wrapper return on_api_fail(erro) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/utils.py", line 78, in on_api_fail raise NetAppRestError(cause=erro) from None netapp_ontap.error.NetAppRestError: Caused by HTTPError('404 Client Error: Not Found for url: https://10.54.126.30:443/api/storage/quota/reports/2305843013508661248',): "2305843013508661248" is an invalid value for field "volume.uuid" (<UUID>) I made it working in this way: resource = QuotaReport({"volume.uuid":"11b984a0-5fb7-11eb-848e-000c2933e33c"}, index='2305843013508661248') resource.get() But now the error is another one: raceback (most recent call last): File "<input>", line 1, in <module> File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resources/quota_report.py", line 1339, in get return super()._get(**kwargs) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/utils.py", line 51, in wrapper return func(*args, **kwargs) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resource.py", line 916, in _get url = "%s%s" % (self.get_connection().origin, self.instance_location) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resource.py", line 270, in __getattribute__ value = super().__getattribute__(name) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resource.py", line 442, in instance_location return "%s/%s" % (self._location, "/".join(key_vals)) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resource.py", line 270, in __getattribute__ value = super().__getattribute__(name) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/netapp_ontap/resource.py", line 402, in _location raise NetAppRestError(message=msg, cause=exc) from None netapp_ontap.error.NetAppRestError: Could not compute the location of the QuotaReport collection. Values for [] are required. Caused by TypeError('quote_from_bytes() expected bytes',) on 9.7 this was working fine: resource = QuotaReport( index =quota_index, volume =volume_name) but not longer on 9.8 Is some bug or is it me doing it wrong ? thanks
... View more
I have created a group interface (a0a), in which I have selected ports e0c (10Gb/s) and e0d (Gb/s), Mode LACP and Load Distribution IP based. I have told the network technician that those 2 ports that are on a switch, perform a level 3 lacp. The problem is that I see that the lacp has been created correctly but in system manager if I select the port a0a (if group create) it tells me that the speed is 10Gb/s, Would you show me the value of 20Gb / s? Is it correct to show me that lacp port a0a the 10Gb / s information? If it's wrong, how should I go about doing a LACP and make it a 20Gb / s aggregate? controller1::> network port ifgrp show -node controller1 -ifgrp a0a Node: controller1 Interface Group Name: a0a Distribution Function: ip Create Policy: multimode_lacp MAC Address: d2:39:ea:20:e7:05 Port Participation: full Network Ports: e0c, e0d Up Ports: e0c, e0d Down Ports: - controller1 😆 net port show -node controller1 (network port show) Node: controller1 Speed(Mbps) Health Port IPspace Broadcast Domain Link MTU Admin/Oper Status --------- ------------ ---------------- ---- ---- ----------- -------- a0a Default Broadcast up 1500 auto/- healthy In the CLI it does not show at what speed it is negotiating, but in the system manager, it shows me 10Gb/s Is something wrong? If it was fine why not show 20Gb / s? Thank you!!
... View more