Slashdot Mirror


Intel 34nm SSDs Lower Prices, Raise Performance

Vigile writes "When Intel's consumer line of solid state drives were first introduced late in 2008, they impressed reviewers with their performance and reliability. Intel gained a lot of community respect by addressing some performance degradation issues found at PC Perspective by quickly releasing an updated firmware that solved those problems and then some. Now Intel has its second generation of X25-M drives available, designated by a "G2" in the model name. The SSDs are technically very similar though they use 34nm flash rather than the 50nm flash used in the originals and reduced latency times. What is really going to set these new drives apart though, both from the previous Intel offerings and their competition, are the much lower prices allowed by the increased memory density. PC Perspective has posted a full review and breakdown of the new product line that should be available next week."

10 of 195 comments (clear)

  1. AnandTech writeup by tab_b · · Score: 5, Informative

    AnandTech has a nice writeup too. If the price curve drops like the first-gen X-25M we should all be happy pretty soon.

  2. I have a G1 Intel X-25M by ironwill96 · · Score: 5, Informative

    ..and it is fantastic. This was the largest performance increase i've seen on computers in over a decade. I was going to go with a Velociraptor because I knew how important drive access latency was but then Intel patched the fragmentation issue that was worrying me.

    I got mounting rails to fit the drive into my desktop case so i'm using it as my primary desktop drive for OS, some applications (Adobe Design Premium Suite runs great on it! Photoshop CS4 loads in 3-4 seconds!), and my main games. I then have a 1.5 TB secondary drive to store my data and music collection etc. I paid around $430 for my 80GB Intel X25-M so being able to get the 160GB for that same price is a fantastic improvement. I will definitely only be going SSD in my machines from now on. Everything loads faster, I get consistently fast boot times even after months of usage.

    It is amazing to see Windows XP load up and then all of the system tray apps pop up in a few seconds. You can immediately start loading things like e-mail and Firefox as soon as the desktop appears and there is no discernible lag on first load like you will get with SATA drives since they are still trying to load system tray applications.

    --
    "To strive, to seek, to find, and not to yield." - Tennyson
  3. Re:Oooh. by slyn · · Score: 4, Informative

    Last year when the x25-m first came out the 80 gig version cost $595, or just a little less than $7.50/gig. Now the same 1st gen drive costs $314 with a -10 dollar discount and free shipping on newegg, or about $3.92/gig.

    The new 2nd generation drive 80 gig drive sells for $225, or $2.81/gig. If it follows the same price trend as the 1st gen model around this time next year it should cost ~125 dollars, or about $1.53/gig.

    Here are the quick results of the xbench of my 5400rpm 160gig drive in my two year old macbook pro:

    Sequential
            Uncached Write 35.48 MB/sec [4K blocks]
            Uncached Write 38.42 MB/sec [256K blocks]
            Uncached Read 10.70 MB/sec [4K blocks]
            Uncached Read 40.71 MB/sec [256K blocks]
    Random
            Uncached Write 0.86 MB/sec [4K blocks]
            Uncached Write 21.42 MB/sec [256K blocks]
            Uncached Read 0.42 MB/sec [4K blocks]
            Uncached Read 16.66 MB/sec [256K blocks]

    Compare those to the results of the new drive here: http://www.anandtech.com/cpuchipsets/showdoc.aspx?i=3607&p=4

    Sequential read on the SSD is over 6x faster, and sequential write is 2x faster, but for the performance where it matters the difference is much more noticeable. Random read on the SSD is nearly 140x faster, and random write is over 40x faster.

    Couple that performance difference with the lower power consumption, lower noise, and higher threshold for damage, and its a no brainer as to what is the single most price-efficient possible upgrade you can make to a laptop to boost overall performance, responsiveness, and battery life.

    I wish I could justify buying one now, but I can't. However, 12 to 18 months from now I will probably be shopping around for a new laptop, and when I do I won't be settling for anything but a SSD. The benefits are just to great to ignore.

  4. Re:Oooh. Questions Still Remain... by LordKronos · · Score: 5, Informative

    This has been covered many times. It's a good number. I can't recall the article, but basically if you write 20GB per day, you'll get more than 5 years out of it thanks to wear leveling and extra space (SSDs actually have more capacity than they make available to you). Now, you might scoff at that but:
    1) 20GB/day is a lot for the typical user.
    2) People who routinely do more than 20GB/day probably need a lot more storage than SSDs currently provide (you are talking about filling the drive in 4 days) so you probably won't be using an SSD for those purposes anyway
    3) People who buy into SSDs at this point in time are typically more on the cutting edge, and are likely no have moved on before the drive wears out.
    4) When the drive finally does start having problems, my understanding is that it won't just fail and you'll have lost data. The failure should happen on write, and if it fails to write that will be detectable. If it writes successfully, then it should be readable. If it does fail, I believe that part will just be marked inaccessible and the data will be written somewhere else. The drive should (again, as far as I know) provide details of the failure to SMART and other disk utilities, so the problem can be detected before it progresses to a critical stage. This is much better than magnetic media, where the typical failure is that you go to read data and it is suddenly inaccessible.

    Of course, this is all just what I've read about previous generations. I have no data about the 34nm, but I have no reason to suspect it's any worse.

    PS. If you want to know how much you currently write to disk and you run a linux system, check out /proc/diskstats. The 10th column should be number of sectors written. Each sector is 512 bytes, so take value*512/1024/1024/1024 and you'll get the number of GB each device has written since bootup.

  5. Re:Would You Run DeFrag on an SSD? by sshir · · Score: 2, Informative

    Actually, surprisingly, you do need to run a kind of defragmentation.
    Just not the usual one.
    That's because writing in flash is in pages (4k?) but erase can be done only in blocks of 512k. So what happens is that controller have to do some insane job of joggling your writes and rewrites to spread or combine or whatever... on the fly...
    As a result, after intensive use, the address space become fragmented, just like memory heap in regular software after lots of allocations/deletions.
    Currently, the only way to restore performance is to issue low level format command - secure erase or some such.
    I think AnandTech wrote a big piece on it.

    The TRIM thing will help to delay (or even eliminate) the need for such drastic measures.

  6. Re:No Battery? by RoboRay · · Score: 2, Informative

    I think the UPS will cover that.

  7. Re:Oooh. Questions Still Remain... by PsychoKiller · · Score: 3, Informative

    Cool, thanks for the tip!

    cat /proc/diskstats | grep "[sh]d[a-z] " | awk '{print $10 "*512/1024/1024/1024"}' | bc -l

  8. Re:Oooh. Questions Still Remain... by LordKronos · · Score: 3, Informative

    Yes, I'm aware of what is in that document (that's how I figured out what the columns were to begin with). That document skips over the first 3 columns of the output for it's numbering (major device number, minor device number, and device name). It considers column 4 to be field 1. Not sure why they wrote the document that way, but PsychiKiller's command above uses awk to print out the 10th column, and that does indeed give you the number of bytes written.

  9. Re:Was 50 nm. WTF? by Anonymous Coward · · Score: 1, Informative

    Things like DRAM and flash are produced on totally separate process lines optimized for the kind of physical cells being made. They don't get the same processes as general logic used for CPUs and other separate controller circuits.

  10. Re:reliability? by AllynM · · Score: 5, Informative

    My personal X25-M (the one that started all of my reviews and Intel's subsequent patching of the fragmentation slowdown issue with the X25-M series), has had over 10 TB of data written to it. Most of those were sequential writes spanning the entire drive (HDTach RW passes). SMART attribute 5 on that drive is currently sitting at a whopping "2". That equates to only 8 bad flash blocks. It's actually been sitting ag 2 for a while now, so those blocks were likely early defects.

    I suspect it will take most users *way* over a year to write greater than 10 TB to their 80 GB OS drive. Considering mine is still going strong after that much data written, I don't think there's anything to worry about.

    Allyn Malventano
    Storage Editor, PC Perspective

    --
    this sig was brought to you by the letter /.