Linux/Benchmarks: Difference between revisions

From Wiki
mNo edit summary
Line 39: Line 39:
</pre>
</pre>


 
== Benchmarks ==
{| class="wikitable"
|+
!
!nucserver
!
!
|-
|fio write throughput IOPS
|411
|
|
|-
|fio write throughput BW
|443MB/s
|
|
|-
|
|
|
|
|}
[[Category:Linux/System]]
[[Category:Linux/System]]
[[Category:Linux]]
[[Category:Linux]]

Revision as of 15:01, 18 November 2023

  • bonnie++ (disk benchmark)
sudo bonnie -d /mnt/hdd -s 4000 -u root
  • fio
  • sysbench (generals systembenchmark) [1]



  • sysbench
sudo apt install sysbench

sysbench cpu run
sysbench --cpu-max-prime=20000 --threads=6 cpu run
  • stress-ng
sudo apt install stress-ng

stress-ng --cpu 1 --cpu-method matrixprod --metrics-brief --perf -t 60

Mysql

apt install sysbench


prepare (ca. 2GB data):

sysbench --db-driver=mysql --mysql-host='vm-docker' --mysql-db=maria --mysql-user=maria --mysql-password=maria --tables=16 --table-size=1000000 /usr/share/sysbench/oltp_read_write.lua prepare


benchmark:

sysbench --db-driver=mysql --mysql-host='vm-docker' --mysql-db=maria --mysql-user=maria --mysql-password=maria --tables=16 --table-size=1000000 --threads=8 --time=60 --events=0 --report-interval=2 /usr/share/sysbench/oltp_read_write.lua run

Benchmarks

nucserver
fio write throughput IOPS 411
fio write throughput BW 443MB/s