Samsung's Hybrid Hard Drive Exposed
Erica Campbell writes "Samsung is preparing to release a new
Flash memory-assisted computer hard drive
that boasts improved performance, reduced energy consumption, a faster boot time, and better reliability. The new hybrid hard drive will be released around the same time as the upcoming Windows Vista operating system and will be one of the first hardware designed specifically to benefit from it."
What's so different about Vista that makes this drive benefit from Vista. Will the drive not work in Windows XP, Linux or Mac OSX machines?
Anthropic principle: We see the universe the way it is because if it were different we would not be here to see it.
Given Apple's strong relationship with Samsung (iPod shuffle+nano memory both come from Samsung, I believe- and I'm almost positive Samsung has supplied RAM to apple on+off since the golden olden days), what do others think about the possibility of this ending up in a Powerbook, er, Macbook Pro- and 10.5 being designed to take advantage of it?
Apple can be hit or miss with the latest and greatest- they took forever with USB2 (yeah yeah, firewire blah blah) and lagged behind a lot of the smaller laptop mafacturers with Expresscard (given there's next to nothing for expresscard, who can blame them?)...it'll be interesting to see if Apple thinks this is a win or lose technology...
Please help metamoderate.
I think the cache is designed to help with booting and suspend/restore, so it shouldn't be written too much. With a large enough flash buffer, it should be able to least for the normal life of the drive.
You can have a similar effect now by using a flash drive as your root partition, or as a swap partition. Keep in mind that using it as a swap partition would make the drive age faster.
-jX
Don't you just love politics? It's like a comedy of errors.
If Vista knows about the CF, why does it need to be on the hard disk itself? It sounds like all the heavy lifting is being done by Vista anyways. WOuldn't it make more sense just to use any CF attached to the system for this caching, etc, and use normal hard disks instead? That way adding CF to a PC would improve its performance, no matter what type of hard disks you have attached.
We wrote a driver to read and write fat 16 flash drives for an embeded system. The testing for it wrote and read full speed 24/7 for two weeks before they died. I assumed that was because of the limited read write settings. Or is it possible the low quality connection was to blame? Doesn't really matter they were only used to transfer settings. As any one whos had to support them knows, they often just die for no apparent reason. I'm not convinced that this is a system I'd want my data on.
Well.. maybe. Or Maybe not. But Definitely not sort of.
Except that Linux does preemptive swapping long before you run out of RAM, so that if something suddenly needs it, there's no huge delay whilst things get swapped out.
We did some basic research with Flash / HDD hybrids two years ago. As such disks weren't available, yet, we were using a real (Notebook)HDD and a IDE-Flash-HDD in parallel.
." in the root of a freshly booted system).
Our goal was to minimize energy consumption for mobile devices (i.e. not a lot of ram available for caching and the device is switched off repeatedly to save energy).
Using a very sensitive (time resolution wise) energy measurement device, we determined, that most energy was consumed by moving the heads into position. The difference was substancial: Around 0.63W for the HDD spinning idle and about 5.3W during heavy seeking (e.g. trigered by a "find
We decided to not use the flash as cache (flash is quick to read, but slow to write) and just put the relatively static metadata (directory structure, inode tables...) onto the Flash drive, but keep there files and data on the HDD, as each directory access triggered a expensive seek, but delivered very few data, compared to reading a file.
To simulate our mobile device we used a Linux-System limited to 32 ram to prevent the system from excessive caching.
We observed up to a factor 8 reduced energy consumption and as a surprising side effect a factor 6 increase in speed!
When increasing the available Ram, this advantage quickly vanished on repated benchmark runs, as the System appearently cached the directory structure very effectively. The first run after booting however still performed substancially better with our system, no matter the amout of ram. (And this was our target useage profile: Power on, search something, Power off).
As the code was an embarrassingly ugly hack to the ext2 driver and we envisioned trouble keeping the hdd with the data and the flash-hdd in sync, it was not persued further.
However with hybrid drives becoming available, it might be worth a more detailed analysis...