Create cephfs snapshots, manually or from cron.
# cephfs-snp
Usage: cephfs-snp <dir> (<tag>) (<limit>) (<seconds>)
dir │ create snapshot of <dir>
tag │ name the snapshot <tag>_<timestamp>
limit │ keep <limit> snapshots with this tag. 0 to disable
seconds │ don't create snapshots before <seconds> have passed from last with this tag. 0 to disable
Snapshot of home
# cephfs-snp /home
Tagged snapshot of root
# cephfs-snp / preupgrade
Tagged snapshot of root, but keep maximum 10
# cephfs-snp / preupgrade 10
Hourly snapshot for one day, daily for one week, weekly for one month, and monthly for one year.
# cat > /etc/cron.hourly/cephfs-snp <<EOF
#!/bin/bash
/usr/local/sbin/$BIN /home hourly 24 3600
/usr/local/sbin/$BIN /home daily 7 86400
/usr/local/sbin/$BIN /home weekly 4 604800
/usr/local/sbin/$BIN / weekly 4 604800
/usr/local/sbin/$BIN /home monthly 12 2592000
EOF
chmod +x /etc/cron.hourly/cephfs-snp
Based on btrfs-snp by Birger Monsen
Inspired by btrfs-snap by Ignacio Nunez Hernanz