gcsfuse#

簡単なテスト結果メモ#

GCE の COS で GCS マウントして、 dd でファイル書き込みし、その時間を計測した

root@6c8962286976:/# time dd if=/dev/zero of=/mnt/hoge100M.txt bs=1M count=100
100+0 records in
100+0 records out
104857600 bytes (105 MB, 100 MiB) copied, 9.51197 s, 11.0 MB/s

real    0m9.828s
user    0m0.000s
sys     0m0.056s
root@6c8962286976:/# time dd if=/dev/zero of=/mnt/hoge10M.txt bs=1M count=10
10+0 records in
10+0 records out
10485760 bytes (10 MB, 10 MiB) copied, 1.24066 s, 8.5 MB/s

real    0m1.571s
user    0m0.000s
sys     0m0.012s
root@6c8962286976:/# time dd if=/dev/zero of=/mnt/hoge1M.txt bs=1M count=1
1+0 records in
1+0 records out
1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.428995 s, 2.4 MB/s

real    0m0.768s
user    0m0.004s
sys     0m0.000s
root@6c8962286976:/# time dd if=/dev/zero of=/mnt/hoge1K.txt bs=1K count=1
1+0 records in
1+0 records out
1024 bytes (1.0 kB, 1.0 KiB) copied, 0.603103 s, 1.7 kB/s

real    0m1.040s
user    0m0.002s
sys     0m0.000s