mirror of
https://github.com/ceph/ceph
synced 2024-12-14 15:35:45 +00:00
51e402e3c2
This was mixed up with min/max_op_len. And max_ops wasn't being used the initial object creation stage, flooding the OSDs. Or during run(). Signed-off-by: Sage Weil <sage@newdream.net>
11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rados -p data load-gen \
|
|
--num-objects 102400 \
|
|
--min-object-size 1 \
|
|
--max-object-size 1048576 \
|
|
--max-ops 128 \
|
|
--max-backlog 128 \
|
|
--percent 50 \
|
|
--run-length 600
|