Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Node network I/O performance

When using netcat to transfer a 5 gb file from one VM to another VM, the resulting throughput was 

Node hdd performance

 Root partition

ubuntu@ip-10-73-143-203:~$ sync;time sudo bash -c "(dd if=/dev/zero of=bf bs=8k count=500000; sync)"
500000+0 records in
500000+0 records out
4096000000 bytes (4.1 GB) copied, 513.869 s, 8.0 MB/s

Partition at /mnt

ubuntu@ip-10-73-143-203:~$ sync;time sudo bash -c "(dd if=/dev/zero of=/mnt/bf bs=8k count=500000; sync)"
500000+0 records in
500000+0 records out
4096000000 bytes (4.1 GB) copied, 7134.3789 3706 s, 57.4 119 MB/sreal 1m11.954s
user 0m0.388s
sys 0m9.600s

We have to make sure to use the /mnt partition since it writes much faster than the root one

...