Disk Performance

From Chorke Wiki
Revision as of 22:20, 5 July 2024 by Shahed (talk | contribs) (Created page with "==Sequential Write== <syntaxhighlight lang="bash"> dd if=/dev/zero of=/tmp/tempfile bs=1M count=1024 conv=fdatasync :' 1024+0 records in 1024+0 records out 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.521978 s, 2.1 GB/s ' </syntaxhighlight> ==Sequential Read » Clean Buffer== <syntaxhighlight lang="bash"> echo 'sync;echo 3 >/proc/sys/vm/drop_caches'|sudo bash dd if=/tmp/tempfile of=/dev/null bs=1M count=1024 :' 1024+0 records in 1024+0 records out 1073741824 bytes (1.1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sequential Write

dd if=/dev/zero of=/tmp/tempfile bs=1M count=1024 conv=fdatasync
:'
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.521978 s, 2.1 GB/s
'

Sequential Read » Clean Buffer

echo 'sync;echo 3 >/proc/sys/vm/drop_caches'|sudo bash
dd if=/tmp/tempfile of=/dev/null bs=1M count=1024
:'
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.978744 s, 1.1 GB/s
'

Sequential Read » Using Buffer

dd if=/tmp/tempfile of=/dev/null bs=1M count=1024
:'
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.151489 s, 7.1 GB/s
'

Playground

echo 'sync;echo 3 >/proc/sys/vm/drop_caches && swapoff -a && swapon -a'|sudo bash
free -th
echo 'apt update;apt list --upgradable;apt upgrade'|sudo bash
bottom

docker network prune -f
docker volume  prune -f
docker system  prune -f
docker image ls
cat <<'EXE' | bash
for d in system network volume
do docker ${d} prune -f;done
EXE
cat <<'EXE' | ssh [email protected]
for d in system network volume
do docker ${d} prune -f;done
EXE

References