Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xanpeng/libcrush
Crush algorithm from Ceph (http://ceph.com/)
https://github.com/xanpeng/libcrush
Last synced: 3 months ago
JSON representation
Crush algorithm from Ceph (http://ceph.com/)
- Host: GitHub
- URL: https://github.com/xanpeng/libcrush
- Owner: xanpeng
- Created: 2014-11-04T06:01:54.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-10T07:06:18.000Z (about 10 years ago)
- Last Synced: 2024-07-16T12:00:09.515Z (4 months ago)
- Language: C
- Size: 141 KB
- Stars: 9
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
under development...
If you want to use this library, you should notice:
- apply libcrush-based-on-ceph0.86.diff, then recompile ceph and get a new librados.so
- `./build.sh` to create libcrush.so
- `cd build; make install` to install libcrush.so
- `-lcrush -lrados`, link libcrush before librados, because librados contains unmodified crush codesI want to:
- simulate CRUSH algorithm with online data in a live Ceph cluster.
- access crushmap.How I do:
- adjust Ceph code (based on v0.86), make a new librados.
- diff: libcrush-based-on-ceph0.86.diff.I tried:
- extract crush + client code from kernel code. -- difficult.
- use librados directly. -- no access to crushmap.