2

With the open source ZFS file systm, an exact copy/snapshot can be produced using zfs snapshot. This includes file-system level optimizations like deduplication. Further you can send these to a remote server that's listening with zfs receive using zfs send.

Can something similar be done with NetApp's WAFL? At the least I want to create a snapshot and export it to a file which I can transfer to another ONTAP instance and restore with.

Evan Carroll
  • 2,373
  • 10
  • 34
  • 53
Sandra
  • 10,303
  • 38
  • 112
  • 165

3 Answers3

2

"Export" is the wrong word. You can clone it onto disk, replicate it onto another filer, or copy it (like any other file) onto another non-WAFL server. You could also create a read/write copy that initially only takes the space already taken by the original data.

That said, assuming you're trying to back up a snapshot, your best choice would to be to use backup software that supports NDMP.

Basil
  • 8,851
  • 3
  • 38
  • 73
  • That very interesting! Do you have links on how to copy a snapshot to another non-WAFL server? Or perhaps the commands involved? – Sandra Jan 09 '12 at 18:08
  • Assuming it's not a disk volume (block IO), you would simply mount the snapshot on the target server and use an operating system command to copy it. – Basil Jan 10 '12 at 16:49
2

The only approach from a NetApp perspective is to run SnapVault between your primary and secondary (in NA lingo).

pfo
  • 5,700
  • 24
  • 36
0

You can do this with ndmpcopy

It will copy data between Netapps, without using temporary files.

arainchi
  • 141
  • 5