X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=zfs-replicate;h=60a23457d583c8555a0df88384cd44e29d0277cf;hb=0b70bfc0d86add94bad09cd7f5ef78e3fed92daf;hp=1455061c91b4544c3e8fe42c2a498046f85af771;hpb=b8a2489b12afeaf8039b0222bfdf7c5bc18dcf3c;p=zfs-ubuntu%2F.git diff --git a/zfs-replicate b/zfs-replicate index 1455061..60a2345 100755 --- a/zfs-replicate +++ b/zfs-replicate @@ -18,6 +18,16 @@ remote=$1 remote_fs=$2 remote_pool=${2%%/*} +# return non-zero exit code if any command in the pipe fails +set -o pipefail + +# get the backup pool from the command line or the config file if not specified +if [[ -n $3 ]]; then + backup_pool=$3 +else + backup_pool=${backup_pool%% *} # use the first backup pool if none specified +fi + # Setup our cleanup and exit trap cleanup() { if [[ -e "$local_list" ]]; then @@ -33,17 +43,17 @@ cleanup() { } fatal_and_exit() { echo -e 2>&1 "$1" - # Destroy the backup markers on the local filesystem if they exist + # Destroy the current backup markers from the local backup_pool and remote_pool if they exist if [[ -n "$current_backup_marker" ]]; then - zfs list -t snapshot ${backup_pool}/${current_backup_marker} > /dev/null 2>&1 + # Local backup pool current backup marker + $zfs list -t snapshot ${backup_pool}/${current_backup_marker} > /dev/null 2>&1 if [ $? == 0 ]; then $zfs destroy ${backup_pool}/${current_backup_marker} fi - fi - if [[ -n "$previous_backup_marker" ]]; then - zfs list -t snapshot ${backup_pool}/${previous_backup_marker} > /dev/null 2>&1 + # Remote pool current backup marker + $ssh $remote zfs list -t snapshot ${current_backup_marker} > /dev/null 2>&1 if [ $? == 0 ]; then - $zfs destroy ${backup_pool}/${previous_backup_marker} + $ssh $remote $zfs destroy ${current_backup_marker} fi fi # send email notification @@ -56,6 +66,27 @@ fatal_and_exit() { trap fatal_and_exit INT trap cleanup EXIT +# Declare a function to handle the replicate operation +replicate() { + zfs_send="$1" + zfs_recv="$zfs receive -vF -d ${backup_pool}/${remote_pool}" + glue="$throttle $throttle_opt" + if [[ $throttle_enable == 1 && -e $throttle ]]; then + # handle using the glue in the local and remote host case properly + if [[ -z "$ssh" ]]; then + # local host glue case + $zfs_send | $glue | $zfs_recv + else + # remote host glue case + $ssh $remote "$zfs_send | $glue" | $zfs_recv + fi + else + # no glue case - works for both the local and remote host cases + $ssh $remote $zfs_send | $zfs_recv + fi + # The return code of the zfs_send | zfs_recv operation will be returned to the caller +} + # Make sure we have valid arguments if [[ -z "$remote" ]] || [[ -z "$remote_fs" ]]; then fatal_and_exit "Usage: $0 " @@ -127,8 +158,10 @@ $ssh $remote \ $zfs list -H -t snapshot | grep ^${remote_fs}@ | awk '{print$1}' > $remote_list -if [ $? != 0 ]; then - fatal_and_exit "-E- remote $zfs list on $hostname command failed" $mailto +if [[ $? != 0 ]] && [[ $expect_empty_remote_list == 0 ]]; then + echo "-W- Unable to find $remote_fs on the remote host $hostname. Unable to proceed since the" + echo " expect_empty_remote_list option has not been set to allow this, skipping replicate operation." + fatal_and_exit "-E- remote $zfs list on $hostname for $remote_fs command failed" $mailto fi # List the snapshots on the local machine. @@ -139,9 +172,9 @@ $zfs list -H -t snapshot | grep ^${backup_pool}/${remote_fs}@ | grep -v ^${backup_pool}/${current_backup_marker} | awk "{gsub(/^$backup_pool./,\"\",\$1); print\$1}" > $local_list -if [ $? != 0 ]; then - fatal_and_exit "-E- local $zfs list on $hostname command failed" $mailto -fi +# If no local snapshots exist, we may need to send the entire filesystem, which we'll do later +# So, no error check here as a non-zero return code means the local filesystem or snaps are missing +# We'll catch this later on as a case where we need to send the entire filesystem # Destroy the current backup marker snapshot on the remote system if it exists grep -q ${current_backup_marker} $remote_list @@ -175,18 +208,16 @@ if [ $no_markers == 0 ]; then # backup was interrupted for some reason. If we don't do this, the zfs send -R command # below may complain about snaps already existing as it tries to resend from the # previous backup marker again from a previously interrupted replicate. - $zfs rollback -r ${backup_pool}/${previous_backup_marker} + $zfs rollback -rf ${backup_pool}/${previous_backup_marker} if [ $? != 0 ]; then - fatal_and_exit "-E- remote incremental $zfs rollback command failed on $hostname" $mailto + sleep 120 + $zfs rollback -rf ${backup_pool}/${previous_backup_marker} + if [ $? != 0 ]; then + fatal_and_exit "-E- remote incremental $zfs rollback command failed on $hostname" $mailto + fi fi # Now it should be safe to send the snaps - if [[ $throttle_enable == 1 && -e $throttle ]]; then - $ssh $remote "$zfs send -R -I${previous_backup_marker} ${current_backup_marker} | - $throttle $throttle_opt" | $zfs receive -vF -d ${backup_pool}/${remote_pool} - else - $ssh $remote $zfs send -R -I${previous_backup_marker} ${current_backup_marker} | - $zfs receive -vF -d ${backup_pool}/${remote_pool} - fi + replicate "$zfs send -Rc -I${previous_backup_marker} ${current_backup_marker}" if [ $? != 0 ]; then fatal_and_exit "-E- remote incremental $zfs send command failed on $hostname" $mailto fi @@ -205,13 +236,7 @@ else if [[ -n "$common" ]]; then # We found a common snapshot, incrementally send the new snaps - if [[ $throttle_enable == 1 && -e $throttle ]]; then - $ssh $remote "$zfs send -R -I${common/*@/@} ${current_backup_marker} | - $throttle $throttle_opt" | $zfs receive -vF -d ${backup_pool}/${remote_pool} - else - $ssh $remote $zfs send -R -I${common/*@/@} ${current_backup_marker} | - $zfs receive -vF -d ${backup_pool}/${remote_pool} - fi + replicate "$zfs send -Rc -I${common/*@/@} ${current_backup_marker}" if [ $? != 0 ]; then fatal_and_exit "-E- remote incremental $zfs send command failed on $hostname" $mailto fi @@ -233,13 +258,7 @@ else fi fi # Send the full filesystem - if [[ $throttle_enable == 1 && -e $throttle ]]; then - $ssh $remote "$zfs send -R ${current_backup_marker} | - $throttle $throttle_opt" | $zfs receive -vF -d ${backup_pool}/${remote_pool} - else - $ssh $remote $zfs send -R ${current_backup_marker} | - $zfs receive -vF -d ${backup_pool}/${remote_pool} - fi + replicate "$zfs send -Rc ${current_backup_marker}" if [ $? != 0 ]; then fatal_and_exit "-E- remote full $zfs send command failed on $hostname" $mailto fi @@ -250,6 +269,7 @@ fi # don't check the return codes here because these may not exist, and that is ok $zfs destroy ${backup_pool}/${previous_backup_marker} > /dev/null 2>&1 $ssh $remote $zfs destroy ${previous_backup_marker} > /dev/null 2>&1 +sleep 1 # Rename the current backup marker to be the previous backup marker $zfs rename ${backup_pool}/${current_backup_marker} ${backup_pool}/${previous_backup_marker}