Determining Disk Throughput

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Determining Disk Throughput as PDF for free.

More details

  • Words: 129
  • Pages: 1
Determining Disk Throughput - (Sun) by Jeff Hunter, Sr. Database Administrator Overview This document provides several example on how to test and determine disk throughput. Write Example #1 Here is an easy solution to determine the time (and throughput) on how long it would take to write 1GB of data to a file. Keep in mind that you will also want to perform (and time) a sync after the write has completed: # rm -f /u07/app/test/gigfile # sync; time dd ibs=1048576 obs=1048576 count=1024 if=/dev/zero of=/u07/app/test/gigfile 1024+0 records in 1024+0 records out real user sys

0m36.41s 0m13.36s 0m17.73s

# time sync real 0m0.15s user 0m0.00s sys 0m0.04s

From the above, we can estimate that I am getting roughly 28.01 MB/sec. 1024 MB / (36.41 + 0.15) (s) = 28.01 MB/sec.

Related Documents

Determining Disk Throughput
November 2019 1
Throughput
April 2020 0
Disk
October 2019 37
Disk.
November 2019 32
Determining Requirements
November 2019 30
Determining Total
October 2019 38