how to allow backup files on a zfs pool?

mfgamma

Renowned Member
Jan 8, 2011
32
4
73
Hi

on pvE4.4 , only disk image and container are allowed by default

when adding the backup file case in /etc/pve/storage.cfg for the specific zfspool it doest not show up in the GUI as an option.

Is it on purpose?

thanks
 
Hi,

You have to create an extra storage from type "dir" to use zfs as backup store.
 
Hi Wolfgang

thanks for the reply.

in fact I was doing that ie defining a dir using as directory the mount point of a dataset

But what triggered my point was I have seen in another track that dir on zfs is "risky"

so what exactly is ok as dir on zfs?

thanks and best regards
Marc
 
But what triggered my point was I have seen in another track that dir on zfs is "risky"
Dir on ZFS is ok, but qcow2 and other strange things are very bad ideas. You create a new dataset for you backups (it is like a dir).
Code:
zfs create mypool/backups
zfs set compression=lz4 mypool/backups
 
Last edited:
Hi,

You have to create an extra storage from type "dir" to use zfs as backup store.
I know this is an old thread, but I'd still want to ask if you can do incremental backups with zfs using the dir storage.
As far as I know, you need to have the zfs logic also on the other side. Otherwise, you'd have to use full backups and you just reimport the files as they are.