mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
Merge pull request #31310 from badone/wip-tracker-42477-reinstate-o-outfile
tools/rados: Unmask '-o' to restore original behaviour Reviewed-by: Sage Weil <sage@redhat.com>
This commit is contained in:
commit
dc1d34ba42
@ -306,3 +306,8 @@
|
||||
notably improved by heuristically -- and significantly, in many
|
||||
cases -- reducing the number of entries requested from each bucket
|
||||
index shard.
|
||||
|
||||
* The behaviour of the ``-o`` argument to the rados tool has been reverted to
|
||||
its orignal behaviour of indicating an output file. This reverts it to a more
|
||||
consisten behaviour when compared to other tools. Specifying obect size is now
|
||||
accomplished by using an upper case O ``-O``.
|
||||
|
@ -67,6 +67,10 @@ Options
|
||||
Available for stat, stat2, get, put, append, truncate, rm, ls
|
||||
and all xattr related operation
|
||||
|
||||
.. option:: -O object_size
|
||||
|
||||
Set the object size for put/get ops and for write benchmarking
|
||||
|
||||
|
||||
Global commands
|
||||
===============
|
||||
|
@ -84,7 +84,7 @@ def task(ctx, config):
|
||||
if osize is 0:
|
||||
objectsize = []
|
||||
else:
|
||||
objectsize = ['-o', str(osize)]
|
||||
objectsize = ['-O', str(osize)]
|
||||
size = ['-b', str(config.get('size', 65536))]
|
||||
# If doing a reading run then populate data
|
||||
if runtype != "write":
|
||||
|
@ -182,7 +182,7 @@ void usage(ostream& out)
|
||||
" --format=[--format plain|json|json-pretty]\n"
|
||||
" -b op_size\n"
|
||||
" set the block size for put/get ops and for write benchmarking\n"
|
||||
" -o object_size\n"
|
||||
" -O object_size\n"
|
||||
" set the object size for put/get ops and for write benchmarking\n"
|
||||
" --max-objects\n"
|
||||
" set the max number of objects for write benchmarking\n"
|
||||
@ -3983,7 +3983,7 @@ int main(int argc, const char **argv)
|
||||
opts["max-objects"] = val;
|
||||
} else if (ceph_argparse_witharg(args, i, &val, "--offset", (char*)NULL)) {
|
||||
opts["offset"] = val;
|
||||
} else if (ceph_argparse_witharg(args, i, &val, "-o", (char*)NULL)) {
|
||||
} else if (ceph_argparse_witharg(args, i, &val, "-O", (char*)NULL)) {
|
||||
opts["object-size"] = val;
|
||||
} else if (ceph_argparse_witharg(args, i, &val, "-s", "--snap", (char*)NULL)) {
|
||||
opts["snap"] = val;
|
||||
|
Loading…
Reference in New Issue
Block a user