Measuring Backup Performance
This page provides insights into measuring backup performance with T4K
How can customers measure backup performance?
S3 Backends:
# create 100 GB file using dd command
[root@compute ~]# dd if=/dev/urandom of=100gb bs=1M count=102400
# Split the file into 32MB chunks and move them to a folder called mysegments
[root@compute ~]# split -b 32m 100gb segment
[root@compute ~]# mkdir segments
[root@compute ~]# mv segment* mysegments/
# upload segments using aws s3 command to the s3 bucket you might use as backup target
[root@compute ~]# time aws s3 cp mysegments/ s3://trilio-qa/perftest/ --recursive
real 41m51.511s
user 13m12.434s
sys 10m38.640s
# Trilio uses qemu-img command to convert disk images to qcow2 and uploads to s3
[root@compute ~]# time qemu-img convert -p -O qcow2 100gb /var/trilio/triliovault-mounts/perftest/100gb.qcow2
(100.00/100%)
real 37m10.657s
user 0m14.999s
sys 2m49.130sNFS backend
Was this helpful?