Guest User

Untitled

a guest
May 30th, 2025
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. Hi,
  2.  
  3. ok, so lets see i ran it too:
  4.  
  5. curl -sL https://yabs.sh | bash -s -- -i -g -n
  6.  
  7. ```
  8. # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
  9. # Yet-Another-Bench-Script #
  10. # v2025-04-20 #
  11. # https://github.com/masonr/yet-another-bench-script #
  12. # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
  13.  
  14. Fri May 30 17:43:29 CEST 2025
  15.  
  16. Basic System Information:
  17. ---------------------------------
  18. Uptime : 22 days, 5 hours, 21 minutes
  19. Processor : Intel(R) Xeon(R) Gold 6122 CPU @ 1.80GHz
  20. CPU cores : 80 @ 3700.000 MHz
  21. AES-NI : ✔ Enabled
  22. VM-x/AMD-V : ✔ Enabled
  23. RAM : 1006.5 GiB
  24. Swap : 100.0 GiB
  25. Disk : 93.9 GiB
  26. Distro : Debian GNU/Linux 12 (bookworm)
  27. Kernel : 6.8.12-10-pve
  28. VM Type : NONE
  29. IPv4/IPv6 : ✔ Online / ❌ Offline
  30.  
  31. fio Disk Speed Tests (Mixed R/W 50/50) (Partition local-zfs/fu):
  32. ---------------------------------
  33. Block Size | 4k (IOPS) | 64k (IOPS)
  34. ------ | --- ---- | ---- ----
  35. Read | 204.64 MB/s (51.1k) | 1.89 GB/s (29.6k)
  36. Write | 205.19 MB/s (51.2k) | 1.90 GB/s (29.8k)
  37. Total | 409.83 MB/s (102.4k) | 3.80 GB/s (59.4k)
  38. | |
  39. Block Size | 512k (IOPS) | 1m (IOPS)
  40. ------ | --- ---- | ---- ----
  41. Read | 2.69 GB/s (5.2k) | 2.47 GB/s (2.4k)
  42. Write | 2.84 GB/s (5.5k) | 2.63 GB/s (2.5k)
  43. Total | 5.54 GB/s (10.8k) | 5.11 GB/s (4.9k)
  44.  
  45. YABS completed in 21 sec
  46. ```
  47.  
  48. -------------------
  49.  
  50. And then i modified the yabs.sh script to test 128k size ( default zfs size ):
  51.  
  52. ```
  53. fio Disk Speed Tests (Mixed R/W 50/50) (Partition local-zfs/fu):
  54. ---------------------------------
  55. Block Size | 4k (IOPS) | 64k (IOPS)
  56. ------ | --- ---- | ---- ----
  57. Read | 204.39 MB/s (51.0k) | 1.63 GB/s (25.4k)
  58. Write | 204.92 MB/s (51.2k) | 1.63 GB/s (25.6k)
  59. Total | 409.31 MB/s (102.3k) | 3.26 GB/s (51.0k)
  60. | |
  61. Block Size | 128k (IOPS) | 512k (IOPS)
  62. ------ | --- ---- | ---- ----
  63. Read | 2.42 GB/s (18.9k) | 2.68 GB/s (5.2k)
  64. Write | 2.45 GB/s (19.1k) | 2.82 GB/s (5.5k)
  65. Total | 4.87 GB/s (38.0k) | 5.51 GB/s (10.7k)
  66. | |
  67. Block Size | 1m (IOPS) | (IOPS)
  68. ------ | --- ---- | ---- ----
  69. Read | 2.44 GB/s (2.3k) | ()
  70. Write | 2.60 GB/s (2.5k) | ()
  71. Total | 5.05 GB/s (4.9k) | ()
  72. ```
  73.  
  74. -------------------------
  75.  
  76. Could you please do that too?
  77.  
  78. So download the yabs.sh file, and on line 616 you will find:
  79.  
  80. ```
  81. Block_SIZES=( "4k" "64k" "512k" "1m")
  82.  
  83. And this you modify to
  84.  
  85. Block_SIZES=( "4k" "64k" "128k" "512k" "1m")
  86. ```
  87.  
  88. Or you can also replace the 64k with 128k or what ever. Luckily they build the script clever in this part as array so we can easily modify it.
  89.  
  90. Please test again and let me know the values for 128k.
  91.  
  92. I am wondering why you end up with this numbers:
  93.  
  94. ```
  95. Block Size | 512k (IOPS) | 1m (IOPS)
  96. ------ | --- ---- | ---- ----
  97. Read | 56.95 MB/s (111) | 72.19 MB/s (70)
  98. Write | 59.93 MB/s (117) | 77.00 MB/s (75)
  99. Total | 116.89 MB/s (228) | 149.19 MB/s (145)
  100. ```
  101.  
  102. Normally it should be higher. I dont like this numbers. They are too small!
Advertisement
Add Comment
Please, Sign In to add comment