backup server recordsize
This commit is contained in:
parent
50fed682eb
commit
3b1ef1eb41
1 changed files with 13 additions and 6 deletions
|
@ -16,7 +16,14 @@ defaults = {
|
||||||
'/usr/bin/rsync',
|
'/usr/bin/rsync',
|
||||||
'/sbin/zfs',
|
'/sbin/zfs',
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
'zfs': {
|
||||||
|
'datasets': {
|
||||||
|
'tank': {
|
||||||
|
'recordsize': "1048576",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,7 +32,7 @@ defaults = {
|
||||||
)
|
)
|
||||||
def zfs(metadata):
|
def zfs(metadata):
|
||||||
datasets = {}
|
datasets = {}
|
||||||
|
|
||||||
for other_node in repo.nodes:
|
for other_node in repo.nodes:
|
||||||
if (
|
if (
|
||||||
other_node.has_bundle('backup') and
|
other_node.has_bundle('backup') and
|
||||||
|
@ -42,7 +49,7 @@ def zfs(metadata):
|
||||||
'com.sun:auto-snapshot': 'false',
|
'com.sun:auto-snapshot': 'false',
|
||||||
'backup': False,
|
'backup': False,
|
||||||
}
|
}
|
||||||
|
|
||||||
# for rsync backups
|
# for rsync backups
|
||||||
datasets[f'{base_dataset}/fs'] = {
|
datasets[f'{base_dataset}/fs'] = {
|
||||||
'mountpoint': f"/mnt/backups/{id}",
|
'mountpoint': f"/mnt/backups/{id}",
|
||||||
|
@ -51,10 +58,10 @@ def zfs(metadata):
|
||||||
'com.sun:auto-snapshot': 'true',
|
'com.sun:auto-snapshot': 'true',
|
||||||
'backup': False,
|
'backup': False,
|
||||||
}
|
}
|
||||||
|
|
||||||
# for zfs send/recv
|
# for zfs send/recv
|
||||||
if other_node.has_bundle('zfs'):
|
if other_node.has_bundle('zfs'):
|
||||||
|
|
||||||
# base datasets for each tank
|
# base datasets for each tank
|
||||||
for pool in other_node.metadata.get('zfs/pools'):
|
for pool in other_node.metadata.get('zfs/pools'):
|
||||||
datasets[f'{base_dataset}/{pool}'] = {
|
datasets[f'{base_dataset}/{pool}'] = {
|
||||||
|
@ -64,7 +71,7 @@ def zfs(metadata):
|
||||||
'com.sun:auto-snapshot': 'false',
|
'com.sun:auto-snapshot': 'false',
|
||||||
'backup': False,
|
'backup': False,
|
||||||
}
|
}
|
||||||
|
|
||||||
# actual datasets
|
# actual datasets
|
||||||
for path in other_node.metadata.get('backup/paths'):
|
for path in other_node.metadata.get('backup/paths'):
|
||||||
for dataset, config in other_node.metadata.get('zfs/datasets').items():
|
for dataset, config in other_node.metadata.get('zfs/datasets').items():
|
||||||
|
|
Loading…
Reference in a new issue