[I]HDD Lesezeiten[/I]
[B]root@dockstar:~# hdparm -tT /dev/sda1[/B]
/dev/sda1:
Timing cached reads: 554 MB in 2.00 seconds = 276.78 MB/sec
Timing buffered disk reads: 86 MB in 3.04 seconds = 28.28 MB/sec
[B]root@dockstar:~# hdparm -tT /dev/dm-0 [/B]
/dev/dm-0:
Timing cached reads: 438 MB in 2.00 seconds = 218.90 MB/sec
Timing buffered disk reads: 16 MB in 3.04 seconds = 5.26 MB/sec
[B]root@dockstar:~# hdparm -tT --direct /dev/sda1 [/B]
/dev/sda1:
Timing O_DIRECT cached reads: 60 MB in 2.05 seconds = 29.25 MB/sec
Timing O_DIRECT disk reads: 98 MB in 3.05 seconds = 32.11 MB/sec
[B]root@dockstar:~# hdparm -tT --direct /dev/dm-0 [/B]
/dev/dm-0:
Timing O_DIRECT cached reads: 12 MB in 2.24 seconds = 5.35 MB/sec
Timing O_DIRECT disk reads: 16 MB in 3.09 seconds = 5.17 MB/sec
[I]Schreibgeschwindigkeit mit dd auf sda1, zwischen 12-16% Auslastung (load ~0.99)[/I]
[B]root@dockstar:~/bla# dd if=/dev/zero of=tempfile bs=1M count=1024 conv=fdatasync,notrunc[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 86,8619 s, 12,4 MB/s
[I]Lesen mit dd, 27-33% Auslastung Load ~1.54[/I]
[B]root@dockstar:~/bla# dd if=tempfile of=/dev/null bs=1M count=1024[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 35,1642 s, 30,5 MB/s
[I]Erneut (Cache gefüllt):[/I]
[B]root@dockstar:~/bla# dd if=tempfile of=/dev/null bs=1M count=1024[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 46,1095 s, 23,3 MB/s
[I]Schreibgeschwindigkeit mit dd auf dm-0, >100% Auslastung (load 1.42) [ntfs-3g 34% Auslastung, zwei weitere Prozesse mit je 2-3%(dd und htop), woher kommt der Rest?][/I]
[B]root@dockstar:/medienpool# dd if=/dev/zero of=tempfile bs=1M count=1024 conv=fdatasync,notrunc[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 317,915 s, 3,4 MB/s
[B]root@dockstar:/medienpool# echo 3 > /proc/sys/vm/drop_caches[/B]
[B]root@dockstar:/medienpool# dd if=tempfile of=/dev/null bs=1M count=1024[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 207,873 s, 5,2 MB/s
[I]Nochmal, mit gefülltem Cache (CPU wieder 100%, ntfs-3g jedoch nur 7%...), load 2-3,3[/I]
[B]root@dockstar:/medienpool# dd if=tempfile of=/dev/null bs=1M count=1024[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 207,827 s, 5,2 MB/s
[I]dd via NFS (1GB), 6-60% (wieder entfallen 30% auf mount.ntfs-3g), Load: > 6[/I]
[B]vikky@workstation:~> time dd if=/dev/zero of=/mnt/nfs/tempfile bs=1M count=1024[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 411,07 s, 2,6 MB/s
real 6m51.385s
user 0m0.002s
sys 0m0.816s
[B]vikky@workstation:~> time dd if=/mnt/nfs/tempfile of=/dev/zero bs=1M count=1024[/B]
1024+0 Datensätze ein
1024+0 Datensätze aus
1073741824 Bytes (1,1 GB) kopiert, 353,606 s, 3,0 MB/s
real 5m53.653s
user 0m0.003s
sys 0m1.271s