[ceph-users] ceph install with Ansible
Hello, Ich need to install in CentOS 7 Ceph with Ansible. I searched at Ansible Galaxy and some Websites for a good Howto and Playbook. Does anyone have a good Howto to do this? Thanks for help. Regards Hauke -- www.compi-creative.net ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] incomplete PG
Dear everyone, during a very risky process or rebuilding my OSDs to relocate their WAL&DBs onto NVMe SSD partitions, I created a situation where 2 of 3 OSDs of jerasure 2+1 pool had become destroyed, without waiting for complete rebuild of their respective PGs on newly-created OSDs. And now I have an incomplete PG, looking like this : [WRN] PG_AVAILABILITY: Reduced data availability: 1 pg inactive, 1 pg incomplete pg 1.90 is incomplete, acting [2,3,5] (reducing pool jerasure21 min_size from 2 may help; search ceph.com/docs for 'incomplete') PGOBJECTS DEGRADED MISPLACED UNFOUND BYTES OMAP_BYTES* OMAP_KEYS* LOG STATE SINCE VERSION REPORTED UP ACTING SCRUB_STAMP DEEP_SCRUB_STAMP 1.900 0 00 00 00 incomplete47m 0'0 223998:104494 [2,3,5]p2 [2,3,5]p2 2020-04-01T13:22:08.983764+0300 2020-03-29T18:36:21.037198+0300 This corrupted some (or maybe all) of my iSCSI RBD targets, and now I would like to determine what of them will have to be dropped & recreated so as not to refer to these incomplete objects. Is there a known recipe or scenario to do that ? Also I would like to know if anything special needs to be done to the incomplete PG to make it complete and usable again. Thanks in advance for your help. ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] Re: Spillover warning log file?
I guess ceph.log in your mon would a good place to start... but am not sure Hth Mehmet Am 5. Juli 2020 13:44:34 MESZ schrieb Lindsay Mathieson : >Dumb question - in what log file are the rocks db spillover warnings >posted? > > >Thanks. > >-- >Lindsay >___ >ceph-users mailing list -- ceph-users@ceph.io >To unsubscribe send an email to ceph-users-le...@ceph.io ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] Re: MON store.db keeps growing with Octopus
Thanks Peter! Am 11.07.2020 um 06:13 schrieb Peter Woodman: in the meanwhile, you can turn on compression in your mon's rocksdb tunables and make things slightly less scary, something like: mon_rocksdb_options = write_buffer_size=33554432,compression=kLZ4Compression,level_compaction_dynamic_level_bytes=true,bottommost_compression=kLZ4HCCompression,max_background_jobs=4,max_subcompactions=2 I check the cluster the next day (around 10 hours after my mail) and it seems that the store.db size grew to almost 400GiB and then started to drop to ~8GiB again. It's now been at this level for 24 hours so it seems to have fixed itself. Regards, Michael ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] Research and Industrial conferences for Ceph research results
Hi Cephers, Can someone please share about the research and industrial conferences where one can publish Ceph related new research results? Additionally, are there any conferences which are particularly interested in Ceph results? I would like to know all suitable conferences. Thanks :-) Looking forward to hearing from you. BR Bobby !! ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] Re: Spillover warning log file?
On 12/07/2020 6:34 pm, c...@elchaka.de wrote: I guess ceph.log in your mon would a good place to start... but am not sure Thanks. Guess I should do a grep through all the ceph logs :) -- Lindsay ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] Re: ceph install with Ansible
Hi, i think this is what you're looking for. https://github.com/ceph/ceph-ansible http://docs.ceph.com/ceph-ansible/master/ Stable 4.0 supports CentOS7. Stable 5.0 supports only CentOS8. stable-3.0 Supports Ceph versions jewel and luminous. This branch requires Ansible version 2.4. stable-3.1 Supports Ceph versions luminous and mimic. This branch requires Ansible version 2.4. stable-3.2 Supports Ceph versions luminous and mimic. This branch requires Ansible version 2.6. stable-4.0 Supports Ceph version nautilus. This branch requires Ansible version 2.8. stable-5.0 Supports Ceph version octopus. This branch requires Ansible version 2.9. master Supports the master branch of Ceph. This branch requires Ansible version 2.9. bye Bernhard On 12/07/2020 09:13, Hauke Homburg wrote: Hello, Ich need to install in CentOS 7 Ceph with Ansible. I searched at Ansible Galaxy and some Websites for a good Howto and Playbook. Does anyone have a good Howto to do this? Thanks for help. Regards Hauke ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io
[ceph-users] Re: ceph install with Ansible
Correction: You can use stable5 with centos7 when dashboard not enabled. - name: fail on unsupported CentOS release fail: msg: "CentOS release not supported {{ ansible_distribution_major_version }} with dashboard" when: - ansible_distribution == 'CentOS' - ansible_distribution_major_version | int == 7 - not containerized_deployment | bool - dashboard_enabled | bool bye Bernhard On 13/07/2020 08:46, Bernhard Krieger wrote: Hi, i think this is what you're looking for. https://github.com/ceph/ceph-ansible http://docs.ceph.com/ceph-ansible/master/ Stable 4.0 supports CentOS7. Stable 5.0 supports only CentOS8. stable-3.0 Supports Ceph versions jewel and luminous. This branch requires Ansible version 2.4. stable-3.1 Supports Ceph versions luminous and mimic. This branch requires Ansible version 2.4. stable-3.2 Supports Ceph versions luminous and mimic. This branch requires Ansible version 2.6. stable-4.0 Supports Ceph version nautilus. This branch requires Ansible version 2.8. stable-5.0 Supports Ceph version octopus. This branch requires Ansible version 2.9. master Supports the master branch of Ceph. This branch requires Ansible version 2.9. bye Bernhard On 12/07/2020 09:13, Hauke Homburg wrote: Hello, Ich need to install in CentOS 7 Ceph with Ansible. I searched at Ansible Galaxy and some Websites for a good Howto and Playbook. Does anyone have a good Howto to do this? Thanks for help. Regards Hauke ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io