Used below to test the limit of what throughtput the disk can achieve
dd if=/dev/zero of=test bs=4k count=25000 conv=fdatasync
with multiple runs it averaged out to about 130 MB/s
now when running cassandra on these system i am monitoring the disk usage using
iostat -dmxt 30 sdd sdb sdc
there are certain entries i want to make sure i am interpreting them correctly like below.
Device: rrqm/s wrqm/s r/s w/s rMB/s wMB/s avgrq-sz avgqu-sz await svctm %util
sdc 0.00 2718.60 186.30 27.20 17.87 12.06 287.13 44.98 215.06 2.79 59.58
even though the sum of rMB/s + wMB/s
should be roughly equal to %util(disk throughput which is 130MB/s)
and i am assuming some of the utilization goes towards seek , can the difference be huge enough to take about 24% of utilization.
Thanks in advance for any help.