
Slow writes to xen virtual disk
By: a guest on
May 21st, 2012 | syntax:
None | size: 1.24 KB | hits: 23 | expires: Never
[root@localhost ~]# dd if=/dev/zero of=/dev/xvde bs=1M count=1024 conv=fdatasync
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 35.6489 seconds, 30.1 MB/s
[root@localhost ~]# mkfs.ext3 /dev/xvde
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
1310720 inodes, 2621440 blocks
131072 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2684354560
80 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 32 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost ~]# mount /dev/xvde emc_storage/
[root@localhost ~]# cd emc_storage/
[root@localhost emc_storage]# dd if=/dev/zero of=file_on_disk bs=1M count=1024 conv=fdatasync
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 64.4847 seconds, 16.7 MB/s
[root@localhost emc_storage]#