]>
git.apps.os.sepia.ceph.com Git - ceph.git/log
Kefu Chai [Tue, 22 Nov 2022 04:20:55 +0000 (12:20 +0800)]
crimson/osd: print oid of missing clone
instead of printing the empty optional<>, print the oid of missing
clone. the oid is more interesting in this context.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Kefu Chai [Tue, 22 Nov 2022 04:13:49 +0000 (12:13 +0800)]
crimson: specialize fmt::formatter<> to print using {fmt}
in {fmt} v9, fmt::formatter<> is not defined automatically for
the types with operator<<, we need to define them explictly. so in this
change, the types printed using `fmt::print()` or `fmt::format()` are
equiped with fmt::formatter<> to appease {fmt} v9.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Kefu Chai [Tue, 22 Nov 2022 04:06:33 +0000 (12:06 +0800)]
crimson/net: print shared_ptr using fmt::ptr()
in {fmt} v9, only `void*` pointers can be printed directly. when it
comes to typed pointer or smart pointers, we need to print them using
`fmt::ptr()`. in this change, an overload is added so we can print
`seastar::shared_ptr<>` via `fmt::ptr()` as well, just like how we
print `std::shared_ptr<>`.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Kefu Chai [Tue, 22 Nov 2022 04:03:15 +0000 (12:03 +0800)]
crimson/osd: add formatter for std::optional<>
in `PG::do_update_log_missing()`, `std::optional<eversion_t>` is printed
using {fmt}, but {fmt} does not support formatting `std::optional<>`. so
we need to swing our own formatter. we can promote this formatter to
a more common place if it is proved to be useful otherwhere in the
source tree.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Kefu Chai [Tue, 22 Nov 2022 03:56:36 +0000 (11:56 +0800)]
crimson: print exceptions using exception.what()
{fmt} does not support formatting exceptions until
https://github.com/fmtlib/fmt/pull/3062/commits/
76adb05a78a026b94c2ecadd20c00ae0c33c5a37
so we need to print them via exception.what().
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Kefu Chai [Tue, 22 Nov 2022 03:41:43 +0000 (11:41 +0800)]
crimson/common: print std::exception_ptr after conveting it to exception
fmt does not support formatting `std::exception_ptr`, so we need to
rethrow it, so we can convert it to a known exception type.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Venky Shankar [Mon, 21 Nov 2022 14:04:22 +0000 (19:34 +0530)]
Merge pull request #48810 from stefan-chivu/max-path-len-increase
dokan: Configurable maximum path length
Reviewed-by: Lucian Petrut <lpetrut@cloudbasesolutions.com>
Venky Shankar [Mon, 21 Nov 2022 13:24:35 +0000 (18:54 +0530)]
Merge pull request #48664 from joscollin/wip-cephfs-top-drop-x-coord-map
cephfs-top: drop x_coord_map
Reviewed-by: Neeraj Pratap Singh <neesingh@redhat.com>
Venky Shankar [Mon, 21 Nov 2022 13:24:17 +0000 (18:54 +0530)]
Merge pull request #48850 from joscollin/wip-fix-clear-screen-no-fs
cephfs-top: run_display: clear the screen and block commands when no fs
Reviewed-by: Neeraj Pratap Singh <neesingh@redhat.com>
zdover23 [Mon, 21 Nov 2022 13:20:55 +0000 (23:20 +1000)]
Merge pull request #48956 from zdover23/wip-doc-2022-11-19-src-pybind-cephfs-cephfs-grammar
src/pybind/cephfs: fix grammar
Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Kotresh HR <khiremat@redhat.com>
Stefan Chivu [Thu, 10 Nov 2022 08:28:53 +0000 (10:28 +0200)]
test/dokan: Added dokan max path test
Signed-off-by: Stefan Chivu <schivu@cloudbasesolutions.com>
Stefan Chivu [Wed, 9 Nov 2022 13:50:17 +0000 (15:50 +0200)]
ceph-dokan: Made max path length configurable
Added ceph-dokan CLI optarg for configuring the value of
the maximum path length. By default, it will be set to 256 and
it will have a maximum value of 32767.
Signed-off-by: Stefan Chivu <schivu@cloudbasesolutions.com>
Jos Collin [Fri, 28 Oct 2022 05:21:08 +0000 (10:51 +0530)]
cephfs-top: drop x_coord_map
As we started using curses pads in PR#48090, we don't need x_coord_map anymore.
In this patch, the metrics are positioned in cephfs-top based on padding (ITEMS_PAD).
Signed-off-by: Jos Collin <jcollin@redhat.com>
Venky Shankar [Mon, 21 Nov 2022 09:31:12 +0000 (15:01 +0530)]
Merge pull request #48910 from joscollin/wip-fix-header-show-filters
cephfs-top: display filters in the header
Reviewed-by: Neeraj Pratap Singh <neesingh@redhat.com>
zdover23 [Mon, 21 Nov 2022 07:07:45 +0000 (17:07 +1000)]
Merge pull request #48978 from zdover23/wip-doc-2022-11-21-rados-ops-add-or-rm-mons-prompts-1-of-2
doc/rados: add prompts to add-or-rm-prompts.rst
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Mon, 21 Nov 2022 04:28:46 +0000 (14:28 +1000)]
doc/rados: add prompts to add-or-rm-prompts.rst
Add unselectable prompts to add-or-rm-prompts.rst. This commit covers
the first 300 lines of the file. This is part 1 of 2.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Mon, 21 Nov 2022 03:05:58 +0000 (13:05 +1000)]
Merge pull request #48975 from zdover23/wip-doc-2022-11-21-glossary-SDS
doc/glossary: Add "SDS"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Sun, 20 Nov 2022 18:09:46 +0000 (04:09 +1000)]
doc/glossary: Add "SDS"
Add "SDS" to the glossary.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Ilya Dryomov [Sun, 20 Nov 2022 10:24:25 +0000 (11:24 +0100)]
Merge pull request #48949 from ktdreyer/doc-windows-drive-letter
doc: display Windows RBD drive letter
Reviewed-by: Lucian Petrut <lpetrut@cloudbasesolutions.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
zdover23 [Sun, 20 Nov 2022 07:57:25 +0000 (17:57 +1000)]
Merge pull request #48968 from zdover23/wip-doc-2022-11-20-rbd-immutable-object-cache-daemon-grammar
doc/rbd: improve grammar in "immutable object..."
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Sun, 20 Nov 2022 06:59:00 +0000 (16:59 +1000)]
doc/rbd: improve grammar in "immutable object..."
Improve the grammar in the "Immutable Object Cache Daemon" section.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Sun, 20 Nov 2022 05:33:58 +0000 (15:33 +1000)]
Merge pull request #48962 from zdover23/wip-doc-2022-11-20-radosgw-object-gateway-grammar
doc/radosw: improve radosgw text
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
zdover23 [Sun, 20 Nov 2022 05:27:25 +0000 (15:27 +1000)]
Merge pull request #48963 from zdover23/wip-doc-2022-11-20-glossary-ceph-block-storage
doc/glossary: beef up "Ceph Block Storage"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Sun, 20 Nov 2022 05:00:00 +0000 (15:00 +1000)]
doc/glossary: beef up "Ceph Block Storage"
Beef up the "Ceph Block Storage" entry.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Zac Dover [Sun, 20 Nov 2022 04:14:44 +0000 (14:14 +1000)]
doc/radosw: improve radosgw text
Punch up the paragraph about the Ceph Object Gateway daemon (radosgw).
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Sun, 20 Nov 2022 03:51:29 +0000 (13:51 +1000)]
Merge pull request #48959 from zdover23/wip-doc-2022-11-20-glossary-radosgw
doc/glossary: define "RGW"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Sun, 20 Nov 2022 03:39:22 +0000 (13:39 +1000)]
doc/glossary: define "RGW"
Add definition under the headword "RGW".
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Zac Dover [Sat, 19 Nov 2022 04:57:24 +0000 (14:57 +1000)]
src/pybind/cephfs: fix grammar
Fix the grammar in the explanation of the lstat() API call.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Sat, 19 Nov 2022 02:24:05 +0000 (12:24 +1000)]
Merge pull request #48942 from zdover23/wip-doc-2022-11-18-src-pybind-typo
src/pybind: fix typo in cephfs.pyx
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
zdover23 [Sat, 19 Nov 2022 01:56:28 +0000 (11:56 +1000)]
Merge pull request #48939 from zdover23/wip-doc-2022-11-18-glossary-rados
doc/glossary: add "RADOS" definition
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Fri, 18 Nov 2022 08:12:24 +0000 (18:12 +1000)]
doc/glossary: add "RADOS" definition
Define "RADOS" in the glossary. We will return in the next month to beef
this entry up.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Sat, 19 Nov 2022 01:31:22 +0000 (11:31 +1000)]
Merge pull request #48941 from zdover23/wip-doc-2022-11-18-releases-quincy
doc/releases: fix prompts in quincy.rst
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Ken Dreyer [Fri, 18 Nov 2022 21:24:30 +0000 (16:24 -0500)]
doc: display Windows RBD drive letter
Give the Powershell command that identifies the Windows drive letter
when partitioning a new RBD image.
Signed-off-by: Ken Dreyer <kdreyer@redhat.com>
Laura Flores [Fri, 18 Nov 2022 19:53:49 +0000 (13:53 -0600)]
Merge pull request #48938 from ljflores/wip-curl-error
qa/workunits/rados: specify redirect in curl command
Anthony D'Atri [Fri, 18 Nov 2022 18:35:00 +0000 (13:35 -0500)]
Merge pull request #48940 from kelubo/main
doc: Delete a duplicate row.
Josh Durgin [Fri, 18 Nov 2022 16:40:17 +0000 (08:40 -0800)]
Merge pull request #48944 from zdover23/wip-doc-2022-11-19-man-mount-ceph
doc/man: disambiguate "user" in a command
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Fri, 18 Nov 2022 16:06:25 +0000 (02:06 +1000)]
doc/man: disambiguate "user" in a command
Explain that "user" means "RADOS client name" and "RADOS user", per a
complaint solicited through the "Report Documentation Bugs" system.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Zac Dover [Fri, 18 Nov 2022 12:08:13 +0000 (22:08 +1000)]
src/pybind: fix typo in cephfs.pyx
s/informaion/information/
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Zac Dover [Fri, 18 Nov 2022 10:48:21 +0000 (20:48 +1000)]
doc/releases: fix prompts in quincy.rst
Fix prompts in quincy.rst so that they're unselectable. (I also
corrected one sentence.)
Signed-off-by: Zac Dover <zac.dover@gmail.com>
wangfei [Fri, 18 Nov 2022 08:11:49 +0000 (16:11 +0800)]
doc: Delete a duplicate row
Signed-off-by: wangfei <wf.ab@126.com>
Jos Collin [Wed, 16 Nov 2022 07:56:48 +0000 (13:26 +0530)]
cephfs-top: display filters in the header
This would help the user to identify what are the filters currently applied
to the cephfs-top screens at a glance.
Signed-off-by: Jos Collin <jcollin@redhat.com>
Laura Flores [Fri, 18 Nov 2022 00:31:59 +0000 (00:31 +0000)]
qa/workunits/rados: specify redirect in curl command
This workunit currently grabs files in html form, since
there is a redirect that occurs. If we specify `-L` in the
curl command, it handles redirects and graps the files
appropriately.
Fixes: https://tracker.ceph.com/issues/58046
Signed-off-by: Laura Flores <lflores@redhat.com>
Nizamudeen A [Thu, 17 Nov 2022 13:41:43 +0000 (19:11 +0530)]
Merge pull request #48851 from s0nea/ceph_hosts-fix
ceph-mixing: fix ceph_hosts variable
Reviewed-by: Aashish Sharma <aasharma@redhat.com>
Reviewed-by: Nizamudeen A <nia@redhat.com>
Reviewed-by: Pere Diaz Bou <pdiazbou@redhat.com>
Jos Collin [Fri, 11 Nov 2022 14:55:39 +0000 (20:25 +0530)]
cephfs-top: run_display: clear the screen and block commands when no fs
Signed-off-by: Jos Collin <jcollin@redhat.com>
Kefu Chai [Thu, 17 Nov 2022 08:56:23 +0000 (16:56 +0800)]
Merge pull request #48919 from jaehshim/main
crimson/os/seastore/extent_placement_manager.h: fix a typo
Reviewed-by: Kefu Chai <tchaikov@gmail.com>
Lucian Petrut [Thu, 17 Nov 2022 07:53:43 +0000 (23:53 -0800)]
Merge pull request #46525 from SoftIron/wip-async-poll
msg: add new async event driver based on poll()
zdover23 [Thu, 17 Nov 2022 05:53:06 +0000 (15:53 +1000)]
Merge pull request #48924 from zdover23/wip-doc-2022-11-17-dev-dot-users-manual
doc/dev: link to Dot User's Manual
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Thu, 17 Nov 2022 05:35:58 +0000 (15:35 +1000)]
doc/dev: link to Dot User's Manual
Add a link to the Dot User's Manual for Graphviz diagrams.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Josh Durgin [Thu, 17 Nov 2022 05:21:30 +0000 (21:21 -0800)]
Merge pull request #48913 from jdurgin/wip-octopus-eol
doc/releases: mark octopus eol
Reviewed-by: Neha Ojha <nojha@redhat.com>
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
zdover23 [Thu, 17 Nov 2022 04:57:17 +0000 (14:57 +1000)]
Merge pull request #48921 from zdover23/wip-doc-2022-11-17-dev-object-store-graphviz
doc/dev: fix graphviz diagram
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Thu, 17 Nov 2022 04:45:29 +0000 (14:45 +1000)]
doc/dev: fix graphviz diagram
Fix the formatting of the "Object Store Architecture Overview" graphviz
diagram.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Thu, 17 Nov 2022 03:53:11 +0000 (13:53 +1000)]
Merge pull request #48920 from zdover23/wip-doc-2022-11-17-dev-balancer-hld-expansion
doc/dev: expand "HLD" to "high-level design"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Thu, 17 Nov 2022 03:44:29 +0000 (13:44 +1000)]
doc/dev: expand "HLD" to "high-level design"
Expand "HLD" to "high-level design" in prim-balancer-design.rst.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Thu, 17 Nov 2022 03:31:50 +0000 (13:31 +1000)]
Merge pull request #44565 from ljflores/wip-primary-balancer-documentation
[DNM] doc/dev: explain the primary balancer scope and design
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
Jaehoon Shim [Thu, 17 Nov 2022 03:26:04 +0000 (12:26 +0900)]
crimson/os/seastore/extent_placement_manager.h: fix a typo
Signed-off-by: Jaehoon Shim <mattjs@snu.ac.kr>
zdover23 [Wed, 16 Nov 2022 21:39:00 +0000 (07:39 +1000)]
Merge pull request #48916 from zdover23/wip-doc-2022-11-17-glossary-cephfs
doc/glossary: rewrite "Ceph File System"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Wed, 16 Nov 2022 21:28:45 +0000 (07:28 +1000)]
doc/glossary: rewrite "Ceph File System"
Improve the definition of "Ceph File System".
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Josh Durgin [Wed, 16 Nov 2022 17:28:56 +0000 (12:28 -0500)]
doc/releases: mark octopus eol
Signed-off-by: Josh Durgin <jdurgin@redhat.com>
zdover23 [Wed, 16 Nov 2022 03:14:50 +0000 (13:14 +1000)]
Merge pull request #48900 from zdover23/wip-doc-2022-11-16-glossary-ceph-object-gateway
doc/glossary: define "Ceph Object Gateway"
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Wed, 16 Nov 2022 02:39:53 +0000 (12:39 +1000)]
doc/glossary: define "Ceph Object Gateway"
Define "Ceph Object Gateway" and link to more information.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Nizamudeen A [Tue, 15 Nov 2022 04:26:31 +0000 (09:56 +0530)]
Merge pull request #48569 from rhcs-dashboard/angular-13
mgr/dashboard: upgrade to angular 13, bootstrap 5 and jest 28
Reviewed-by: Aashish Sharma <aasharma@redhat.com>
Reviewed-by: Ernesto Puerta <epuertat@redhat.com>
Reviewed-by: nSedrickm <NOT@FOUND>
Reviewed-by: Pere Diaz Bou <pdiazbou@redhat.com>
zdover23 [Tue, 15 Nov 2022 01:36:09 +0000 (11:36 +1000)]
Merge pull request #48889 from zdover23/wip-doc-2022-11-15-glossary-ceph-point-release
doc/glossary: improve "Ceph Point Release" entry
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Tue, 15 Nov 2022 01:25:19 +0000 (11:25 +1000)]
doc/glossary: improve "Ceph Point Release" entry
Improve the English in the "Ceph Point Release" entry in the glossary.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Tue, 15 Nov 2022 00:46:20 +0000 (10:46 +1000)]
Merge pull request #48886 from zdover23/wip-doc-2022-11-15-rados-operations-cache-tiering-cleanup-pr-48861
doc/rados: reword part of cache-tiering.rst
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Tue, 15 Nov 2022 00:30:34 +0000 (10:30 +1000)]
doc/rados: reword part of cache-tiering.rst
Reword part of cache-tiering.rst to make the English language added in
https://github.com/ceph/ceph/pull/48861 more elegant.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Mon, 14 Nov 2022 23:02:39 +0000 (09:02 +1000)]
Merge pull request #48881 from zdover23/wip-doc-2022-11-15-rados-configuration-front-matter
doc/rados: fix grammar in configuration/index.rst
Reviewed-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Mon, 14 Nov 2022 22:39:50 +0000 (08:39 +1000)]
Merge pull request #48861 from liangmingyuanneo/wip-cachetier-doc
doc/osd: Fixes the introduction for writeback mode of cache tier.
Reviewed-by: Zac Dover <zac.dover@gmail.com>
Zac Dover [Mon, 14 Nov 2022 22:29:09 +0000 (08:29 +1000)]
doc/rados: fix grammar in configuration/index.rst
Reword the front matter in doc/rados/configuration/index.rst.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Nizamudeen A [Fri, 21 Oct 2022 08:08:16 +0000 (13:38 +0530)]
mgr/dashboard: tslint to eslint migration
Fixes: https://tracker.ceph.com/issues/48258
Signed-off-by: Nizamudeen A <nia@redhat.com>
Nizamudeen A [Thu, 20 Oct 2022 16:01:34 +0000 (21:31 +0530)]
mgr/dashboard: rgw encryption modal and host component cleanup
along with some additional cleanups
Signed-off-by: Nizamudeen A <nia@redhat.com>
Nizamudeen A [Thu, 20 Oct 2022 16:00:56 +0000 (21:30 +0530)]
mgr/dashboard: update jest to 28
Fixes: https://tracker.ceph.com/issues/57972
Signed-off-by: Nizamudeen A <nia@redhat.com>
Nizamudeen A [Thu, 13 Oct 2022 09:18:11 +0000 (14:48 +0530)]
mgr/dashboard: migrate to bootstrap 5
Fixes: https://tracker.ceph.com/issues/57867
Signed-off-by: Nizamudeen A <nia@redhat.com>
zdover23 [Mon, 14 Nov 2022 04:32:19 +0000 (14:32 +1000)]
Merge pull request #48870 from zdover23/wip-doc-2022-11-14-glossary-mds
doc/glossary: add "mds" term
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Mon, 14 Nov 2022 04:06:55 +0000 (14:06 +1000)]
doc/glossary: add "mds" term
Improve "MDS" glossary term. Link to MDS information.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Nizamudeen A [Wed, 12 Oct 2022 05:52:52 +0000 (11:22 +0530)]
mgr/dashboard: update angular 13
https://blog.angular.io/angular-v13-is-now-available-
cce66f7bc296
Fixes: https://tracker.ceph.com/issues/57866
Signed-off-by: Nizamudeen A <nia@redhat.com>
zdover23 [Mon, 14 Nov 2022 01:14:06 +0000 (11:14 +1000)]
Merge pull request #48866 from zdover23/wip-doc-2022-11-14-rados-pools-followup
doc/rados: improve pools.rst
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Sun, 13 Nov 2022 23:21:49 +0000 (09:21 +1000)]
doc/rados: improve pools.rst
Implement Anthony D'Atri's suggestions made in
https://github.com/ceph/ceph/pull/48855.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Sat, 12 Nov 2022 22:58:57 +0000 (08:58 +1000)]
Merge pull request #48862 from zdover23/wip-doc-2022-11-13-radosgw-ceph-object-gateway-definition
doc/radosgw: improve "Ceph Object Gateway" text
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Sat, 12 Nov 2022 21:28:45 +0000 (07:28 +1000)]
doc/radosgw: improve "Ceph Object Gateway" text
Reduce ambiguity in the definition of "Ceph Object Gateway".
Signed-off-by: Zac Dover <zac.dover@gmail.com>
liangmingyuan [Sat, 12 Nov 2022 16:20:53 +0000 (00:20 +0800)]
doc/osd: Fixes the introduction for writeback mode of cache tier.
Now, the statement of writeback is incorrect, it says the clients
write data to cache tier firstly, then flush to base tier. But
is not in fact, that will make users confused. Reads too.
Signed-off-by: Mingyuan Liang <liangmingyuan@baidu.com>
zdover23 [Sat, 12 Nov 2022 03:27:22 +0000 (13:27 +1000)]
Merge pull request #48852 from zdover23/wip-doc-2022-11-12-glossary-pools
doc/glossary: update "pool/pools"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
zdover23 [Sat, 12 Nov 2022 03:21:53 +0000 (13:21 +1000)]
Merge pull request #48853 from zdover23/wip-doc-2022-11-12-rados-pools
doc/rados: update "Pools" material
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Fri, 11 Nov 2022 18:15:30 +0000 (04:15 +1000)]
doc/rados: update "Pools" material
Remove mentions of default pools (which no longer exist) and improve the
syntax of the Pools front matter.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Zac Dover [Fri, 11 Nov 2022 17:37:11 +0000 (03:37 +1000)]
doc/glossary: update "pool/pools"
Update the "pool" and "pools" entries and link to the part of the
documentation related to pools.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Tatjana Dehler [Fri, 11 Nov 2022 15:30:55 +0000 (16:30 +0100)]
ceph-mixing: fix ceph_hosts variable
Do only use `instance` to query for hostnames in single-cluster-mode.
Consider the cluster matcher only in multi-cluster-mode. In this case
the query will look like:
`"label_values({cluster=~\"$cluster\"}, instance)"`.
Fixes: https://tracker.ceph.com/issues/57987
Signed-off-by: Tatjana Dehler <tdehler@suse.com>
zdover23 [Fri, 11 Nov 2022 04:26:16 +0000 (14:26 +1000)]
Merge pull request #48840 from zdover23/wip-doc-2022-11-11-glossary-remove-test-framework
doc/glossary: remove "Ceph Test Framework"
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Fri, 11 Nov 2022 03:50:52 +0000 (13:50 +1000)]
doc/glossary: remove "Ceph Test Framework"
Remove "Ceph Test Framework" because it doesn't actually refer to
anything.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Thu, 10 Nov 2022 22:04:29 +0000 (08:04 +1000)]
Merge pull request #48832 from zdover23/wip-doc-2022-11-11-glossary-ceph-OSD-Daemon-Daemons-redirect
doc/glossary: redirect entries to "Ceph OSD"
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Thu, 10 Nov 2022 20:31:59 +0000 (06:31 +1000)]
doc/glossary: redirect entries to "Ceph OSD"
Redirect "Ceph OSD Daemon" and "Ceph OSD Daemons" to the entry for "Ceph
OSD", which is already defined.
Signed-off-by: Zac Dover <zac.dover@gmail.com>
Laura Flores [Thu, 10 Nov 2022 19:24:42 +0000 (13:24 -0600)]
Merge pull request #48298 from alram/alram/osd-meta-created_at
osd: add created_at meta
Laura Flores [Thu, 10 Nov 2022 19:24:16 +0000 (13:24 -0600)]
Merge pull request #48044 from nkshirsagar/main
mon: bail from handle_command() if _generate_command_map() fails
Laura Flores [Thu, 10 Nov 2022 19:23:50 +0000 (13:23 -0600)]
Merge pull request #46036 from ifed01/wip-ifed-new-statfs-update
os/bluestore: get rid off statfs update on each txc
Casey Bodley [Thu, 10 Nov 2022 18:15:03 +0000 (13:15 -0500)]
Merge pull request #48826 from jecluis/wip-rgw-fix-lua-ifdef
rgw/rados: drop unnecessary ifdef
Reviewed-by: Casey Bodley <cbodley@redhat.com>
Juan Miguel Olmo [Thu, 10 Nov 2022 16:50:17 +0000 (17:50 +0100)]
Merge pull request #48694 from gaord/FIX_BUG_57954
mgr/rook:NFSRados constructor expects type of rados as a parameter instead of MgrModule.
Reviewed-by: Travis Nielsen <tnielsen@redhat.com>
Joao Eduardo Luis [Thu, 10 Nov 2022 11:30:15 +0000 (11:30 +0000)]
rgw/rados: drop unnecessary ifdef
Signed-off-by: Joao Eduardo Luis <joao@suse.com>
Stefan Chivu [Wed, 9 Nov 2022 13:03:37 +0000 (15:03 +0200)]
common/win32: Fixed function name typo
There was a typo in the function name cephfs_errno_to_ntsatus
defined in common/win32/errno.cc.
It has been replaced with cephfs_errno_to_ntstatus_map to avoid
conflicts with the existing cephfs_errno_to_ntstatus function.
Signed-off-by: Stefan Chivu <schivu@cloudbasesolutions.com>
zdover23 [Thu, 10 Nov 2022 02:58:53 +0000 (12:58 +1000)]
Merge pull request #48823 from zdover23/wip-doc-2022-11-10-glossary-ceph-manager-dashboard
doc/glossary: improve "Ceph Manager Dashboard"
Reviewed-by: Cole Mitchell <cole.mitchell@gmail.com>
Zac Dover [Thu, 10 Nov 2022 02:24:12 +0000 (12:24 +1000)]
doc/glossary: improve "Ceph Manager Dashboard"
Redirect "Ceph Manager Dashboard" to the glossary term "Ceph Dashboard".
Signed-off-by: Zac Dover <zac.dover@gmail.com>
zdover23 [Thu, 10 Nov 2022 00:12:54 +0000 (10:12 +1000)]
Merge pull request #48819 from zdover23/wip-doc-2022-11-10-glossary-ceph
doc/glossary: improve "ceph" term
Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Zac Dover [Wed, 9 Nov 2022 22:39:31 +0000 (08:39 +1000)]
doc/glossary: improve "ceph" term
Define "ceph" in glossary.rst.
Signed-off-by: Zac Dover <zac.dover@gmail.com>