ceph 快照未运行

ceph 快照未运行

我们的 ceph 集群(quincy 17.2.7)在 docker 容器中运行。快照计划创建如下:

ceph fs snap-schedule add / 1h 2023-12-13T09:00:00 nerfcomputing2024

和保留:

ceph fs snap-schedule retention add / n 30 nerfcomputing2024

输入是正确的,如下面的状态所示,但是,快照从未启动,"first": null, "last": null 如下所示,请注意, snap_schedule is on

另请注意ceph 文档说要做ceph fs set <fs_name> allow_new_snaps true,我照做了。但是,当我 grep 查找 时snaps,最接近的匹配项是allow_snaps我认为这与 相同allow_new_snaps。最后,我想指出的是,.snap卷中的文件夹在那里。

root@nerffs14:/# sudo ceph fs snap-schedule status
{"fs": "nerfcomputing2024", "subvol": null, "path": "/", "rel_path": "/", "schedule": "1h", "retention": {"n": 30}, "start": "2023-12-13T09:00:00", "created": "2023-12-13T08:53:16", "first": null, "last": null, "last_pruned": null, "created_count": 0, "pruned_count": 0, "active": true}
root@nerffs14:/# sudo ceph fs get nerfcomputing2024 | grep snaps
flags   12 joinable allow_snaps allow_multimds_snaps
root@nerffs14:/# sudo ceph mgr module ls | grep snap_schedule
snap_schedule         on            
root@nerffs14:/# ceph --version
ceph version 17.2.7 (b12291d110049b2f35e32e0de30d70e9a4c060d2) quincy (stable)
root@nerffs14:/# 

知道为什么快照没有运行吗?

答案1

执行 后,现在正在工作ceph fs snap-schedule activate。因此,似乎ceph fs snap-schedule status->的输出"active": true并不意味着 snap 已经激活

相关内容