test/crimson: cbt test does rand-reads instead of seq-reads.
The rationale behind the change is not only that random
read performance tends to be more important and meaningful.
Actually, the current procedure is broken because of how
`rados bench` internally operates: the number of seq read
operations is limited by the number of write ops used to
create the data set (`write` with the `--no-cleanup` option):
```cpp
int ObjBencher::write_bench(/* ... */) {
// ...
//write object size/number data for read benchmarks
encode(data.object_size, b_write);
encode(data.finished, b_write);
This makes significant problem as the cbt test uses short (3 sec.)
period of prefill. In the consequence, the sequential read testing
takes around half-second.