mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-07-21 07:07:41 +03:00

OpenZFS 7252 - compressed zfs send / receive OpenZFS 7628 - create long versions of ZFS send / receive options Authored by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: John Kennedy <john.kennedy@delphix.com> Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reviewed by: Paul Dagnelie <pcd@delphix.com> Reviewed by: Pavel Zakharov <pavel.zakharov@delphix.com> Reviewed by: Sebastien Roy <sebastien.roy@delphix.com> Reviewed by: David Quigley <dpquigl@davequigley.com> Reviewed by: Thomas Caputi <tcaputi@datto.com> Approved by: Dan McDonald <danmcd@omniti.com> Reviewed by: David Quigley <dpquigl@davequigley.com> Reviewed-by: loli10K <ezomori.nozomu@gmail.com> Ported-by: bunder2015 <omfgbunder@gmail.com> Ported-by: Don Brady <don.brady@intel.com> Ported-by: Brian Behlendorf <behlendorf1@llnl.gov> Porting Notes: - Most of 7252 was already picked up during ABD work. This commit represents the gap from the final commit to openzfs. - Fixed split_large_blocks check in do_dump() - An alternate version of the write_compressible() function was implemented for Linux which does not depend on fio. The behavior of fio differs significantly based on the exact version. - mkholes was replaced with truncate for Linux. OpenZFS-issue: https://www.illumos.org/issues/7252 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/5602294 Closes #6067
101 lines
3.0 KiB
Bash
Executable File
101 lines
3.0 KiB
Bash
Executable File
#!/bin/ksh -p
|
|
|
|
#
|
|
# This file and its contents are supplied under the terms of the
|
|
# Common Development and Distribution License ("CDDL"), version 1.0.
|
|
# You may only use this file in accordance with the terms of version
|
|
# 1.0 of the CDDL.
|
|
#
|
|
# A full copy of the text of the CDDL should have accompanied this
|
|
# source. A copy of the CDDL is also available via the Internet at
|
|
# http://www.illumos.org/license/CDDL.
|
|
#
|
|
|
|
#
|
|
# Copyright (c) 2015 by Delphix. All rights reserved.
|
|
#
|
|
|
|
. $STF_SUITE/tests/functional/rsend/rsend.kshlib
|
|
|
|
#
|
|
# Description:
|
|
# Verify that compressed send works correctly with incremental sends.
|
|
#
|
|
# Strategy:
|
|
# 1. Randomly choose either a -i or -I incremental.
|
|
# 2. Generate compressed incremental replication streams for a pool, a
|
|
# descendant dataset, and a volume.
|
|
# 3. Receive these streams verifying both the contents, and intermediate
|
|
# snapshots are present or absent as appropriate to the -i or -I option.
|
|
#
|
|
|
|
verify_runnable "both"
|
|
|
|
log_assert "Verify compressed send works with incremental send streams."
|
|
log_onexit cleanup_pool $POOL2
|
|
|
|
typeset opt=$(random_get "-i" "-I")
|
|
typeset final dstlist list vol
|
|
|
|
log_must eval "zfs send -R $POOL@final > $BACKDIR/final"
|
|
log_must eval "zfs receive -d -F $POOL2 < $BACKDIR/final"
|
|
|
|
function do_checks
|
|
{
|
|
log_must cmp_ds_cont $POOL $POOL2
|
|
[[ $opt = "-I" ]] && log_must cmp_ds_subs $POOL $POOL2
|
|
[[ $opt = "-i" ]] && log_mustnot cmp_ds_subs $POOL $POOL2
|
|
|
|
[[ $1 != "clean" ]] && return
|
|
|
|
cleanup_pool $POOL2
|
|
log_must eval "zfs send -R $POOL@final > $BACKDIR/final"
|
|
log_must eval "zfs receive -d -F $POOL2 < $BACKDIR/final"
|
|
}
|
|
|
|
if is_global_zone; then
|
|
# Send from the pool root
|
|
final=$(getds_with_suffix $POOL2 @final)
|
|
list="$final $(getds_with_suffix $POOL2 @snapA)"
|
|
list="$list $(getds_with_suffix $POOL2 @snapB)"
|
|
list="$list $(getds_with_suffix $POOL2 @snapC)"
|
|
|
|
log_must eval "zfs send -c -R $opt @init $POOL2@final >$BACKDIR/pool"
|
|
log_must destroy_tree $list
|
|
log_must eval "zfs recv -d -F $POOL2 <$BACKDIR/pool"
|
|
|
|
dstlist=$(getds_with_suffix $POOL2 @final)
|
|
[[ $final != $dstlist ]] && log_fail "$final != $dstlist"
|
|
|
|
do_checks clean
|
|
|
|
# Send of a volume
|
|
vol=$POOL2/$FS/vol
|
|
final=$(getds_with_suffix $vol @final)
|
|
log_must eval "zfs send -c -R $opt @init $vol@final >$BACKDIR/vol"
|
|
log_must destroy_tree $vol@snapB $vol@snapC $vol@final
|
|
log_must eval "zfs recv -d -F $POOL2 <$BACKDIR/vol"
|
|
|
|
dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
|
|
[[ $final != $dstlist ]] && log_fail "$final != $dstlist"
|
|
|
|
do_checks clean
|
|
fi
|
|
|
|
# Send of a descendant fs
|
|
final=$(getds_with_suffix $POOL2/$FS @final)
|
|
list="$final $(getds_with_suffix $POOL2/$FS @snapA)"
|
|
list="$list $(getds_with_suffix $POOL2/$FS @snapB)"
|
|
list="$list $(getds_with_suffix $POOL2/$FS @snapC)"
|
|
|
|
log_must eval "zfs send -c -R $opt @init $POOL2/$FS@final >$BACKDIR/fs"
|
|
log_must destroy_tree $list
|
|
log_must eval "zfs recv -d -F $POOL2 <$BACKDIR/fs"
|
|
|
|
dstlist=$(getds_with_suffix $POOL2/$FS @final)
|
|
[[ $final != $dstlist ]] && log_fail "$final != $dstlist"
|
|
|
|
do_checks
|
|
|
|
log_pass "Compressed send works with incremental send streams."
|