mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-23 02:44:41 +03:00
Implement Redacted Send/Receive
Redacted send/receive allows users to send subsets of their data to a target system. One possible use case for this feature is to not transmit sensitive information to a data warehousing, test/dev, or analytics environment. Another is to save space by not replicating unimportant data within a given dataset, for example in backup tools like zrepl. Redacted send/receive is a three-stage process. First, a clone (or clones) is made of the snapshot to be sent to the target. In this clone (or clones), all unnecessary or unwanted data is removed or modified. This clone is then snapshotted to create the "redaction snapshot" (or snapshots). Second, the new zfs redact command is used to create a redaction bookmark. The redaction bookmark stores the list of blocks in a snapshot that were modified by the redaction snapshot(s). Finally, the redaction bookmark is passed as a parameter to zfs send. When sending to the snapshot that was redacted, the redaction bookmark is used to filter out blocks that contain sensitive or unwanted information, and those blocks are not included in the send stream. When sending from the redaction bookmark, the blocks it contains are considered as candidate blocks in addition to those blocks in the destination snapshot that were modified since the creation_txg of the redaction bookmark. This step is necessary to allow the target to rehydrate data in the case where some blocks are accidentally or unnecessarily modified in the redaction snapshot. The changes to bookmarks to enable fast space estimation involve adding deadlists to bookmarks. There is also logic to manage the life cycles of these deadlists. The new size estimation process operates in cases where previously an accurate estimate could not be provided. In those cases, a send is performed where no data blocks are read, reducing the runtime significantly and providing a byte-accurate size estimate. Reviewed-by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed-by: Matt Ahrens <mahrens@delphix.com> Reviewed-by: Prashanth Sreenivasa <pks@delphix.com> Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: George Wilson <george.wilson@delphix.com> Reviewed-by: Chris Williamson <chris.williamson@delphix.com> Reviewed-by: Pavel Zhakarov <pavel.zakharov@delphix.com> Reviewed-by: Sebastien Roy <sebastien.roy@delphix.com> Reviewed-by: Prakash Surya <prakash.surya@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Paul Dagnelie <pcd@delphix.com> Closes #7958
This commit is contained in:
committed by
Brian Behlendorf
parent
c1b5801bb5
commit
30af21b025
+8
-34
@@ -24,7 +24,7 @@
|
||||
*/
|
||||
/*
|
||||
* Copyright (c) 2012, Joyent, Inc. All rights reserved.
|
||||
* Copyright (c) 2013, 2015 by Delphix. All rights reserved.
|
||||
* Copyright (c) 2013, 2018 by Delphix. All rights reserved.
|
||||
*/
|
||||
|
||||
#ifndef _SYS_DMU_IMPL_H
|
||||
@@ -243,39 +243,13 @@ typedef struct dmu_xuio {
|
||||
iovec_t *iovp;
|
||||
} dmu_xuio_t;
|
||||
|
||||
/*
|
||||
* The list of data whose inclusion in a send stream can be pending from
|
||||
* one call to backup_cb to another. Multiple calls to dump_free() and
|
||||
* dump_freeobjects() can be aggregated into a single DRR_FREE or
|
||||
* DRR_FREEOBJECTS replay record.
|
||||
*/
|
||||
typedef enum {
|
||||
PENDING_NONE,
|
||||
PENDING_FREE,
|
||||
PENDING_FREEOBJECTS
|
||||
} dmu_pendop_t;
|
||||
|
||||
typedef struct dmu_sendarg {
|
||||
list_node_t dsa_link;
|
||||
dmu_replay_record_t *dsa_drr;
|
||||
vnode_t *dsa_vp;
|
||||
int dsa_outfd;
|
||||
proc_t *dsa_proc;
|
||||
offset_t *dsa_off;
|
||||
objset_t *dsa_os;
|
||||
zio_cksum_t dsa_zc;
|
||||
uint64_t dsa_toguid;
|
||||
uint64_t dsa_fromtxg;
|
||||
int dsa_err;
|
||||
dmu_pendop_t dsa_pending_op;
|
||||
uint64_t dsa_featureflags;
|
||||
uint64_t dsa_last_data_object;
|
||||
uint64_t dsa_last_data_offset;
|
||||
uint64_t dsa_resume_object;
|
||||
uint64_t dsa_resume_offset;
|
||||
boolean_t dsa_sent_begin;
|
||||
boolean_t dsa_sent_end;
|
||||
} dmu_sendarg_t;
|
||||
typedef struct dmu_sendstatus {
|
||||
list_node_t dss_link;
|
||||
int dss_outfd;
|
||||
proc_t *dss_proc;
|
||||
offset_t *dss_off;
|
||||
uint64_t dss_blocks; /* blocks visited during the sending process */
|
||||
} dmu_sendstatus_t;
|
||||
|
||||
void dmu_object_zapify(objset_t *, uint64_t, dmu_object_type_t, dmu_tx_t *);
|
||||
void dmu_object_free_zapified(objset_t *, uint64_t, dmu_tx_t *);
|
||||
|
||||
Reference in New Issue
Block a user