一、描述
1、情况如下:
A机器:挂载的新购买的SCV2000
B机器:为老购买的存储
2、A机器、B机器分别的挂载配置
二、测试方式
在A机器和B机器相同目录,创建同样大小的文件
1、目录格式如下:
# tree -L 1 /data/
/data/
├── 1
├── 2
2、相同大小文件
# dd if=/dev/zero of=./test.img bs=10M count=200
记录了200+0 的读入
记录了200+0 的写出
2097152000字节(2.1 GB)已复制,2.4285 秒,864 MB/秒
3、拷贝
从1目录拷贝到2目录发现A机器相比B机器拷贝缓慢很多,具体去下:
A机器的情况:
# rsync -avP ./test.img ../2/
sending incremental file list
test.img
2097152000 100% 158.36MB/s 0:00:12 (xfer#1, to-check=0/1)
sent 2097408074 bytes received 31 bytes 155363563.33 bytes/sec
B机器情况:
# rsync -avP ./test.img ../2/
sending incremental file list
test.img
2097152000 100% 223.29MB/s 0:00:08 (xfer#1, to-check=0/1)
sent 2097408074 bytes received 31 bytes 220779800.53 bytes/sec
total size is 2097152000 speedup is 1.00
结论:
A 机器为新购买的机器,B机器为老机器(还有其他的服务在跑),配置和B机器一样,不应该存在这么大的速度差异?