]>
git.apps.os.sepia.ceph.com Git - ceph.git/log
Ilya Dryomov [Sat, 9 Dec 2023 20:00:42 +0000 (21:00 +0100)]
test/librbd: avoid config-related crashes in DiscardWithPruneWriteOverlap
For reasons that I think no longer apply today, set_val() and
set_val_or_die() refuse to set "type: str" config options that aren't
marked as "can be changed at runtime" -- set_val() returns an error and
set_val_or_die() terminates the process. What is and isn't marked as
"can be changed at runtime" seems to be pretty much random both within
and outside of RBD, so let's just refactor how config is set here.
While at it, I realized that reproducer config is underspecified:
- for rbd_cache_policy and rbd_cache_writethrough_until_flush settings
to matter, rbd_cache must be set to true and rbd_cache_max_dirty must
be set to a positive number
- order should be set explicitly, because rbd_default_order can be as
low as 12 (for 4096-byte objects), interfering with the logic of the
test
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
(cherry picked from commit
de397f7588897fb0a3f15dcddf660c8e569b1e4e )
Joshua Baergen [Wed, 29 Nov 2023 15:47:01 +0000 (08:47 -0700)]
test/librbd: Add workaround for a journaling deadlock that this test exposes
Signed-off-by: Joshua Baergen <jbaergen@digitalocean.com>
(cherry picked from commit
7436b4c99034dd19b2ff1e759603779061cbfdb6 )
Joshua Baergen [Thu, 9 Nov 2023 16:43:22 +0000 (09:43 -0700)]
librbd: Append one journal event per image request
In the case where an image request is split across multiple object
extents and journaling is enabled, multiple journal events are appended.
Prior to this change, all object requests would wait for the last
journal event to complete, since journal events complete in order and
thus the last one completing implies that all prior journal events were
safe at that point.
The issue with this is that there's nothing stopping that last journal
event from being cleaned up before all object requests have stopped
referring to it. Thus, it's entirely possible for the following sequence
to occur:
1. An image request gets split into two image extents and two object
requests. Journal events are appended (one per image extent).
2. The first object request gets delayed due to an overlap, but the
second object request gets submitted and starts waiting on the last
journal event (which also causes a C_CommitIOEvent to be instantiated
against that journal event).
3. Journaling completes, and the C_CommitIOEvent fires. The
C_CommitIOEvent covers the entire range of data that was journaled in
this event, and so the event is cleaned up.
4. The first object request from above is allowed to make progress; it
tries to wait for the journal event that was just cleaned up which
causes the assert in wait_event() to fire.
As far as I can tell, this is only possible on the discard path today,
and only recently. Up until
21a26a752843295ff946d1543c2f5f9fac764593
(librbd: Fix local rbd mirror journals growing forever), m_image_extents
always contained a single extent for all I/O types; this commit changed
the discard path so that if discard granularity changed the discard
request, m_image_extents would be repopulated, and if the request
happened to cross objects then there would be multiple m_image_extents.
It appears that the intent here was that there should be one journal
event per image request and the pending_extents kept track of what had
completed thus far. This commit restores that 1:1 relationship.
Fixes: https://tracker.ceph.com/issues/63422
Signed-off-by: Joshua Baergen <jbaergen@digitalocean.com>
(cherry picked from commit
4a8fa2da72fe64109073fddca0d4cfd99aeb9c77 )
Joshua Baergen [Thu, 9 Nov 2023 16:43:21 +0000 (09:43 -0700)]
librbd: Change append_io_events() to take Extents
An upcoming commits will use this to change how multi-extent image
requests are appended to the journal.
Signed-off-by: Joshua Baergen <jbaergen@digitalocean.com>
(cherry picked from commit
9fae091ea22c627cb18cc68055afa7acf634c1b7 )
Joshua Baergen [Thu, 9 Nov 2023 16:43:20 +0000 (09:43 -0700)]
librbd: Eliminate unused m_synchronous from AbstractImageWriteRequest
This has been unused since its introduction years ago and so isn't worth
keeping.
Signed-off-by: Joshua Baergen <jbaergen@digitalocean.com>
(cherry picked from commit
a0ccd8bb3ffbecb3313c0cdd7d3e6091fc2a9721 )
Joshua Baergen [Thu, 9 Nov 2023 16:43:19 +0000 (09:43 -0700)]
test/librbd: Add a stress test that reproduces a crash during discard journaling
See the comments in DiscardWithPruneWriteOverlap for details.
Signed-off-by: Joshua Baergen <jbaergen@digitalocean.com>
(cherry picked from commit
e8d54e3c9faeddedc2890294556cd66095b83be4 )
zdover23 [Wed, 6 Dec 2023 16:12:17 +0000 (17:12 +0100)]
Merge pull request #54806 from zdover23/wip-doc-2023-12-06-backport-54790-to-quincy
quincy: doc/radosgw: update link in rgw-cache.rst
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Tue, 5 Dec 2023 19:46:26 +0000 (20:46 +0100)]
doc/radosgw: update link in rgw-cache.rst
Update link in doc/radosgw/rgw-cache.rst. The link updated here is a
link to all the Nginx configuration files. The old link was broken. This
update comes to us from an anonymous report on
https://pad.ceph.com/p/Report_Documentation_Bugs.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
e80d560d97bd44f9a308916a099bf9391813d95b )
zdover23 [Tue, 5 Dec 2023 19:35:00 +0000 (20:35 +0100)]
Merge pull request #54754 from zdover23/wip-doc-2023-12-02-backport-54752-to-quincy
quincy: doc/radosgw: fix formatting
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Anthony D'Atri [Mon, 4 Dec 2023 21:14:08 +0000 (16:14 -0500)]
Merge pull request #54776 from zdover23/wip-doc-2023-12-04-backport-54774-to-quincy
quincy: doc: Fixes two typos and grammatical errors. Signed-off-by: Sina Ahma…
sinashan [Mon, 4 Dec 2023 19:02:54 +0000 (14:02 -0500)]
doc: Fixes two typos and grammatical errors. Signed-off-by: Sina Ahmadi <sinatak1373@live.com>
(cherry picked from commit
bc39adceba611b00c04a894039b4c3280434d3fa )
Anthony D'Atri [Mon, 4 Dec 2023 14:04:21 +0000 (09:04 -0500)]
Merge pull request #54763 from zdover23/wip-doc-2023-12-04-backport-54758-to-quincy
quincy: doc/rados: repair stretch-mode.rst
Zac Dover [Sun, 3 Dec 2023 12:17:46 +0000 (13:17 +0100)]
doc/rados: repair stretch-mode.rst
Remove a section of doc/rados/operations/stretch-mode.rst that I wrongly
re-included after its removal. The request for this (re)-removal is
here: https://github.com/ceph/ceph/pull/54689#discussion_r1413007655.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
b73656787d618197c60372d1817eab35879fa478 )
Anthony D'Atri [Sun, 3 Dec 2023 14:52:16 +0000 (09:52 -0500)]
Merge pull request #54757 from zdover23/wip-doc-2023-12-03-backport-54689-to-quincy
quincy: doc/rados: update "stretch mode"
PC-Admin [Tue, 28 Nov 2023 09:45:52 +0000 (17:45 +0800)]
doc/rados: update "stretch mode"
Update stretch mode docs, min_size and max_size are no longer defined in
the CRUSH map and the example rule given will fail to compile.
Specify that the tiebreaker data centre cannot be defined in CRUSH as
this produces an error.
Signed-off-by: Michael Collins <perthserverplus@gmail.com>
(cherry picked from commit
28551b41f878e7ad8f43e85bcbc8c9f64c07346c )
Zac Dover [Sat, 2 Dec 2023 05:38:28 +0000 (06:38 +0100)]
doc/radosgw: fix formatting
Repair the formatting of a string that had a string inside backticks
that itself was inside double asterisks. The presence of the asterisks
around the entire string caused the backticks to appear in the rendered
documentation.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
08ac3114e9fdb4fe7260002639058ded6e47a5ee )
Anthony D'Atri [Fri, 1 Dec 2023 14:59:17 +0000 (09:59 -0500)]
Merge pull request #54744 from zdover23/wip-doc-2023-12-01-backport-54730-to-quincy
quincy: doc/glossary.rst: add "Monitor Store"
Anthony D'Atri [Fri, 1 Dec 2023 14:58:44 +0000 (09:58 -0500)]
Merge pull request #54747 from zdover23/wip-doc-2023-12-01-backport-54731-to-quincy
quincy: doc/rados: improve formatting of log-and-debug.rst
Zac Dover [Thu, 30 Nov 2023 08:16:38 +0000 (09:16 +0100)]
doc/rados: improve formatting of log-and-debug.rst
Improve the arrangment of information in the section "Ceph Subsystems"
in doc/rados/troubleshooting/log-and-debug.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
e63fa697b72b3c12d98169958b6dd74cc6eb5486 )
Zac Dover [Thu, 30 Nov 2023 07:08:00 +0000 (08:08 +0100)]
doc/glossary.rst: add "Monitor Store"
Add the term "Monitor Store" to the glossary.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
35d168826fd7b96cb73c6d799f7267a92f3453e9 )
Anthony D'Atri [Wed, 29 Nov 2023 04:53:42 +0000 (23:53 -0500)]
Merge pull request #54701 from zdover23/wip-doc-2023-11-29-backport-54684-to-quincy
quincy: doc/rados: ops/pgs: s/power of 2/power of two
Anthony D'Atri [Wed, 29 Nov 2023 04:52:38 +0000 (23:52 -0500)]
Merge pull request #54703 from zdover23/wip-doc-2023-11-29-backport-54685-to-quincy
quincy: doc/rados: improve "Ceph Subsystems"
Zac Dover [Tue, 28 Nov 2023 05:08:48 +0000 (06:08 +0100)]
doc/rados: improve "Ceph Subsystems"
Improve the English in the subsection "Ceph Subsystems" in the section
"Subsystem, Log and Debug Settings" [sic] in
doc/rados/troubleshooting/log-and-debug.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
7bca5f57cc2c11bdd76dd0edb43c716a1d5ad355 )
Zac Dover [Tue, 28 Nov 2023 04:29:50 +0000 (05:29 +0100)]
doc/rados: ops/pgs: s/power of 2/power of two
Change "power of 2" to "power of two" in
doc/rados/operations/placement-groups.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
ca819633219b7978ece2201b1ab0d7dc9c0faee8 )
Nizamudeen A [Mon, 27 Nov 2023 12:19:40 +0000 (17:49 +0530)]
Merge pull request #54250 from rhcs-dashboard/disable-dashboard-v3-quincy
quincy: mgr/dashboard: disable dashboard v3 in quincy
Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
Anthony D'Atri [Mon, 27 Nov 2023 06:56:12 +0000 (01:56 -0500)]
Merge pull request #54666 from zdover23/wip-doc-2023-11-27-backport-54664-to-quincy
quincy: doc/rados: edit "Everything Failed! Now What?"
Zac Dover [Mon, 27 Nov 2023 00:17:17 +0000 (10:17 +1000)]
doc/rados: edit "Everything Failed! Now What?"
Edit the section "Everything Failed! Now what?" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthoy D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
d8cd49259d797304adfbdb8eb46110e8b749256e )
Anthony D'Atri [Sun, 26 Nov 2023 04:16:18 +0000 (23:16 -0500)]
Merge pull request #54660 from zdover23/wip-doc-2023-11-26-backport-54656-to-quincy
quincy: doc/rados: edit "monitor store failures"
Zac Dover [Fri, 24 Nov 2023 21:33:24 +0000 (07:33 +1000)]
doc/rados: edit "monitor store failures"
Edit the section "Monitor Store Failures" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
0a1ce0016871dc2ce29d4e7eff564a199d54c6e3 )
Anthony D'Atri [Sat, 25 Nov 2023 00:43:56 +0000 (19:43 -0500)]
Merge pull request #54655 from zdover23/wip-doc-2023-11-25-backport-54625-to-quincy
quincy: doc/rados: edit "client can't connect..."
Zac Dover [Thu, 23 Nov 2023 04:59:24 +0000 (14:59 +1000)]
doc/rados: edit "client can't connect..."
Edit the section "Client can't connect or mount" in the file
doc/rados/troubleshooting/troubleshooting-mon.rst.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
ec298091b5e754293e798c90fc8afc3e4504d632 )
Nizamudeen A [Mon, 30 Oct 2023 15:24:50 +0000 (20:54 +0530)]
mgr/dashboard: disable dashboard v3 in quincy
Fixes: https://tracker.ceph.com/issues/63357
Signed-off-by: Nizamudeen A <nia@redhat.com>
Anthony D'Atri [Thu, 23 Nov 2023 22:54:17 +0000 (17:54 -0500)]
Merge pull request #54643 from zdover23/wip-doc-2023-11-24-backport-54641-to-quincy
quincy: doc/radosgw: Fix JSON typo in Principal Tag example code snippet
Anthony D'Atri [Thu, 23 Nov 2023 22:46:39 +0000 (17:46 -0500)]
Merge pull request #54639 from zdover23/wip-doc-2023-11-24-backport-54632-to-quincy
quincy: doc/rados: format sections in tshooting-mon.rst
Daniel Parkes [Thu, 23 Nov 2023 21:15:52 +0000 (22:15 +0100)]
doc/radosgw: Fix JSON typo in Principal Tag example code snippet
Signed-off-by: Daniel Parkes <dparkes@redhat.com>
(cherry picked from commit
68729c951dd3acdbdf86c3ce895a55bbab1aeb89 )
Zac Dover [Thu, 23 Nov 2023 11:54:54 +0000 (21:54 +1000)]
doc/rados: format sections in tshooting-mon.rst
Format definition lists in the section "Do I need to restart a monitor
to adjust debug levels?" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
910e5efea19eacd204025fa58f37c27c4c0b2963 )
Ilya Dryomov [Wed, 22 Nov 2023 14:02:23 +0000 (15:02 +0100)]
Merge pull request #54605 from lxbsz/wip-63586-q
quincy: osd: log the number of extents for sparse read
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
Xiubo Li [Mon, 20 Nov 2023 14:04:12 +0000 (22:04 +0800)]
osd: add more debug logs for sparse read
This will be very important to get to know what exactly has happened
when client get a very large number of extents.
URL: https://tracker.ceph.com/issues/63586
Signed-off-by: Xiubo Li <xiubli@redhat.com>
(cherry picked from commit
1cf5ecb93fb73a5ed4a82935f635f98efccf7de6 )
Anthony D'Atri [Tue, 21 Nov 2023 20:19:44 +0000 (15:19 -0500)]
Merge pull request #54602 from zdover23/wip-doc-2023-11-22-backport-54598-to-quincy
quincy: doc/rados: edit "recovering broken monmap"
Zac Dover [Tue, 21 Nov 2023 17:54:19 +0000 (03:54 +1000)]
doc/rados: edit "recovering broken monmap"
Edit the section "Recovering a monitor's broken monmap" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
6ccb9f3ca10e814c42effb49c8441c23da911adc )
Aashish Sharma [Tue, 21 Nov 2023 10:55:18 +0000 (16:25 +0530)]
Merge pull request #54540 from aaSharma14/wip-63569-quincy
quincy: mgr/dashboard: Consider null values as zero in grafana panels
Reviewed-by: Nizamudeen A <nia@redhat.com>
Anthony D'Atri [Mon, 20 Nov 2023 20:14:57 +0000 (15:14 -0500)]
Merge pull request #54580 from zdover23/wip-doc-2023-11-21-backport-54574-to-quincy
quincy: doc/rados: edit "understanding mon_status"
Zac Dover [Mon, 20 Nov 2023 16:39:39 +0000 (02:39 +1000)]
doc/rados: edit "understanding mon_status"
Edit the section "Understanding mon_status" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
08c16aa113dc22dfec3387f575752a5049b7af42 )
Anthony D'Atri [Mon, 20 Nov 2023 18:47:24 +0000 (13:47 -0500)]
Merge pull request #54577 from zdover23/wip-doc-2023-11-21-backport-54565-to-quincy
quincy: doc/rados: edit "Using the Monitor's Admin Socket"
Zac Dover [Sun, 19 Nov 2023 20:32:09 +0000 (06:32 +1000)]
doc/rados: edit "Using the Monitor's Admin Socket"
Edit the section "Using the Monitor's Admin Socket" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
f627445806dadcc956fe1256cfc3886cb5b8e1ef )
Anthony D'Atri [Mon, 20 Nov 2023 16:48:48 +0000 (11:48 -0500)]
Merge pull request #54573 from zdover23/wip-doc-2023-11-21-backport-54561-to-quincy
quincy: doc/start: update release names
Zac Dover [Sun, 19 Nov 2023 14:47:40 +0000 (00:47 +1000)]
doc/start: update release names
Update "Quincy" to "Reef" and "Pacific" to "Quincy" in the section
"Viewing Old Ceph Documentation" in /doc/start/documenting-ceph.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
83ff8f2b67f1a784ebb3ca7d0b7ca2c385f99343 )
Guillaume Abrioux [Mon, 20 Nov 2023 13:32:55 +0000 (14:32 +0100)]
Merge pull request #54522 from guits/wip-63555-quincy
quincy: ceph-volume: fix a regression in `raw list`
Anthony D'Atri [Sun, 19 Nov 2023 14:32:54 +0000 (09:32 -0500)]
Merge pull request #54560 from zdover23/wip-doc-2023-11-19-backport-54545-to-quincy
quincy: doc/start: explain "OSD"
Zac Dover [Fri, 17 Nov 2023 09:24:14 +0000 (19:24 +1000)]
doc/start: explain "OSD"
Explain the initialism "OSD" and link to its definition in the glossary.
This PR is raised in response to an anonymous documentation bug that reads
"Paragraph 2 uses the acronym OSD without any explanation.
This makes it very difficult to understand this part of
the documentation as there is no indication of what this
acronym is until much further into the documentation. Replace
first occurence of OSD with Object Storage Daemon (OSD) or
link it to the glossary."
-- https://pad.ceph.com/p/Report_Documentation_Bugs
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
a78fe85470c2471574aceb723cd304498cde1afb )
Anthony D'Atri [Sat, 18 Nov 2023 21:35:56 +0000 (16:35 -0500)]
Merge pull request #54552 from zdover23/wip-doc-2023-11-19-backport-54523-to-quincy
quincy: doc/man: edit ceph-osd description
Zac Dover [Thu, 16 Nov 2023 11:14:13 +0000 (21:14 +1000)]
doc/man: edit ceph-osd description
Improve the English grammar and reduce the ambiguity and unclear writing
in the "Description" section of doc/man/8/ceph-osd.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
2921dacf1e7b7ad2aa62f52d6e8914d8ec50a610 )
Aashish Sharma [Wed, 4 Oct 2023 06:54:13 +0000 (12:24 +0530)]
mgr/dashboard: Consider null values as zero in grafana panels
After upgrading from RHCS4 to RHCS5..some of the grafana charts broke.
This is because in RHCS5 we do not generate the metrics if its value is
zero as a result the null value from that metric breaks the grafana
charts or graphs. This PR is to fix the above mentioned issue.
Fixes: https://tracker.ceph.com/issues/63088
Signed-off-by: Aashish Sharma <aasharma@redhat.com>
(cherry picked from commit
6f3f58cb8e4ce100cc7186858465b4d11d5c2c49 )
Guillaume Abrioux [Wed, 15 Nov 2023 15:03:10 +0000 (16:03 +0100)]
ceph-volume: fix a regression in `raw list`
'ceph-volume raw list' is broken for a specific use case (rook).
rook copies devices from /dev/ to /mnt for specific/internal needs.
when ceph-volume raw list is passed a device from /mnt then
ceph-volume ignores it and return an empty dict.
That prevent rook from creating OSDs properly.
https://tracker.ceph.com/issues/63545
Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
(cherry picked from commit
e67dce7120954fff9b7b936348bed0b2ac6c1155 )
Anthony D'Atri [Wed, 15 Nov 2023 13:40:36 +0000 (08:40 -0500)]
Merge pull request #54510 from zdover23/wip-doc-2023-11-15-backport-54497-to-quincy
quincy: doc/glossary: add "Quorum" to glossary
Zac Dover [Tue, 14 Nov 2023 13:40:42 +0000 (23:40 +1000)]
doc/glossary: add "Quorum" to glossary
Add the term "Quorum" to the glossary and link to the part of
architecture.rst concerning Monitors. The sticky header at the top of
the docs.ceph.com website gets in the way of the location linked to in
this commit, but fatigue and disgust prevent me from spending time today
trial-and-erroring my way through the hostile and ill-documented
wilderness of scroll-margin so that the link goes where it should.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
c2f6a770bf0e12296c334d99ac86ff4732ec29b7 )
zdover23 [Wed, 15 Nov 2023 05:47:48 +0000 (15:47 +1000)]
Merge pull request #54462 from zdover23/wip-doc-2023-11-12-backport-54458-to-quincy
quincy: doc/rados: parallelize t-mon headings
Reviewed-by: Cole Mitchell <cole.mitchell.ceph@gmail.com>
Anthony D'Atri [Tue, 14 Nov 2023 19:07:54 +0000 (14:07 -0500)]
Merge pull request #54503 from zdover23/wip-doc-2023-11-15-backport-54496-to-quincy
quincy: doc/rados: edit "troubleshooting-mon"
Zac Dover [Tue, 14 Nov 2023 13:03:28 +0000 (23:03 +1000)]
doc/rados: edit "troubleshooting-mon"
Edit the text in the "Initial Troubleshooting" section of
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
fa8129a7466b3b48b56124eaf1d9ca8e8fd51fbc )
Yuri Weinstein [Mon, 13 Nov 2023 21:49:37 +0000 (13:49 -0800)]
Merge pull request #54269 from ronen-fr/wip-63370-quincy
quincy: osd: fix use-after-move in build_incremental_map_msg()
Reviewed-by: Laura Flores <lflores@redhat.com>
Yuri Weinstein [Mon, 13 Nov 2023 21:17:53 +0000 (13:17 -0800)]
Merge pull request #54004 from kamoltat/wip-ksirivad-backport-quincy-53979
quincy: src/mon/Monitor: Fix set_elector_disallowed_leaders
Reviewed-by: Greg Farnum <gfarnum@redhat.com>
Anthony D'Atri [Mon, 13 Nov 2023 16:58:07 +0000 (11:58 -0500)]
Merge pull request #54481 from zdover23/wip-doc-2023-11-14-backport-54479-to-quincy
quincy: doc/start: fix typo in hardware-recommendations.rst
Anthony D'Atri [Mon, 13 Nov 2023 13:58:44 +0000 (08:58 -0500)]
doc/start: fix typo in hardware-recommendations.rst
Signed-off-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
(cherry picked from commit
48fd7ff1e13ccfeca04b9283b13641ce59316723 )
Anthony D'Atri [Mon, 13 Nov 2023 16:40:03 +0000 (11:40 -0500)]
Merge pull request #54478 from zdover23/wip-doc-2023-11-13-backport-54473-to-quincy
quincy: doc/rados: format "initial troubleshooting"
Zac Dover [Mon, 13 Nov 2023 10:57:07 +0000 (20:57 +1000)]
doc/rados: format "initial troubleshooting"
Format the steps in the "Initial Troubleshooting" section of
doc/rados/troubleshooting/troubleshooting-mon.rst. A near-future PR (not
this one) will add context to this section and explain that the steps
described here are the first steps that you should undertake when you
determine that you have an unresponsive or down Monitor. This PR is
merely for formatting.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
c581018caf626fa0dd50bd244766bfa9755c9a16 )
Anthony D'Atri [Sun, 12 Nov 2023 16:58:10 +0000 (11:58 -0500)]
Merge pull request #54464 from zdover23/wip-doc-2023-11-13-backport-54457-to-quincy
quincy: doc/config: edit "ceph-conf.rst"
Zac Dover [Sun, 12 Nov 2023 10:21:41 +0000 (20:21 +1000)]
doc/config: edit "ceph-conf.rst"
Edit the first section of doc/rados/configuration/ceph-conf.rst.
Initially I just wanted to change "series" to "set", but once I got my
hands dirty I ended up simplifying some sentences.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
c886e05404ce9c50454d40e692ababdc55f346c6 )
Zac Dover [Sun, 12 Nov 2023 10:52:09 +0000 (20:52 +1000)]
doc/rados: parallelize t-mon headings
Give parallel structure to the questions in the Q&A section of the "The
Cluster Has Quorum But At Least One Monitor Is Down" subsection of the
"Most Common Monitor Issues" section of
doc/rados/troubleshooting/troubleshooting-mon.rst.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
010e5a13b9e4e6a860c676f1b3090a495592d715 )
Anthony D'Atri [Sat, 11 Nov 2023 13:35:02 +0000 (08:35 -0500)]
Merge pull request #54456 from zdover23/wip-doc-2023-11-11-backport-54452-to-quincy
quincy: doc/rados: edit t-mon "common issues" (5 of x)
Zac Dover [Sat, 11 Nov 2023 03:45:42 +0000 (13:45 +1000)]
doc/rados: edit t-mon "common issues" (5 of x)
Edit the fifth part of the section "Most Common Monitor Issues" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Follows https://github.com/ceph/ceph/pull/54440.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
d98222db9b4436841102d23c979f05a9d958bb1f )
Anthony D'Atri [Fri, 10 Nov 2023 14:40:58 +0000 (09:40 -0500)]
Merge pull request #54444 from zdover23/wip-doc-2023-11-10-backport-54440-to-quincy
quincy: doc/rados: edit t-mon "common issues" (4 of x)
Zac Dover [Thu, 9 Nov 2023 19:50:21 +0000 (05:50 +1000)]
doc/rados: edit t-mon "common issues" (4 of x)
Edit the fourth part of the section "Most Common Monitor Issues" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Follows https://github.com/ceph/ceph/pull/54432.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
f6b686ac3118507baab719f1587c8c360499e929 )
Anthony D'Atri [Thu, 9 Nov 2023 21:01:52 +0000 (16:01 -0500)]
Merge pull request #54439 from zdover23/wip-doc-2023-11-10-backport-54432-to-quincy
quincy: doc/rados: edit t-mon "common issues" (3 of x)
Guillaume Abrioux [Thu, 9 Nov 2023 19:48:13 +0000 (20:48 +0100)]
Merge pull request #54430 from guits/wip-63490-quincy
quincy: ceph-volume: Revert "ceph-volume: fix raw list for lvm devices"
Zac Dover [Thu, 9 Nov 2023 10:20:20 +0000 (20:20 +1000)]
doc/rados: edit t-mon "common issues" (3 of x)
Edit the second part of the section "Most Common Monitor Issues" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Follows https://github.com/ceph/ceph/pull/54417.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
91ed10bc734bd93605b60c87037393d2704a16bc )
Matthew Booth [Tue, 7 Nov 2023 19:58:16 +0000 (19:58 +0000)]
ceph-volume: fix raw list for non-existent device
ceph-volume should not crash when given a device which doesn't exist.
Fixes: https://tracker.ceph.com/issues/63391
Signed-off-by: Matthew Booth <mbooth@redhat.com>
(cherry picked from commit
e009b1a319c834a504947423ae1dd55387809235 )
(cherry picked from commit
0e17f8b5aebb51ee69ce0689dabe2a9111055716 )
Guillaume Abrioux [Tue, 7 Nov 2023 13:39:50 +0000 (14:39 +0100)]
ceph-volume: Revert "ceph-volume: fix raw list for lvm devices"
This reverts commit
e5e429617c1c27dcd631171f65d30571e32f7266 .
This commit introduced a regression, see linked tracker for details.
Fixes: https://tracker.ceph.com/issues/63391
Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
(cherry picked from commit
916a22ef031953056771eceb1f49cab7eb746978 )
Anthony D'Atri [Thu, 9 Nov 2023 04:45:44 +0000 (23:45 -0500)]
Merge pull request #54428 from zdover23/wip-doc-2023-11-09-backport-54412-to-quincy
quincy: doc/rados: edit t-shooting-mon.rst
Zac Dover [Wed, 8 Nov 2023 07:56:29 +0000 (17:56 +1000)]
doc/rados: edit t-shooting-mon.rst
Improve the front matter of the section "Troubleshooting Monitors" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
e6e3fda2efb8f4a4345ba5f939baade844c5d582 )
Anthony D'Atri [Wed, 8 Nov 2023 16:15:50 +0000 (11:15 -0500)]
Merge pull request #54422 from zdover23/wip-doc-2023-11-09-backport-54417-to-quincy
quincy: doc/rados: edit t-mon "common issues" (2 of x)
Zac Dover [Wed, 8 Nov 2023 13:24:06 +0000 (23:24 +1000)]
doc/rados: edit t-mon "common issues" (2 of x)
Edit the second part of the section "Most Common Monitor Issues" in
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
7dcfa9132ce6ca97d2c414014fc5de0a0c7e106e )
zdover23 [Wed, 8 Nov 2023 15:07:57 +0000 (01:07 +1000)]
Merge pull request #54419 from zdover23/wip-doc-2023-11-08-backport-54413-to-quincy
quincy: doc/rados: edit t-mon "common issues" (1 of x)
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Wed, 8 Nov 2023 09:07:40 +0000 (19:07 +1000)]
doc/rados: edit t-mon "common issues" (1 of x)
Edit the first part of the section "Most Common Monitor Issues" in
doc/rados/troubleshooting/troublehsooting-mon.rst.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
434d8967a37d49bdce3effae4e9b4c69a8586a56 )
zdover23 [Tue, 7 Nov 2023 16:11:55 +0000 (02:11 +1000)]
Merge pull request #54389 from zdover23/wip-doc-2023-11-07-backport-54384-to-quincy
quincy: doc/cephadm: fix typo in set ssh key command
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Piotr Parczewski [Tue, 7 Nov 2023 11:48:01 +0000 (12:48 +0100)]
doc/cephadm: fix typo in set ssh key command
Signed-off-by: Piotr Parczewski <piotr@stackhpc.com>
(cherry picked from commit
e9654b77eda12a3862eefb93c65dc5f15715833d )
Milind Changire [Tue, 7 Nov 2023 08:01:58 +0000 (13:31 +0530)]
Merge pull request #53577 from mchangir/wip-57158-quincy
quincy: doc/cephfs: note regarding start time time zone
Reviewed-by: Milind Changire <mchangir@redhat.com>
Anthony D'Atri [Mon, 6 Nov 2023 20:33:17 +0000 (15:33 -0500)]
Merge pull request #54369 from zdover23/wip-doc-2023-11-07-backport-54342-to-quincy
quincy: doc/radosgw: Improve dynamicresharding.rst
Anthony D'Atri [Mon, 6 Nov 2023 20:02:58 +0000 (15:02 -0500)]
Merge pull request #54367 from zdover23/wip-doc-2023-11-07-backport-54352-to-quincy
quincy: doc/rados: format Q&A list in tshooting-mon.rst
Anthony D'Atri [Sat, 4 Nov 2023 15:06:25 +0000 (11:06 -0400)]
doc/radosgw: Improve dynamicresharding.rst
Signed-off-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
(cherry picked from commit
a9bf0c13e3dc866bd1cb724a10e23ae215e15437 )
Zac Dover [Mon, 6 Nov 2023 04:31:20 +0000 (14:31 +1000)]
doc/rados: format Q&A list in tshooting-mon.rst
Bold the questions in a Q&A list in the "Most Common Monitor Issues"
section of doc/rados/troubleshooting/troubleshooting-mon.rst.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
0d953d27cb6503dfde7f4f7ecb9a386c533c30c9 )
Anthony D'Atri [Mon, 6 Nov 2023 14:04:08 +0000 (09:04 -0500)]
Merge pull request #54354 from zdover23/wip-doc-2023-11-06-backport-54286-to-quincy
quincy: doc/cephfs: edit mount-using-fuse.rst
Jaanus Torp [Wed, 1 Nov 2023 10:23:47 +0000 (12:23 +0200)]
doc/cephfs: edit mount-using-fuse.rst
Fixes missing dash that lead to unnecessary debugging.
Signed-off-by: Jaanus Torp <jaanus@saun.ee>
(cherry picked from commit
9fcb98411bfeb9147f61bef4424a78d98c63cadc )
Anthony D'Atri [Sun, 5 Nov 2023 16:43:43 +0000 (11:43 -0500)]
Merge pull request #54350 from zdover23/wip-doc-2023-11-06-backport-54344-to-quincy
quincy: doc/rados: edit t-mon.rst text
Zac Dover [Sun, 5 Nov 2023 12:28:39 +0000 (22:28 +1000)]
doc/rados: edit t-mon.rst text
Clarify the text in the "Clock Skew" section of
doc/rados/troubleshooting/troubleshooting-mon.rst.
Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com>
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
5496bd426f35c0ab91ae7d544ae92ed3b517c7eb )
Anthony D'Atri [Sun, 5 Nov 2023 13:45:34 +0000 (08:45 -0500)]
Merge pull request #54346 from zdover23/wip-doc-2023-11-05-backport-54343-to-quincy
quincy: doc/rados: format Q&A list in t-mon.rst
Zac Dover [Sun, 5 Nov 2023 06:24:16 +0000 (16:24 +1000)]
doc/rados: format Q&A list in t-mon.rst
Format a Q&A list in doc/rados/troubleshooting/troubleshooting.rst, in
the "Clock Skews" section.
Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit
aadb87aeb5cd8b413937ddfe4562411d424c4bb1 )
Anthony D'Atri [Fri, 3 Nov 2023 16:19:49 +0000 (12:19 -0400)]
Merge pull request #54330 from zdover23/wip-doc-2023-11-04-backport-54274-to-quincy
quincy: doc: Update dynamicresharding.rst
Anthony D'Atri [Fri, 3 Nov 2023 16:18:43 +0000 (12:18 -0400)]
Merge pull request #54321 from zdover23/wip-doc-2023-11-03-backport-54303-to-quincy
quincy: doc/cephadm: edit troubleshooting.rst (2 of x)
Anthony D'Atri [Fri, 3 Nov 2023 16:17:01 +0000 (12:17 -0400)]
Merge pull request #54324 from zdover23/wip-doc-2023-11-03-backport-54322-to-quincy
quincy: doc/cephadm/services: remove excess rendered indentation in osd.rst
Aliaksei Makarau [Tue, 31 Oct 2023 15:20:05 +0000 (16:20 +0100)]
doc: Update dynamicresharding.rst
"3, After resharding completed:" should be
"3. After resharding completed:"
Signed-off-by: Aliaksei Makarau <aliaksei.makarau@ibm.com>
(cherry picked from commit
e96cef78bb97491e6488999d6bc4a068cd1c5a8d )