On ESXI, I was benchmarking my RAM sequential read speed(with some processing) using following commands
This got completed in 11 speed.
But when I write similar benchmarking script for proxmox, it is taking about 42 seconds.
What could cause such a big difference?
Bash:
mkdir /benchmark
esxcli system visorfs ramdisk add -M 4096 -m 1024 -n benchmark -t /benchmark -p 0755
head -4100000 /dev/random > /benchmark/random.txt
date;wc /benchmark/random.txt;date;
This got completed in 11 speed.
But when I write similar benchmarking script for proxmox, it is taking about 42 seconds.
Bash:
mkdir /benchmark
mount -t tmpfs -o size=4G tmpfs /benchmark
head -4100000 /dev/random > /benchmark/random.txt
date;wc /benchmark/random.txt;date;
What could cause such a big difference?