There is no documented way to switch off disk shelves. They (unfortunately) remain powered on even if system shuts down as result of overheating.
... View more
Locally attached SAS has to just copy data in memory. Externally attached arrays are accessed over multilayer protocols and additional devices (FC/LAN switches), which introduce additional overhead. So each single IO will likely have higher latency for external array than for locally attached one. If your benchmark is single threaded, each IO has to wait for completion of previous one. Thus you achieve lower throughput (for a single thread) than in locally attached case. As you asked for published results - look e.g. at http://www.vmware.com/pdf/vsp_4_vmxnet3_perf.pdf. It shows appr. 8000 IOPS for 10GbE network. Assuming 512B IO size you get just 4MB/s; with 4KB request size - 32MB/s.
... View more
If all connected systems are using multipath connection and correctly configured for failover, you just do cf takeover/cf giveback on each head. Steps are provided in Data ONTAP upgrade guide as well as ASUP upgrade adviser. Most settings to ensure that LUNs remain online should have been taken on connected hosts, not on filer.
... View more
Without knowing - concurrency (how many threads were running in parallel) - queue depth for each thread (number of outstanding requests) - IO request size - read/write ratio for each test it is hard to even start guessing ...
... View more
I believe disk encryption requires special drives and all disks in a filer must support it. So it probably a bit more limited than “anything that can support 8.0”.
... View more
I am not sure AZCS applies to arbitrary disk types (at least, for now). I got impression that currently it applies only to new high density shelf.
... View more
If you have RAID_DP and option raid.background_disk_fw_update.enable is on (default), disk firmware update starts automatically as soon as you install new firmware file and happens in background.
... View more
Add your E-Mail address to autosupport.partner.to option. Addresses in autosupport.to receive only notifications about serious problems in 7.3.x and above.
... View more
You can't. You will have to use some external processing to extract information, change it and replace the line again. And yes, if you changed just /etc/exports, you will need to run "exportfs -a" (or just for this entry) to activate it.
... View more
But he's going to use SnapMirror anyway, so if it is possible to resume it later for each volume from existing snapshots, it could be interesting option. Otherwise the biggest downside is need to copy all the data just to create volumes. I think this is where power shell toolkit could be quite useful. Not being PS expert, I assume it is something like $source = connect-NaController -Name source $target = connect-NaController -Name target get-NaVol -controller $source | New-NaVol -controller $target -Name $_.Name $targetaggr -Size $_.TotalSize ... Thanks to http://communities.netapp.com/docs/DOC-6293 for explaining how to work with multiple controllers. Message was edited by: Andrey Borzenkov
... View more
Most likely you need to setup user mapping from Windows user on your machine to Unix user on NetApp. I am not familiar with Windows NFS implementation so I do not know how to do it.
... View more
Oh, BTW, this problem was unrelated to single file restore, it was the whole backup that was being restored. To speed up single file restore the only option is to use DAR, but it has to be enabled during backup and you have to use specific utilities to restore (not all of NetWorker restore tools support DAR – check administration guide). --- With best regards Andrey Borzenkov Senior system engineer Service operations
... View more
Sorry, no. I never got around to retesting it myself and customer never complained about slow recovery after that either (I do not say it became faster, just that nobody complained …) It is extremely hard to troubleshoot such issues simply because you do not perform multi-terabyte recover every day and when you do, you need to complete task and have no time to troubleshoot ☹
... View more
Adding environment variable to profile is universal fix. Environment is property of current process inherited by its child processes. Your login session has no parent/child relationship to rc scripts and so has no way to inherit environment from them.
... View more
If you do not have space for snapshot, how can you do snapmirror? In any case, you can't clone LUN to different volume. You can create FlexClone of volume itself, delete unneeded LUNs in each and then split. To finally free space you will need to remove snapshots with deleted LUNs. You will need flexclone license for it. But as already answered, you can move LUN into qtree and use QSM. This won't give you more space in volume though; snapshot is done on volume level anyway.
... View more