Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. Multiple IO Tester
  2.  
  3. This application emulates a busy server in several states by launching multiple
  4. threads that do various types of IO. This allows us to see what the consequences
  5. are of running in a multitasking environment. This test uses direct IO and
  6. invalidates caches between tests, testing the disk, not the memory.
  7.  
  8. NOTE: You need at least 3GB of free space in your current working directory.
  9.  
  10. The following tests currently consist of:
  11.  
  12. 8 sequential readers
  13. 8 sequential writers
  14. 8 mixed seqential readers/writers (random choice per IO)
  15. 8 random readers
  16. 8 random writers
  17. 8 mixed random readers/writers (random choice per IO)
  18.  
  19. Feel free to modify the script to meet your needs. Enjoy!
  20.  
  21. The test should take less than 2 minutes. Press <ENTER> to begin...
  22.  
  23. running IO "sequential read" test...
  24. result is 3.84GB per second
  25.  
  26. running IO "sequential write" test...
  27. result is 1.17GB per second
  28.  
  29. running IO "seq read/seq write" test...
  30. result is 1.13GB/949.97MB per second
  31.  
  32. running IO "random read" test...
  33. result is 666.95MB per second
  34. equals 170739.0 IOs per second
  35.  
  36. running IO "random write" test...
  37. result is 281.30MB per second
  38. equals 72012.2 IOs per second
  39.  
  40. running IO "rand read/rand write" test...
  41. result is 166.27MB/166.25MB per second
  42. equals 42564.8/42560.0 IOs per second
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement