Skip to content

Mushkin Ventura Pro 64GB USB 3.0 Benchmark

As formated out-of-the-box (58.9 GB FAT32):

After hard formatting as exFAT (with default 128kB clusters):

Got it from this slick deal. It actually performs better (on the reads) than advertised (advertised as 120MB/s), and slightly better on the writes (advertised as 70 MB/s).

Update Oct 19

I ran some dd tests on FreeBSD to see what the sector size of this device is. Looks to be around 64kB:

[cce_bash]
server# dd if=/dev/zero of=/dev/da0 bs=16k count=16384
16384+0 records in
16384+0 records out
268435456 bytes transferred in 36.340008 secs (7386775 bytes/sec)
server# dd if=/dev/zero of=/dev/da0 bs=32k count=8192
8192+0 records in
8192+0 records out
268435456 bytes transferred in 18.884614 secs (14214506 bytes/sec)
server# dd if=/dev/zero of=/dev/da0 bs=64k count=4096
4096+0 records in
4096+0 records out
268435456 bytes transferred in 3.608136 secs (74397268 bytes/sec)
server# dd if=/dev/zero of=/dev/da0 bs=128k count=2048
2048+0 records in
2048+0 records out
268435456 bytes transferred in 3.217838 secs (83421065 bytes/sec)
[/cce_bash]

FreeBSD only allows a maximum fragment size of 32kB. Update: I found that you can set a fragment size higher by setting the sector size using the -S option in newfs. If I want to use this as a boot drive, I probably want to enable soft-updates. I’m not crazy about that, as I like to keep every write synchronous. But, the FreeBSD manual says that it’s basically safe–you might lose some data in a 30-second interval, but only if the system crashes–in which case, the time it takes to write to disk on this drive also becomes an issue. Will maybe try that.

This post on FreeBSD on SSD’s recommends soft updates, but more importantly, shows you how to get a swap file that uses TRIM.

Be the first to like.

Post a Comment

Your email is never published nor shared. Required fields are marked *
*
*