Package Details: ceph 18.2.2-2

Git Clone URL: https://aur.archlinux.org/ceph.git (read-only, click to copy)
Package Base: ceph
Description: Ceph Storage full install [VIRTUAL]
Upstream URL: https://ceph.com/
Licenses: GPL
Submitter: foxxx0
Maintainer: pbazaah
Last Packager: pbazaah
Votes: 6
Popularity: 0.064636
First Submitted: 2022-08-08 09:09 (UTC)
Last Updated: 2024-03-23 14:44 (UTC)

Sources (24)

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.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 Next › Last »

petronny commented on 2022-10-31 14:57 (UTC)

Getting

/build/ceph/src/ceph-17.2.5/src/common/options/legacy_config_opts.h:3:10: fatal error: mds_legacy_options.h: No such file or directory

Full build log: https://github.com/arch4edu/cactus/actions/runs/3361784541/jobs/5572635705

pbazaah commented on 2022-10-30 19:02 (UTC)

v17.2.5 has been released, and Archlinux is finally on the current Ceph release again!

Its been an interesting couple months, and I've definitely learned a lot about CMake, but I'll probably be taking a break from pushing releases now, until after the new year, serious bug fixes excluded.

petronny commented on 2022-10-28 01:02 (UTC) (edited on 2022-11-03 05:30 (UTC) by petronny)

Yes. Quincy doesn't support leveldb anymore. See https://docs.ceph.com/en/quincy/releases/quincy/#upgrading-from-octopus-or-pacific

You can show this in post_upgrade().

pbazaah commented on 2022-10-27 17:24 (UTC)

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 mons 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:

  1. The mon is running and happy,
  2. The kv_backend now reports rocksdb

You can remove the backup monmap:

rm -rf /var/lib/ceph/mon/ceph-$(hostname -s).bak

pbazaah commented on 2022-10-27 08:56 (UTC)

I've got what is likely to be the 17.2.5 release locked down, including enabling AQMP and kafka integrations.

This is also the first release (maybe ever, for Archlinux?) that will include working cython bindings for rados,rbd,cephfs libs, and the first release with fully passing make check tests -- minus a couple that were disabled (wants sudo, docker, etc).

My only concern remaining is that with python 3.11 released, I'll need to rebuild binaries soonish.

pbazaah commented on 2022-10-24 21:25 (UTC)

Got my first full green v17.2.4 build this evening!

cython issues fixed, tests (mostly) working -- got one racy python test suite I CBA to fix.

I'm running a few tests around enabling rados gateway AQMP and Kafka features, but regardless of how that turns out, I need to start working on a 17.2.5 build now.

pbazaah commented on 2022-10-20 10:08 (UTC)

I have a working v17.2.4 build. However:

  • v17.2.5 is now out, with a few important fixes
  • I still have some cython failures during the install
  • 6 tests are failing, though only 2 are relevant (others fail due to no sudo access, prometheus, etc)

So there still is some work to be done before I'm ready to release it.

torakamo commented on 2022-10-18 13:45 (UTC)

I encountered installation problems when yay attempts to install https://github.com/ceph/teuthology.git because it's trying to checkout the master branch while the project on github appears to have replaced the master by main.

I'm not aware how I would be able to fix that myself.

The error message is: =================================== log end ==================================== ERROR: could not install deps [git+https://github.com/ceph/teuthology.git@master#egg=teuthology[coverage,orchestra,test], nose]; v = InvocationError("~/.cache/yay/ceph/src/ceph-16.2.10/qa/.tox/import-tasks/bin/python -m pip install 'git+https://github.com/ceph/teuthology.git@master#egg=teuthology[coverage,orchestra,test]' nose", 1) _____ summary ______ py3: commands succeeded ERROR: flake8: commands failed ERROR: import-tasks: could not install deps [git+https://github.com/ceph/teuthology.git@master#egg=teuthology[coverage,orchestra,test], nose]; v = InvocationError("~/.cache/yay/ceph/src/ceph-16.2.10/qa/.tox/import-tasks/bin/python -m pip install 'git+https://github.com/ceph/teuthology.git@master#egg=teuthology[coverage,orchestra,test]' nose", 1)

pbazaah commented on 2022-10-16 09:43 (UTC)

So I discovered some failing cython bits in the CMake install. I'm not going to block releasing 16.2.10 on these though, as they are mostly part of the python API .

There may be some bits of the ceph CLI that also break because of this, but I haven't found them yet.

I'll work on addressing this either as a pkgrel increment, or as part of the push to v17

pbazaah commented on 2022-10-14 08:07 (UTC)

@regulator

I believe you are correct. Nothing inside the normal repos should depend on ceph anymore, however you may still have dependencies from other AUR packages.