So, I'm quite likely to release 17.2.5-1 this weekend.
I did hit one strange issue during tests (see below) but both initializing a new cluster, and upgrading from v16 work.
On my v16 upgrade, I encountered a segfault in a mon, due to using leveldb
as a kv_backend, which has been deprecated since at least Jewel and is not supported in Quincy.
I have no idea why, the whole test is scripted so I didn't run something weird on one of them.
Regardless, I strongly encourage anyone that runs a cluster to follow the below instructions before you start upgrading monitors.
Ensure mon
s use kv_backend rocksdb
During testing I encountered a mon that was using leveldb
instead of rocksdb
. This is super weird, as leveldb was deprecated back in v10... and this test cluster was installed with v15... so WTF.
Check
cat /var/lib/ceph/mon/ceph-$(hostname -s)/kv_backend
This should report: rocksdb
.
Fix
If it instead reports leveldb
you need to run the following:
(
# These assume you name your mons after your hostnames. If not, adjust accordingly
mID=$(hostname -s)
SERVICE="ceph-mon@${mID}.service"
MONMAP=$(mktemp monmap.${mID}.XXXXX)
systemctl stop ${SERVICE} && sleep 2
ceph mon getmap -o ${MONMAP}
mv /var/lib/ceph/mon/ceph-${mID} /var/lib/ceph/mon/ceph-${mID}.bak
ceph-mon -i ${mID} --mkfs --monmap ${MONMAP} --keyring /var/lib/ceph/mon/ceph-${mID}.bak/keyring
chown -R ceph:ceph /var/lib/ceph/mon/ceph-${mID}
systemctl start ${SERVICE}
)
Once you confirm that:
- The mon is running and happy,
- The
kv_backend
now reportsrocksdb
You can remove the backup monmap:
rm -rf /var/lib/ceph/mon/ceph-$(hostname -s).bak
Pinned Comments
pbazaah commented on 2022-10-05 13:03 (UTC) (edited on 2022-10-05 13:03 (UTC) by pbazaah)
For future commenters:
TLDR:
https://aur.archlinux.org/pkgbase/ceph | From source build (slow)
https://aur.archlinux.org/pkgbase/ceph-bin | Pre-built binaries (fast)
Unlike the original community version, this repo builds ceph from source. Ceph is a large, complicated project so this takes several hours on a good build server.
To get a similar experience to how community/ceph worked (pre-built binaries) use ceph-bin instead.