SOLVED zfs not send ix-applications and subfolders

qq8554650

Dabbler
Joined
Feb 7, 2022
Messages
23
zfs snapshot data/ix-applications@snap1
zfs send data/ix-applications@snap1 | ssh 192.168.188.22 zfs recv data2/ix

The files under docker are not copied. Commands send other datasets no problem

1677137841429.png
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,700
My first guess is that since you're not doing a recursive snapshot (and not sending it recursively either), the content you're missing is actually a child dataset, hence not in your snapshot and not sent.

Perhaps an additional interesting note is that I think I've seen somewhere (maybe from the TrueCharts folks) that you can't really replicate the ix-applications structure for any useful purpose other than maybe to restore back after pool loss.
 

qq8554650

Dabbler
Joined
Feb 7, 2022
Messages
23
My first guess is that since you're not doing a recursive snapshot (and not sending it recursively either), the content you're missing is actually a child dataset, hence not in your snapshot and not sent.

Perhaps an additional interesting note is that I think I've seen somewhere (maybe from the TrueCharts folks) that you can't really replicate the ix-applications structure for any useful purpose other than maybe to restore back after pool loss.
There is indeed no recursion. There is a total of 10T+ data under docker, which can be seen on the command line, about 1G/s is too slow
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,700
Top