I'm getting an error creating a snapshot named snp01 of VMID 500:
I know that "*-state-*" images contain the memory of the VM at the moment of the backup. This VM is stored in Ceph and has no previous snapshot, so no image nor snapshot for that VM should exist.
I can see that image in the storage:
There is no snapshot neither for the VM nor for the image vm-500-disk-0 (
This seems to be some kind of leftover from a previous snapshot:
Can I safely delete the Ceph rbd image "vm-500-state-snp01"?
Thanks in advance
Code:
rbd: create error: 2021-10-19 14:10:50.941 7fd6304630c0 -1 librbd: rbd image vm-500-state-snp01 already exists
I know that "*-state-*" images contain the memory of the VM at the moment of the backup. This VM is stored in Ceph and has no previous snapshot, so no image nor snapshot for that VM should exist.
I can see that image in the storage:
Code:
~# rbd list cephVM | grep 500
vm-500-disk-0
vm-500-state-snp01
There is no snapshot neither for the VM nor for the image vm-500-disk-0 (
rbd snap ls cephVM/vm-500-disk-0
shows nothing).This seems to be some kind of leftover from a previous snapshot:
Code:
~# rbd info cephVM/vm-500-state-snp01
rbd image 'vm-500-state-snp01':
size 6.5 GiB in 1661 objects
order 22 (4 MiB objects)
snapshot_count: 0
id: 8268eeed033f30
block_name_prefix: rbd_data.8268eeed033f30
format: 2
features: layering, exclusive-lock, object-map, fast-diff, deep-flatten
op_features:
flags:
create_timestamp: Thu Sep 30 16:18:00 2021
access_timestamp: Thu Sep 30 16:18:00 2021
modify_timestamp: Thu Sep 30 16:18:00 2021
Can I safely delete the Ceph rbd image "vm-500-state-snp01"?
Thanks in advance