> From: zfs-discuss-boun...@opensolaris.org [mailto:zfs-discuss-
> boun...@opensolaris.org] On Behalf Of cephas maposah
> 
> here is what i have been doing i take snapshots of the 5 file systems, i
zfs
> send these into a directory gzip the the files and then tar them onto
tape.
> this takes a considerable amount of time.
> my question is there a faster and better way of doing this?

zfs send | lzop | mbuffer
will write data stream directly to tape, no need for intermediate storage.
It has the disadvantage that you can't restore individual files, nor exclude
anything from backup, and if there's any corruption the whole stream is
useless.

zfs send | zfs receive (on disk)
Has the advantage that you can restore directly from snapshots if necessary
(much faster & easier than restoring from tape) and it verifies the
integrity of the data as it's written.  You can then use anything you want
(tar |lzop | mbuffer) or some commercial product, to write to tape.

_______________________________________________
zfs-discuss mailing list
zfs-discuss@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Reply via email to