For following SSD disk, await time is high but %util is less.
Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util
dm-3 0.00 0.00 132.00 2272.00 892.00 100244.00 84.14 1111.70 658.36 5.00 696.32 0.20 49.20
%util is ((r/s + w/s) * svctm/1000)*100 and util represents percentage of time device spent in servicing requests. So, ~50% util is not high.
On the other hand, await time is pretty high. Tasks actual await time in the queue is "await - svctm" i.e. (658.36 - 0.20)*100/658.36, which is close to 100%. That means that tasks are spending most of time waiting in the queue.
If util is low but await time is high, is disk being utilized properly? Which one of these two metrics is more reliable for SSDs?