Slashdot Log In
TB-Sized Solid State Drives Announced
Posted by
Zonk
on Fri Nov 16, 2007 10:45 AM
from the soon-to-be-implantable dept.
from the soon-to-be-implantable dept.
prostoalex writes "Several companies have announced solid state hard drives in excess of one terrabyte in size. ComputerWorld describes one from BitMicro that's just 3.5". Their flash drive will support up to 4 Gbps data transfer rate. From the article: 'SSDs access data in microseconds, instead of the millliseconds that traditional hard drives use to retrieve data. The BitMicro E-Disk Altima 4Gb FC delivers more than 55,000 I/O operations per second (IOPS) and has a sustained data transfer rate over 230MB/sec. By comparison, a fast hard drive for example will run at around 300 IOPS.'" Ah, the speed of tech. Seems like only last month we were talking about 500GB drives.
Related Stories
[+]
512GB Solid State Disks on the Way 186 comments
Viper95 writes "Samsung has announced that it has developed the world's first 64Gb(8GB) NAND flash memory chip using a 30nm production process, which opens the door for companies to produce memory cards with upto 128GB capacity"
[+]
Solid State Drives - Fast, Rugged, and Expensive 215 comments
Nick Breen writes "Are solid state drives becoming a reality? Loyd Case over at ExtremeTech has written an article concerning the current state of SSD with a comparison between a Samsung 64GB SATA and a Super Talent 32GB SATA. While they showed impressive speed rates when placed against a hard disk drive, the occasional sporadic statistic (and high cost) indicate they're not quite ready for the mainstream. Dell and Alienware have been shipping laptops with SSDs for months now, and Apple may be rolling out one of their own next year. Is the time of the solid-state drive almost at hand? Does anyone have any first-hand, practical experience with SSD?"
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
Don't Forget Fusion IO's PCIe Card Drive (Score:5, Informative)
The Texas Memory Systems datasheet claims 24 GB/second of random sustainable data bandwidth which is much higher than the Fusion IO card but it looks like they are serializing this possibly across multiple drives. They also claim higher (3.2 million) operations per second.
The BitMicro drive is groin grabbingly amazing in size but claims only 55k operations per second & sustained data transfer rate over 230MB/sec.
So what I would wager is that PCIe might provide more throughput than SATA but don't quote me on that. I'm interested to see where this goes & also curious to see whether we continue dumping drives on channels like the Texas Memory solution or if it just goes back to a server with a ton of PCIe slots on it and hot pluggable card swapping for 'drives.'
Worth revisiting is the fact that Fusion IO claims to be releasing the cards for sale next month. As we all know, sometimes it's just a case of who gets to market first that wins in the technology world.
Re: (Score:2)
Ouch!
Re:Don't Forget Fusion IO's PCIe Card Drive (Score:4, Informative)
The Texas Memory Systems RAMSan requires 2500W of power.
For the BitMicro SSD: 230MB/s >> 800 Mb/s card, and 55K IOPS >> 300 IOPS for todays hard drives.
It sounds to me like the BitMicro is a clear winner, especially considering that today's fastest HDs deliver about 300 IOPS and a max of about 40MB/s sustained data transfer. You can RAID the drives to increase performance, but I imagine the same will hold true of the SSDs. The only issue is price. The Texas Memory System is out of the question - it makes an Intel P4 Extreme look like a power miser.
Parent
Re:Don't Forget Fusion IO's PCIe Card Drive (Score:4, Funny)
It appears that one of these is NOT ready to be used in your next laptop in the near future!
Parent
Re:Don't Forget Fusion IO's PCIe Card Drive (Score:5, Insightful)
Parent
Clarification to the Summary required. (Score:5, Informative)
The BitMicro article goes on to say that the maximum capacity in a standard 3.5"x1" format is 640GB, so requiring around 2.5" for the full 1TB.
This is Slashdot, so we don't expect facts in the summary to be correct. However, this is still amazing progress.
Re: (Score:2)
Re:Clarification to the Summary required. (Score:5, Informative)
It's actually 24U, and it consists of (what appear to be) 8 3U racked computers that each manage 128GB of RAM storage for the network, and have a 4 drive hot-swap array for backup.
Source: http://www.texmemsys.com/files/f000225.pdf [texmemsys.com]
Parent
It's a Ram Disk. (Score:5, Informative)
So, it's a giant ram disk with either flash or hard drive backup. http://www.superssd.com/faq.htm [superssd.com]
Parent
In other news (Score:5, Funny)
Re:In other news (Score:5, Funny)
Parent
This is not a drive... its an array (Score:4, Informative)
Their systems have been in use for years by folks who need speed at any cost.
Now, the BitMicro drives... those look interesting. I wonder if I can slot them into my StorageTek 6140
Re: (Score:3, Interesting)
And again... (Score:4, Interesting)
the bus will be the bottleneck (Score:3, Insightful)
Once that happens, PCs will really start to get useful!
Re: (Score:3, Insightful)
Re: (Score:2)
Very nice (Score:4, Insightful)
Re: (Score:3, Insightful)
Hah. When I were a lad you could get a 7 MEGABYTE Winchester Hard Disk for a mere £3500 (what, about $5000?). (Source, 1981 copy of Personal Computer World).
That's about £10k in modern money (according to this calculator [thisismoney.co.uk] - a.k.a. $20k dollars (or $10k at Microsoft/Adobe screw-the-Brits rates).
Now, if you think that 1981 was, like, ancient history then GET OFF MY LAWN! If the usual growth rate applies, 1TB
Re: (Score:3, Informative)
ReadyBoost, et al (Score:5, Interesting)
I've heard about doing this in Linux by mounting a USB key and using it as extra swap. Here's how in Ubuntu (from http://ubuntuforums.org/showthread.php?t=395435:
1) Plug the USB drive in your USB connector;
2) If Ubuntu automount the device (usually in
3) sudo mkswap
4) sudo swapon -p 32767
"cat
Filename Type Size Used Priority
Quite obviously, performance is not the same as with real additional ram; however, I feel REAL gain in speed while using eclipse+tomcat+mysql for development on my laptop (which is equipped with just 512MB ram).
To turn it off, type:
"swapoff
Obviously you are going to be write limited due to the physical limitations of the flash disk, but reads will be very fast. ReadyBoost will keep a table of files that get read a lot, but written infrequently and then cache them on the flash device. It would probably be possible to do this at the disk driver level in linux with a fast database like BDB, keep a table of the last 1000 files read, if there's a write, remove them from the table. Then move those files up to the flash drive as a disk cache... there may be something like this already, like the Google Prefetch [google.com] project that's in the works.
Re: (Score:2, Insightful)
Unless there have been some really important changes in the performance of Flash memory, using it as swap would be like the second worst possible scenario in terms of it's life expectancy (using it for main memory would be the worst). Just how long is a typical Flash chip with a guaranteed average of 1 million write
Windows XP (Score:2, Informative)
One terrabyte! (Score:4, Funny)
Infiniband (Score:3, Informative)
TB-sized? (Score:5, Funny)
About time too (Score:2)
Re: (Score:2)
This means you could build a little >100G RAID of those for 800$ or so.
And I believe the prices go down really fast (I paid 70$ for 2G in May 2006 and thought it was a good deal. Now I could get 8G for that price).
I guess you will get your 100GB flash before September 2008
Enjoy!
Re: (Score:3, Informative)
Though the interface for connecting eighty of them onto a single SATA channel wouldn't be completely straightforward just from the point of view of I/O pins; each chip presents eight data pins and nine control pins, so you need a total of about 1500 pins on the disc-controller ICs.
For the early market you'd probably use FPGAs, you'd need six XC3S400A in one of the larger packages to get enough I/Os, which w
Quick Erase? (Score:4, Interesting)
I would like to see that feature incorporated into these consumer level drives. You never know when you might need to ditch that terabyte of pr0n in a hurry...
Re:Quick Erase? (Score:5, Funny)
Not to mention the British police will assume it's just encrypted and you'll get 5 years jail-time for not providing the key.
Parent
Re: (Score:2)
Right, because when your house gets raided and the police see you erased your hard drive they just turn around and say "well played". 'Obstruction of justice' ringing any bells?
Since when is pr0n illegal? However, since you want to go down that path...
If whatever your drive contained was 'illegal' or sufficiently incriminating, it may very well be that an "obstruction of justice" charge is preferable to whatever charges would have come about from confiscation of the actual drive contents.
Re: (Score:2)
Since when is pr0n illegal?
Well, why would you need to erase your entire drive for anyone besides the police? You'd have to have a serious lack of crisis management skills to erase your hard drive every time you heard your wife coming. It wouldn't exactly avert suspicion either...
'What are you doing in here honey? Why is the screen black?'
'Oh I'm just err.. reformatting it. Damn thing got corrupted'
'That new "solid state" thingie is useless, this is the third time this week you've had to do that!'
And yes, I know what you're thinking
Re: (Score:3, Insightful)
Well, why would you need to erase your entire drive for anyone besides the police?
Well, why would you need to encrypt your entire drive for anyone besides the police?
A laptop with a "quick erase" button would be useful to many businesses with people who travel in less than the safe regions. Same goes for people in less than free countries who are working for change. Full disk encryption doesn't stand up to rubber-hose cryptography very well.
I'm sure with more than 30 seconds to think about I could come up with any number of 'legitimate' uses.
Re: (Score:3, Funny)
Re: (Score:3, Insightful)
Re:Quick Erase? (Score:5, Funny)
All those zeroes... there must be something hidden in them. Produce the key at once!
Parent
EVE Online uses the TMS RamSan (Score:5, Interesting)
We've had a few EVE-Online stories lately, so I thought it might be interesting to some to point out that one of the users of the TMS setup is CCP Games, the makers of EVE Online. In fact if you click on 'success stories' in right sidebar of the first link in the summary you'll see a short article about CCP's first install of the TMS RamSan [superssd.com] a while back.
getoffmylawn (Score:4, Funny)
Re: (Score:2)
New! Improved! (Score:3, Interesting)
The marketing slogan should be... (Score:2)
{feel free to groan}
All This For the Modest Price Of.. (Score:4, Informative)
The starting capacity of a RamSan-400 (32GB) is $35,000. It includes:
-32GB DDRRAM storage
-one dual-ported 4Gb Fibre Channel controller
-hot swappable RAID 3 hard disk drives
-hot swappable and redundant power supplies
-redundant battery and fans
-IBM Chipkill in memory (redundant RAM)
-1 year return to factory warranty
Each additional 4Gb FC controller is $3,000 (up to 4 in each chassis).
The RamSan-400 can upgrade in 32GB increments for $18,000 (up to 128GB).
RamSan-400 (64GB) - $50,400
RamSan-400 (96GB) - $65,800
RamSan-400 (128GB) - $81,200
RamSan-500
The 1TB base-level system of a RamSan-500 (1TB SLC NAND Flash, 16GB DDR) is $200,000. It includes:
-one dual-ported 4Gb Fibre Channel controller
-hot swappable and redundant power supplies
-redundant battery and fans
-1 year return to factory warranty
The 2TB base-level system of a RamSan-500 (2TB SLC NAND Flash, 32GB DDR) is $300,000. It includes:
-two dual-ported 4Gb Fibre Channel controllers
-hot swappable and redundant power supplies
-redundant battery and fans
-1 year return to factory warranty
The RamSan-500 can upgrade DDR Cache.
-16GB to 32GB is $10,000
-32GB to 64GB is $20,000
Each additional 4Gb FC controller is $3,000 (up to 4 in each chassis).
Not Yet Convinced (Score:3, Insightful)
That's also why I don't have a plasma big screen yet. I'm using an alternative technology there as well.
Re: (Score:2)
Re: (Score:3, Informative)
Re: (Score:2)
Re: (Score:2)
My point is, is that if solid state drives had better known failure times, they could be better than the spinning platter types. Spinning platter drives tend to die whenever, for unknown reasons, and they also die if they just get too old. If using solid state drives could solve the first problem, and only have drives die at a known point in the future, whe
If you have to ask (Score:2)
That's so 1980's ;) (Score:3, Informative)
Actually,
1. Even for low level disk access, that hasn't been so since the days of MFM hard drives. Nowadays everything uses LBA (Logical Block Addressing) [wikipedia.org]. Meaning that when the computer wants a certain sector it tells the hard drive, quite literall