I've got an account with IO limit set to 1024.
During write tests with dd, I get throughput of up to 1.3MB/s.
With read tests the figures vary, although I'm getting up to 1GB/s quite regularly.
The CL documentation suggests the IO limit applies to both read and write and is a combination of both.
If this is the case then how am I getting 1GB/s?
The read test uses:
dd if=./test.img of=/dev/null bs=4k iflag=fullblock,count_bytes count=10M oflag=dsync
The write test uses:
dd if=/dev/zero of=./test.img bs=4k iflag=fullblock,count_bytes count=10M oflag=dsync
Thanks
During write tests with dd, I get throughput of up to 1.3MB/s.
With read tests the figures vary, although I'm getting up to 1GB/s quite regularly.
The CL documentation suggests the IO limit applies to both read and write and is a combination of both.
If this is the case then how am I getting 1GB/s?
The read test uses:
dd if=./test.img of=/dev/null bs=4k iflag=fullblock,count_bytes count=10M oflag=dsync
The write test uses:
dd if=/dev/zero of=./test.img bs=4k iflag=fullblock,count_bytes count=10M oflag=dsync
Thanks
Comment