Brad Hubbard
370e4a71a2
doc: remove duplicate word in Motivation section.
...
Remove to\nto typo in doc/dev/osd_internals/erasure_coding/pgbackend.rst
Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
2015-08-10 11:51:49 +10:00
Brian Andrus
e67539e370
Fix location of --access=full in SWIFT user creation
...
--access=full was incorrectly placed in the output of the command, while it was supposed to have been a flag run with the command.
2015-08-05 16:25:48 -07:00
Loic Dachary
cdd5f770e3
Merge pull request #5469 from theanalyst/doc/v0.94.3-release
...
doc: release notes for v0.94.3
Reviewed-by: Loic Dachary <ldachary@redhat.com>
2015-08-04 19:13:02 +02:00
Abhishek Lekshmanan
793fe5205d
doc: release notes for v0.94.3
...
Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@ril.com>
2015-08-04 21:23:27 +05:30
Josh Durgin
fb4e332124
Merge pull request #5440 from vumrao/wip-vumrao-12458-doc
...
doc: change --keyfile description in man page of rbd help
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
2015-08-03 11:05:55 -07:00
Vikhyat Umrao
85cb86d05f
doc: change "--keyfile" description in man page of rbd help
...
"--keyring" has higher priority than "--keyfile".
"--keyfile" option is overridden by "--keyring"
if latter is also specified.
Signed-off-by: Vikhyat Umrao <vumrao@redhat.com>
2015-08-03 22:57:04 +05:30
Ilya Dryomov
3fbcf5e265
doc: krbd supports clones since 3.10
...
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-31 19:50:58 +03:00
Kefu Chai
81afcc206d
doc: fix the build of placement-groups.rst
...
add a reference target of "mapping pgs to osds"
Signed-off-by: Kefu Chai <kchai@redhat.com>
2015-07-31 17:08:20 +08:00
Sage Weil
ca40bf0b30
Merge pull request #5423 from oddomatik/patch-1
...
doc: No CRUSH involvement in deciding PG target
Reviewed-by: Sage Weil <sage@redhat.com>
2015-07-30 17:32:52 -04:00
Yehuda Sadeh
d621d9878c
Merge pull request #5414 from cxwshawn/master
...
doc: add bucket object version description.
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
2015-07-30 13:52:06 -04:00
oddomatik
77cdb500af
No CRUSH involvement in deciding PG target
...
Quoting from elsewhere "[we calculate] a placement group using the object name, a hash code, the number of PGs in the pool and the pool name"
2015-07-30 22:33:09 +08:00
shawn
5c395ff856
doc: add bucket object version description.
...
bucket object version has been supported, but do not have description in the docs,
so add this part.
Signed-off-by: shawn chen <cxwshawn@gmail.com>
2015-07-30 10:09:16 +08:00
x11507
d8395cfc76
modified librados-intro.rst
...
Signed-off-by: x11507 <xu.donghai@h3c.com>
2015-07-28 20:19:46 +08:00
Josh Durgin
37e2b7b85b
Merge remote-tracking branch 'origin/next'
2015-07-27 16:42:12 -07:00
Ilya Dryomov
17a3e4b969
rbd: rename --object-extents option to --whole-object
...
--object-extents is a bit confusing - extent is generally something of
a varying length and here the meaning is "diff whole objects". Rename
it to --whole-object (the name of diff_iterate() parameter).
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-27 12:22:04 +03:00
Ilya Dryomov
afbf90d5b5
rbd: du command should take spec as an argument
...
Change du to take <image-spec> | <snap-spec> as an argument instead of
going through --image option. The new synopsis is
(du | disk-usage) [<image-spec> | <snap-spec>]
This is to make it look more like the rest of the commands: the only
other command that takes pool as an argument is ls and it can't really
serve as a prototype for du, because the latter has to work on images
and snapshots as well.
Examples:
# stats for pool rbd
$ rbd du
$ rbd -p rbd du
# stats for pool foo
$ rbd -p foo du
# stats for snapshot mysnap of image baz in pool rbd
$ rbd du baz@mysnap
# stats for image bar in pool foo
$ rbd du foo/bar
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-27 12:22:04 +03:00
Ilya Dryomov
bbc5c71284
rbd: import doesn't require image-spec arg, ditto for export and path
...
Mark those as such in help and clarify what image-spec defaults to.
Related, all command args in our man page are enclosed into brackets.
I suppose the reason is that they are optional in the sense that you
can have commands like
$ rbd clone --pool a --image b --snap -c --dest-pool d --dest e
with no args. Given that we are trying to push people towards
$ rbd clone a/b@c d/e
undo that so that real optional arguments can be marked optional.
While at it, add synopsis for each command and use backticks for
denoting commands more consistently.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-27 12:22:04 +03:00
Ilya Dryomov
76989cc4ae
doc: use spec syntax in rbd docs
...
Use spec syntax instead of --pool, --image and --snap to hopefully push
people towards the former.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-27 12:22:04 +03:00
Vikhyat Umrao
9909388171
rbd: use image-spec and snap-spec in rbd help
...
This patch changes image-name instances to image-spec and snap-name
instances to snap-spec to try to clarify usage for some commands and
disambiguate the term {image,snap}-name, which has been used to denote
both simple names and compound names (specs).
<image-spec> is [<pool-name>]/<image-name>
<snap-spec> is [<pool-name>]/<image-name>@<snap-name>
This patch also removes duplicate checks for image-name and snap-name.
Signed-off-by: Vikhyat Umrao <vumrao@redhat.com>
[idryomov@gmail.com: some commands take either image-spec or snap-spec,
other fixes, formatting, changelog]
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-27 12:22:04 +03:00
Sage Weil
8b1df960e2
doc/cephfs/quota: simple doc
...
Signed-off-by: Sage Weil <sage@redhat.com>
2015-07-23 08:35:35 -04:00
Kefu Chai
5761d3aeb9
Merge pull request #5304 from ceph/wip-add-scrub-config-doc
...
doc/rados/configuration: add more scrub related config
Reviewed-by: Loic Dachary <ldachary@redhat.com>
2015-07-22 11:52:24 +08:00
Kefu Chai
1baeb1c743
doc/rados/configuration: add more scrub related config
...
Signed-off-by: Kefu Chai <kchai@redhat.com>
2015-07-22 11:15:21 +08:00
Sage Weil
b3a3e0e509
doc: v0.80.10 changelog
...
Signed-off-by: Sage Weil <sage@redhat.com>
2015-07-21 12:54:19 -04:00
Sage Weil
7b8ca747e1
doc/releases: v0.80.10
...
Signed-off-by: Sage Weil <sage@redhat.com>
2015-07-21 10:56:57 -04:00
Sage Weil
2a61b61198
doc/release-notes: v0.80.10
...
Signed-off-by: Sage Weil <sage@redhat.com>
2015-07-21 10:55:18 -04:00
Sage Weil
7192d83b18
Merge branch 'wip-firefly-release-notes' of git://github.com/dachary/ceph
2015-07-21 10:53:40 -04:00
Yuan Zhou
b62c3b9537
rgw: doc: Mark S3 object version API as supported
...
S3 object version is already in since Hammer.
Ref: http://marc.info/?l=ceph-devel&m=143715290627682
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
2015-07-20 15:37:09 +08:00
Sage Weil
f58ea56825
Merge pull request #5274 from zhouyuan/rgw_api_link
...
rgw: doc: adding S3/Swift API link
Reviewed-by: Abhishek Lekshmanan <abhishek.lekshmanan@ril.com>
2015-07-17 17:22:52 -04:00
Yuan Zhou
6256c10512
rgw: doc: adding S3/Swift API link
...
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
2015-07-17 14:12:47 +08:00
Loic Dachary
4b28bcbf2a
doc: add v9.0.2 to the release timeline
...
Signed-off-by: Loic Dachary <ldachary@redhat.com>
2015-07-17 00:28:52 +02:00
Sage Weil
69dad39952
doc/release-notes: v9.0.2
...
Signed-off-by: Sage Weil <sage@redhat.com>
2015-07-16 15:17:51 -04:00
Sage Weil
edd68e3ade
Merge pull request #5188 from athanatos/wip-11687
...
PG::find_best_info: ignore info.les for incomplete peer
Reviewed-by: Sage Weil <sage@redhat.com>
2015-07-16 11:03:18 -04:00
Samuel Just
371d9baa12
PG::find_best_info: ignore info.les for incomplete peer
...
See included update to doc/dev/osd_internals/last_epoch_started.rst
Fixes: 11687
Signed-off-by: Samuel Just <sjust@redhat.com>
2015-07-15 08:57:18 -07:00
Yuan Zhou
8cee73255b
rgw: doc: Fix radosgw stripe size config ref
...
s/rgw object stripe size/rgw obj stripe size
https://github.com/ceph/ceph/blob/master/src/common/config_opts.h#L1024
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
2015-07-14 23:53:20 +08:00
Loic Dachary
1231ae09d6
doc/release-notes: update notes for v0.80.10
...
Signed-off-by: Loic Dachary <loic@dachary.org>
2015-07-14 16:15:44 +02:00
Vikhyat Umrao
8506822e0e
doc: change tcp rcvbuf and tcp nodelay to ms tcp rcvbuf
...
and ms tcp nodelay
Signed-off-by: Vikhyat Umrao <vumrao@redhat.com>
2015-07-14 17:21:33 +05:30
John Spray
8eaa2f263d
doc: add some docs about cephfs-data-scan
...
These are deliberately fairly sparse, because:
* These tools are for experts
* These tools may well be wrapped in a higher
level recovery tool that orchestrates parallel
workers at some stage.
Signed-off-by: John Spray <john.spray@redhat.com>
2015-07-13 14:05:17 +01:00
Kefu Chai
cb03f81b61
doc/erasure-code: fix couple typos
...
Signed-off-by: Kefu Chai <kchai@redhat.com>
2015-07-11 01:47:48 +08:00
Pete Zaitcev
d8a728ec15
rgw: Document the layout of pools and objects
...
This has to be kept in sync as the layout changes. Like any other
document, really.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
2015-07-08 22:31:31 -06:00
Ilya Dryomov
89c2a0b58a
rbd: recognize queue_depth option
...
.. and also stress the difference between libceph and rbd mapping
options.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2015-07-06 16:32:15 +03:00
Loic Dachary
97ce0c533a
Merge pull request #5128 from ceph/wip-fix-doc
...
doc: fix the build
Reviewed-by: Loic Dachary <ldachary@redhat.com>
2015-07-03 15:05:02 +02:00
Kefu Chai
40399e38fa
doc: indent warning messages in add-or-rm-osds.rst
...
otherwise they are rendered as normal text
Signed-off-by: Kefu Chai <kchai@redhat.com>
2015-07-02 20:59:23 +08:00
Kefu Chai
253e256964
doc: fix the link in dev/quick_guide
...
Signed-off-by: Kefu Chai <kchai@redhat.com>
2015-07-02 20:50:48 +08:00
Kefu Chai
ec132a7986
Merge pull request #4166 from sponce/wip-10759
...
tools: rados cli --striper
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
Reviewed-by: Kefu Chai <kchai@redhat.com>
Reviewed-by: Loic Dachary <ldachary@redhat.com>
2015-07-01 23:32:57 +08:00
unknown
504a48a3d3
doc : missing link in "quick_guide.rst"
...
Fixes : #12009
Signed-off-by: Germain CHIPAUX <germain.chipaux@gmail.com>
Signed-off-by: Thomas LAUMONDAIS <thomas.laumondais@gmail.com>
Signed-off-by: Pierre CHAUMONT <pierre.chaumont31@gmail.com>
Signed-off-by: Benjamin TROQUEREAU <benjamin.troquereau@gmail.com>
Signed-off-by: Benjamin SESIA <benjamin.sesia@gmail.com>
2015-06-30 15:58:17 +02:00
Loic Dachary
90b2ccabc0
Merge pull request #5098 from PierreChaumont/master
...
doc: homogenize Librados (Python) documentation's code samples
Reviewed-by: Loic Dachary <ldachary@redhat.com>
2015-06-28 13:36:37 +02:00
PierreChaumont
8a221c3509
doc: homogenize Librados (Python) documentation's code samples
...
I put in doc/rados/api/python.rst line numbers on every code samples in
order to make them look all the same.
Fixes : #12174
Signed off: Pierre Chaumont pierre.chaumont31@gmail.com
2015-06-27 16:00:35 +02:00
Kefu Chai
2ac566c823
Merge pull request #5058 from SUSE/wip-fix-release-notes-blooper
...
release-notes.txt: fix version number in section heading
Reviewed-by: Kefu Chai <kchai@redhat.com>
2015-06-25 20:54:37 +08:00
Kefu Chai
b097e70732
Merge pull request #4840 from tchaikov/wip-11833-crush-dump-tree
...
mon: add an "osd crush dump tree" command
Reviewed-by: Min Chen <minchen@ubuntukylin.com>
Reviewed-by: Haomai Wang <haomaiwang@gmail.com>
2015-06-24 17:39:49 +08:00
Nathan Cutler
053ab4cf9b
release-notes.txt: fix version number in section heading
...
From context it is obvious that this section is about upgrading from Giant, not
Firefly, so change the version number to match Giant.
Signed-off-by: Nathan Cutler <ncutler@suse.com>
2015-06-23 14:56:35 +02:00