Seagate Launches Hybrid SSD Hard Drive
MojoKid writes "Though there has been some noise in recent years about hybrid storage, it really hasn't made a significant impact on in the market. Seagate is taking another stab at the technology and launched the Momentus XT 2.5-inch hard drive that mates 4GB of flash storage with traditional spinning media in an attempt to bridge the gap between hard drives and SSDs. Seagate claims the Momentus XT can offer the same kind of enhanced user experience as an SSD, but with the capacity and cost of a traditional hard drive. That's a pretty tall order, but the numbers look promising, at least compared to current traditional notebook hard drives."
4GB is very restrictive. I had the first EeePC, the 701, with the 4GB SSD. Talk about micromanage the OS... You can't even install Windows 7 onto the 4GB SSD and put the rest of your data on the HDD, as it's too small! What's the point?
Disagree != mod troll.
The performance of the drive gets better over time as it 'learns' your most frequently used files. I hope it's smart enough to ignore the 'swapfile'.
What swapfile? I have used Ubuntu on a few PCs with at least half a GB of RAM, and I rarely see swap usage climb above 40 MB. In an environment where reads are cheaper than writes, you'll want to use a low value for the swappiness, such as 10% instead of the default 60%.
Hybrid storage drives should be manually manageable.
You should have the possibility of configuring which files/folders/partitions/whatever you want to be accessed fast and which parts are to be left as "long term", slow access, storage.
Wouldn't it be cheaper and more effective just add an additional 4 GB of memory for disk cache?
I wonder if this is simply a more expensive version of ReadyBoost. Similarly, it takes your most frequently used files and puts them on a flash drive for faster access times, in a way that is transparent to the end user. In this case I wonder if there would be any speed gain from using this on a PC running Windows 7 with ReadyBoost? Caching always introduces some overhead, so rather than using multiple levels of "flash cache" it might be better to simply turn ReadyBoost off in that case. My experience with ReadyBoost has been that it does indeed improve performance, but in no way close to using a real SSD as the system drive.
Quality, performance, value; you get only two, and you don't always get to pick.
And I am supposed to be impressed?
Can this HD do anything different/better than a HD with a dram cache?
OCZ and im sure others have SSDs up to 500GB now. OK, they cost as much as my car, but they exist. It wont be long before they get up to 1TB, then 2TB.. Then its just a matter of waiting for the price to come down.
SSDs have caught up to traditional drives capacity extremely quickly, it wont be long before you can put a 10TB SSD in your laptop and never have to worry again (well, except for loosing it).
The trend continued in the remainder of the PCMark Vantage tests. On the first run of the benchmark, the Seagate Momentus XT performed surprisingly well. By the third run though, performance had increased dramatically and approached the level of the true SSD.
We should also point out that we ran this test numerous times, and after the third run, the additional performance increases stopped, which is to say Run 4 performed like Run 3. The screenshots of the actual Vantage performance summaries are available in the image gallery at the bottom of the page for those that would like to see the progression from Run 1 through Run 4.
So, it is slightly more expensive than a high performance disk drive, and offers most of the performance of an SSD. Most room on hard drives is taken up by massive media files, which do not need to be accessed at top speed because they are usually streamed for playback.
Eventually the the best drives will allow you to designate a folder for SSD storage only. Video editors should be able to buy a 1TB/32GB SSD drive and have a folder for the files they are currently editing. This may not be necessary if the drive intelligently identifies open files and transfers them to the SSD portion.
And I don't think this is just a big cache. I'm pretty sure hard drive caches disappear upon reboot.
According to the article, it's SLC flash. It should have many more write-erase cycles than MLC.
I read through the article to see the prices:
"The initial three drives in the Seagate Momentus XT line-up will retail for $156 (500GB), $132 (320GB), and 250GB ($113). Those prices equate to roughly $0.31 to $0.45 per gigabyte, which puts these drive within striking distance of a standard HD in terms of price and much less expensive than any SSD."
This looks interesting enough for me to look into the compatibility with my MacBook Pro. Anyone with a MacBook Pro had sizing problems when replacing the hard drive? I imagine the size tolerance to be tiny in the modern MacBooks.
Think Deeply.
When I read specifications on a drive, one of the key things I look for is IOPS and read/write speeds. But Seagate seems to have omitted that. I wonder why?
Throughout the article, the reviewer praises the abilities of the hybrid drive--after the 3rd run, which provides the drive with enough data accesses for it to predict what data will be checked next and pre-load it into the solid-state memory. However, on the first run, and on larger operations, the drive performs just like the normal 7200 rpm drive that it effectively is.
This hybrid drive certainly is a jump up over traditional HDDs, but I'm glad they benchmarked the drive against a true SSD as well--a quick glance over the graphs and the pure SSD seemed to be about twice as fast as the hybrid drive on several occasions. I chuckled when I first saw the graph on this page:
http://hothardware.com/Articles/Seagate-Momentus-XT-Solid-State-Hybrid-Preview/?page=7
Point is, if you're splashing out money to get a faster drive, get a "budget" SSD, not a budget-conscious traditional hard drive. Even the budget ones are miles above a standard or even a hybrid HDD, and the first-generation issues have been resolved (the disk controller problem being the main one) as far as I am aware.
For the same money you're spending for this hybrid drive, you could just get a massive standard high-speed drive and not be crippled for space. Or if you are spending the money, get a smaller-sized SSD and put your data files (*that's* why you have a 1TB drive currently, your 200GB mp3 collection and 600GB of "other" files) on an external drive, where speed isn't as much of a concern as web browsing or FPSs.
I went for the latter option: I picked up an Intel X25-M, and it's unquestionably rejuvenated a *4* year old laptop for daily use. It's faster than my friends' computers that are half that age, and I fully expect to get a couple extra years of service out of it because of that upgrade.
And some of the other graphs aren't very fair to SSDs, either--they're done on a logarithmic scale instead of a normal one. Transferring 200 MB/s is twice as fast as 100 MB/s, not something like 20% faster (which is what it seems at first glance). The continued dominance of the SSD in the tests is minimized by the choice in graphing.
Seems like you could do better if you simply could reorder the files on your traditional hard disk so that you'd get 100% readahead buffer hits. If properly optimized this way, your traditional hard disk should always be transferring near the max block read rate of ~100MB/s
I'm guessing this is what some of the boot profilers / optimizers are doing.
The readahead utility used by Redhat / Fedora (and also available for Debian) gives you some benefit loading lots of small files from the disk by reordering reads by inode number to minimize head seeks. The next major benefit would be if it could actually reorganize all those files into a single tarfile, and maybe even compress it a bit, so it can do a single large block read to get all that content off of disk and into RAM cache.
Filesystems have a much better idea of what data is going to be used frequently. This is an optimization they should be making. Seagate can make some good guesses by looking at block-level IO statistics, but that's like trying to optimize bytecode, all the really useful information is gone by the time you get to block-level IO.
I think hardware vendors should be supporting more interesting experimentation on the filesystem front instead of coming up with proprietary hacks like this that are basically a half solution.
Need a Python, C++, Unix, Linux develop
Performance is better than traditional drives in almost all benchmarks, and reaches up to 2x the performance when using commonly accessed files (like, the operating system).
I agree, and I think the 'different partitions' of the parent poster isn't as good of a system as an automatic cache system.
Consider that even for linux installs, not all system files are going to be equally read or written, same with applications and even data files. Some will be used almost all the time, some will collect virtual dust for years.
Newegg prices:
500 GB laptop drive: $65. 13 cents per gig
65 GB SSD: $145. $2.23 per gig. (Went 64GB to avoid small cap premium).
At around 6% of the cost, it's essentially 'free' to duplicate the SSD data on the actual platter. You're paying 52 cents for that 4GB on the platter, $8.92 for the SSD. That puts flash very much in the price range for cache - where you're willing to spend the money for the extra performance, but just can't afford to put everything on there.
I'm sure an 8GB version would make the geeks very happy, but I wouldn't be surprised if 90% of my most commonly accessed files would easily fit on 4GB. More is better, of course, but at 20x the price, how much 'more' is really better?
With smart caching, I wouldn't be surprised if doubling the storage had less than 10% difference in real world performance.
The main reason I'd want 8 or even 16GB is that I recently went to a SSD for my main computer and I LOVE the fast hybernate(and wake up). So there's 4 or eventually 8 GB right there for the hybernate file. Don't forget the whole GB vs GiB debate... Memory uses 'real' gigabytes, which means that you'll likely need 5GB as HD/SSD makers measure them...
I don't read AC A human right
It sounds pointless to me, however the manufacturers obviously see padding out the transitional market as a potential reward generator. But really, I got an 80GB Intel X-25M (one of the highest performing SSD's) for £120 at the beginning of the year. That's really not expensive for the performance increase / noise reduction / energy saving boost it gives (which is fairly awesome), and 80GB is easily enough for me to use as a system drive, leaving an HDD as storage. It wouldn't surprised me to find out that a lot of users that shun an SSD for a larger capacity HDD as their system drive, never actually USE the extra space.
FTA: "To put it simply, the most commonly accessed data on the platters get's copied to the much higher performing, SLC Flash memory, which results in a performance boost." Read more: http://hothardware.com/Articles/Seagate-Momentus-XT-Solid-State-Hybrid-Preview/?page=2#ixzz0orEbgttB This makes no sense to me -- that would seem to imply the most likely thing to end up on the SSD is my swap partition, which is the last thing I want on SSD. Yeah, read would be faster, but the wear would be awful. Maybe I'm missing something. I'd probably be happier if it just exposed the 4GB as a different partition...
The way to get both performance and storage right now is to by TWO disks. An amazing concept I know. Who would have thought it was possible to get more then one HD/SSD into a PC.
Every single story about SSD's seems to bring out the idiots who want everything on one disk. Good thing these guys ain't farmers or they would be trying to plow the field with a Ferrari or cruise town with a tractor.
This drive is only of use to people who can't afford a real SSD and are limited to a laptop with only one drive bay and even then you would get far better performance with a normal SSD and an external drive for your porn collection.
Yes yes, there are people who use a laptop AND have need for far bigger datasets but on the whole, those people also need far greater access speeds then a traditional laptop HD can offer. I find it amazing to see someone claim he needs to edit video on a laptop with a 500gb 2.5 inch HD running at 5400 rpm. Who are you trying to kid?
And this drive won't be much help here. 4GB is just a cache file, if you are lucky it caches the right files but if you are doing complex stuff these "smart" caches often get horribly confused and start caching the wrong data. Like Vista trying to cache torrented files. Yes, I know it accesses the file a lot but please don't try and cache a 10gb file on the same HD. What's the fucking point? If you for instance will be running a large database from this drive, I am willing to bet its cache performance will degrade as it simply has to much to cache. Small caches only work when a small amount of files is requested a lot and the rest isn't. Like a porn collecton on your OS drive. Video editing, databases, filesharing always screw up caches.
If you really want performance in a laptop, spring for one with two drive bays, put as much memory in it as it can hold and get an SSD and a HD. A real SSD not one of the cheap ones some laptop companies put inside. An SSD is NOT just a fast HD, they truly are in a class of their own. And even if you got only a small single SSD, then you can still save space by putting your music/porn on a flash card or usb stick instead.
I wonder if people can ever get it into their heads that an SSD is about speed, not about capacity. Then again, since every single netbook these days comes with a 360gb slow ass HD instead of small but fast SSD, I think I might be fighting a loosing battle. Seems the average customer can only judge something if the number is bigger.
MMO Quests are like orgasms:
You may solo them, I prefer them in a group.
This drive still suffers from the historical bugaboo of spinning platters: it is damaged by shock. Also, it has the power draw (and heat output) of other spinning media.
Those are the two biggest reasons for SSD, especially in notebooks. Performance improvements are a factor, but I think they're the least interesting. In this respect, Seagate still needs to bring an answer, and they need to do it fast to justify their run up in stock price.
--
$tar -xvf
The response time seems to be just as crappy as a ordinary hdd. Horrible.
The logarithmic scale in the graph at the HotHardware link is really confusing. I think a linear scale would show the differences between the drives much better.
Wow!
I have one of the old Samsung drives from 2007, a 80GB with 256MB of flash.
http://en.wikipedia.org/wiki/Hybrid_drive
http://www.samsung.com/us/consumer/office/hard-disk-drives/hybrid-hdd-flashon/HM08HHI/index.idx?pagetype=prd_detail
You expected a built-in feature of the Windows OS to run on Linux?
No sig today...
and run then in RAID 10, that beat budget SSD at any time with a large storage for applications. No longer worry about "pre-configuration" in Windows. Just install and run.
New Economic Perspectives
Not only would this still have the noise of a physically spinning platter, and still have long seek times for anything outside the cache, but it would also wear out the rewrite capacity of the flash part with frequent cache filling.
For great justice.
I think AC is talking about Dr. Robotnik's hapPINESS.
with a couple of different compiler environments. matlab and mathematica, for linux. chromium, etc. my 4gig is all used up frequently, and after a couple of days of leaving the laptop on and just suspending, i find a couple of gig of swap gets used too.
It's a nice idea, but it'll hinder the progress of SSD if it catches on. I'd rather SSD replace HDs completely.
Why OpalCalc is the best Windows calc
Logarithmic chart axis scales are used to make logarithmic functions easier to draw by hand-- when you show a logarithmic function against a logarithmic axis scale, they present as a straight line instead of a curved line. Zip, the straight edge does all the work to make the result very nice, thank you Mr. Straight Edge and Mr. Light Table. Logarithmic axis scales are also used in the case of a computer-drawn chart of a function formerly/typically shown with logarithmic axis scales when drawn by hand. This disc performance chart is neither! It's simply confusing, because the slower drives' functions appear to be bigger than they normally would in comparison to a linear scale. Does any other site or graph show disc performance data on a logarithmic chart?
[Error 407: No signature found]
The numbers don't tell much. Part of adding flash cache is supposed to be so frequently used data can be accessed with much lower latency and more randomly, and it's not aiming to speed up a single application but the entire system. It would have been nice to know how the desktop performance improved or "felt" - overall responsiveness of OS and application loading, multitasking, etc. That's where the performance improvement is going to be.
undoing an accidental moderation
I wonder if just putting 4 Gig of super fast cache memory would have the same affect, or at least something similar? I'm going to wait for the high end drives like this. The one's that will have the faster flash memory. Just like current SSD drives, some are faster than others. Sometimes quite a bit faster. Seems to me if the flash memory doesn't have much better throughput than the normal hard drive's sustained throughput rate, then it's not worth much except for seek time improvements. So I hope to see soon what the real throughput rate is for the flash memory part of this drive is.
I bet it is awful after you defrag it. The drive will see a lot of random reads and writes, which probably thrashes the Flash and randomizes the contents of the cache.
http://www.wsu.edu/~brians/errors/lose.html
http://www.wsu.edu/~brians/errors/lose.html
Second time in one thread... two chances to educate!
4 GiB of RAM would still have to be filled up at boot, and flash is rounning around $2 a gig vs around $20 for RAM.
$.17 a gig for a 7200rpm laptop hard drive.
$2.23 a gig for a SSD
$19.50 a gig for the cheapest 2gig ram stick off of newegg.
Sure, RAM is a lot faster even now, but we're back to looking at various levels of cache - 10x the price for.
When you go looking at RAM, I'm going to say it's better off in the system, especially now that so many people are going to 64bit systems, and I've heard that Win7, possibly Vista will use excess RAM for caching. The hybrid drive proposed here is an interesting and I think well positioned device - nonvolatile cache means that the system doesn't have to worry about flushing a relatively huge 4gig of RAM to the disc in case of failure.
So I'm back to that I'd like to see a 'premium' product offering 8 or even 16 GB of flash for the 'caching' operation. That'd allow the commonly used parts of my OS, my most commonly used 2-3 applications, as well as the commonly used files for whatever game I'm playing.
Given the issues with installing STEAM games to different directories, for example, this as a secondary drive for my computer would allow me to install STEAM on it, enjoy my game of the month at (near)SSD speeds, the steam app itself would end up on the flash portion, but I wouldn't have to worry about flushing the game of last month off of the SSD, and I can still play it without downloading it or restoring it from backup if I want to.
I don't read AC A human right
I'd like to see 2 logical drives in my laptop, a 16 GB SSD for my OS (Mac OS ~8GB) plus MS Office, Firefox, and a few other apps I use...and also a 500GB HD for my music, photos, movies, and large docs. Why is this so hard? Should be doable for a nominal increase in cost. I know it's possible to get laptops with 2 drive bays, but I want something small, something that probably only has one drive bay.