You're reading an old version of this documentation. If you want up-to-date information, please have a look at stable.

Job Types & Replication

Overview & Terminology

A job is the unit of activity tracked by the zrepl daemon. Every job has a unique name, a type and type-dependent fields which are documented on this page.

Replication always happens between a pair of jobs: one is the active side, and one the passive side. The active side executes the replication logic whereas the passive side responds to requests after checking the active side’s permissions. For communication, the active side connects to the passive side using a transport and starts issuing remote procedure calls (RPCs).

The following table shows how different job types can be combined to achieve both push and pull mode setups:

Setup name

active side

passive side

use case

Push mode

push

sink

  • Laptop backup

  • NAS behind NAT to offsite

Pull mode

pull

source

  • Central backup-server for many nodes

  • Remote server to NAS behind NAT

Local replication

push + sink in one config
  • Backup FreeBSD boot pool

Snap & prune-only

snap

N/A

How the Active Side Works

The active side (push and pull job) executes the replication and pruning logic:

  • Wakeup because of finished snapshotting (push job) or pull interval ticker (pull job).

  • Connect to the corresponding passive side using a transport and instantiate an RPC client.

  • Replicate data from the sending to the receiving side.

  • Prune on sender & receiver.

Tip

The progress of the active side can be watched live using the zrepl status subcommand.

How the Passive Side Works

The passive side (sink and source) waits for connections from the corresponding active side, using the transport listener type specified in the serve field of the job configuration. Each transport listener provides a client’s identity to the passive side job. It uses the client identity for access control:

  • The sink job maps requests from different client identities to their respective sub-filesystem tree root_fs/${client_identity}.

  • The source job has a whitelist of client identities that are allowed pull access.

Tip

The implementation of the sink job requires that the connecting client identities be a valid ZFS filesystem name components.

How Replication Works

One of the major design goals of the replication module is to avoid any duplication of the nontrivial logic. As such, the code works on abstract senders and receiver endpoints, where typically one will be implemented by a local program object and the other is an RPC client instance. Regardless of push- or pull-style setup, the logic executes on the active side, i.e. in the push or pull job.

The following steps take place during replication and can be monitored using the zrepl status subcommand:

  • Plan the replication:

    • Compare sender and receiver filesystem snapshots

    • Build the replication plan

      • Per filesystem, compute a diff between sender and receiver snapshots

      • Build a list of replication steps

        • If possible, use incremental sends (zfs send -i)

        • Otherwise, use full send of most recent snapshot on sender

        • Give up on filesystems that cannot be replicated without data loss

    • Retry on errors that are likely temporary (i.e. network failures).

    • Give up on filesystems where a permanent error was received over RPC.

  • Execute the plan

    • Perform replication steps in the following order: Among all filesystems with pending replication steps, pick the filesystem whose next replication step’s snapshot is the oldest.

    • Create placeholder filesystems on the receiving side to mirror the dataset paths on the sender to root_fs/${client_identity}.

    • After a successful replication step, update the replication cursor bookmark (see below).

The idea behind the execution order of replication steps is that if the sender snapshots all filesystems simultaneously at fixed intervals, the receiver will have all filesystems snapshotted at time T1 before the first snapshot at T2 = T1 + $interval is replicated.

The replication cursor bookmark #zrepl_replication_cursor is kept per filesystem on the sending side of a replication setup: It is a bookmark of the most recent successfully replicated snapshot to the receiving side. It is is used by the not_replicated keep rule to identify all snapshots that have not yet been replicated to the receiving side. Regardless of whether that keep rule is used, the bookmark ensures that replication can always continue incrementally. Note that there is only one cursor bookmark per filesystem, which prohibits multiple jobs to replicate the same filesystem (see below).

Placeholder filesystems on the receiving side are regular ZFS filesystems with the placeholder property zrepl:placeholder=on. Placeholders allow the receiving side to mirror the sender’s ZFS dataset hierachy without replicating every filesystem at every intermediary dataset path component. Consider the following example: S/H/J shall be replicated to R/sink/job/S/H/J, but neither S/H nor S shall be replicated. ZFS requires the existence of R/sink/job/S and R/sink/job/S/H in order to receive into R/sink/job/S/H/J. Thus, zrepl creates the parent filesystems as placeholders on the receiving side. If at some point S/H and S shall be replicated, the receiving side invalidates the placeholder flag automatically. The zrepl test placeholder command can be used to check whether a filesystem is a placeholder.

Attention

Currently, zrepl does not replicate filesystem properties. Whe receiving a filesystem, it is never mounted (-u flag) and mountpoint=none is set. This is temporary and being worked on issue #24.

Taking Snaphots

The push, source and snap jobs can automatically take periodic snapshots of the filesystems matched by the filesystems filter field. The snapshot names are composed of a user-defined prefix followed by a UTC date formatted like 20060102_150405_000. We use UTC because it will avoid name conflicts when switching time zones or between summer and winter time.

For push jobs, replication is automatically triggered after all filesystems have been snapshotted.

jobs:
- type: push
  filesystems: {
    "<": true,
    "tmp": false
  }
  snapshotting:
    type: periodic
    prefix: zrepl_
    interval: 10m
  ...

There is also a manual snapshotting type, which covers the following use cases:

  • Existing infrastructure for automatic snapshots: you only want to use this zrepl job for replication.

  • Run scripts before and after taking snapshots (like locking database tables). We are working on better integration for this use case: see issue #74.

  • Handling snapshotting through a separate snap job.

Note that you will have to trigger replication manually using the zrepl signal wakeup JOB subcommand in that case.

jobs:
- type: push
  filesystems: {
    "<": true,
    "tmp": false
  }
  snapshotting:
    type: manual
  ...

Multiple Jobs & More than 2 Machines

Attention

When using multiple jobs across single or multiple machines, the following rules are critical to avoid race conditions & data loss:

  1. The sets of ZFS filesystems matched by the filesystems filter fields must be disjoint across all jobs configured on a machine.

  2. The ZFS filesystem subtrees of jobs with root_fs must be disjoint.

  3. Across all zrepl instances on all machines in the replication domain, there must be a 1:1 correspondence between active and passive jobs.

Explanations & exceptions to above rules are detailed below.

If you would like to see improvements to multi-job setups, please open an issue on GitHub.

No Overlapping

Jobs run independently of each other. If two jobs match the same filesystem with their filesystems filter, they will operate on that filesystem independently and potentially in parallel. For example, if job A prunes snapshots that job B is planning to replicate, the replication will fail because B asssumed the snapshot to still be present. More subtle race conditions can occur with the replication cursor bookmark, which currently only exists once per filesystem.

N push jobs to 1 sink

The sink job namespaces by client identity. It is thus safe to push to one sink job with different client identities. If the push jobs have the same client identity, the filesystems matched by the push jobs must be disjoint to avoid races.

N pull jobs from 1 source

Multiple pull jobs pulling from the same source have potential for race conditions during pruning: each pull job prunes the source side independently, causing replication-prune and prune-prune races.

There is currently no way for a pull job to filter which snapshots it should attempt to replicate. Thus, it is not possibe to just manually assert that the prune rules of all pull jobs are disjoint to avoid replication-prune and prune-prune races.


Job Type push

Parameter

Comment

type

= push

name

unique name of the job

connect

connect specification

filesystems

filter specification for filesystems to be snapshotted and pushed to the sink

snapshotting

snapshotting specification

pruning

pruning specification

Example config: config/samples/push.yml

Job Type sink

Parameter

Comment

type

= sink

name

unique name of the job

serve

serve specification

root_fs

ZFS filesystems are received to $root_fs/$client_identity/$source_path

Example config: config/samples/sink.yml

Job Type pull

Parameter

Comment

type

= pull

name

unique name of the job

connect

connect specification

root_fs

ZFS filesystems are received to $root_fs/$source_path

interval

Interval at which to pull from the source job (e.g. 10m).
manual disables periodic pulling, replication then only happens on wakeup.

pruning

pruning specification

Example config: config/samples/pull.yml

Job Type source

Parameter

Comment

type

= source

name

unique name of the job

serve

serve specification

filesystems

filter specification for filesystems to be snapshotted and exposed to connecting clients

snapshotting

snapshotting specification

Example config: config/samples/source.yml

Local replication

If you have the need for local replication (most likely between two local storage pools), you can use the local transport type to connect a local push job to a local sink job.

Example config: config/samples/local.yml.

Job Type snap (snapshot & prune only)

Job type that only takes snapshots and performs pruning on the local machine.

Parameter

Comment

type

= snap

name

unique name of the job

filesystems

filter specification for filesystems to be snapshotted

snapshotting

snapshotting specification

pruning

pruning specification

Example config: config/samples/snap.yml