Page 1 of 1

How to monitor Send | Receive progress?

PostPosted: Thu Aug 11, 2016 11:57 am
by RobRehnmark
Is there a way to estimate the transfer size and progress like described in link below?
http://docs.oracle.com/cd/E36784_01/htm ... #scrolltoc

Re: How to monitor Send | Receive progress?

PostPosted: Thu Aug 11, 2016 12:50 pm
by Brendon
pv is available on OSX.

- Brendon

Re: How to monitor Send | Receive progress?

PostPosted: Thu Aug 11, 2016 1:12 pm
by RobRehnmark
Ok.
Thanks. :)

Re: How to monitor Send | Receive progress?

PostPosted: Thu Aug 11, 2016 3:36 pm
by lundman
zfs send -v

will send updates every second to the tty

Re: How to monitor Send | Receive progress?

PostPosted: Thu Aug 11, 2016 6:13 pm
by stumble
zfs send -v doesn't work with bookmarks. Apparently this is a deliberate restriction:

Code: Select all
too many arguments
usage:
   send [-DnPpRvLe] [-[iI] snapshot] <snapshot>
   send [-Le] [-i snapshot|bookmark] <filesystem|volume|snapshot>
   send [-nvPe] -t <receive_resume_token>


pv works nicely though. @RobRehnmark, thanks for that suggestion.