Ik heb wat nieuwe hardware gekocht om mijn huidige zelfbouw NAS (6x2TB in MDADM RAID6) te vervangen:
# | Product | Prijs | Subtotaal |
1 | Intel Xeon E3-1220 V3 Boxed | € 175,- | € 175,- |
1 | Supermicro X10SLH-F | € 186,28 | € 186,28 |
6 | WD Green WD40EZRX, 4TB | € 131,31 | € 787,86 |
1 | Kingston KVR1333D3E9SK2/16G | € 155,95 | € 155,95 |
1 | Crucial M500 2,5" 240GB | € 90,95 | € 90,95 |
Bekijk collectie
Importeer producten | Totaal | € 1.396,04 |
Nou ben ik van plan hier Debian op te draaien met ZFS On Linux. Echter ik wil eigenlijk eerst nog ff wat spelen en wat benchmarks draaien, ook met een MDADM raid6 om te kijken wat het verschil (als dat er al is)
Ik heb de volgende testjes met dd op papier gezet. Ik ben van plan alle testjes zowel lokaal als over netwerk te draaien (nfs en smb).
Is er toevallig iemand die nog wat goede opmerkingen heeft, of andere ideeën heeft voor benchmarks?
Test 1A
Writing 10k blocks of 512 bytes asynchronously.
dd bs=512 count=10000 if=/dev/zero of=test01a_10000x512b_async
Test 1B
Writing 10k blocks of 512 bytes directly to disk.
dd bs=512 count=10000 if=/dev/zero of=test01b_10000x512b_direct oflag=direct
Test 2A
Writing 65536 blocks of 512KB asynchronously.
dd bs=512K count=65536 if=/dev/zero of=test02a_65536x512Kb_async
Test 2B
Writing 65536 blocks of 512KB and making sure every block is immediately synced to disk.
dd bs=512K count=65536 if=/dev/zero of=test02b_65536x512Kb_direct oflag=direct
Test 3A
Writing 32 blocks of 1GB asynchronously.
dd bs=1G count=32 if=/dev/zero of=test03a_32x1Gb_async
Test 3B
Writing 32 blocks of 1GB and making sure the total amount is written to disk (not per block).
dd bs=1G count=32 if=/dev/zero of=test03b_32x1Gb_fdatasync conv=fdatasync
Test 4
Reading the 32GB file from test 03A back to /dev/null.
dd if=test03b_32x1Gb_fdatasync of=/dev/null
Test 5
bonnie++ -d <path> -s 32G -n 1024