Live Long and Prosper: The Logical Page

Computers are all about abstraction. In the early days of computing you had to write assembly code to get your hardware to do anything. Programming languages like C and C++ created a layer of abstraction between the programmer and the hardware, simplifying the development process. The key word there is simplification. You can be more efficient writing directly for the hardware, but it’s far simpler (and much more manageable) to write high level code and let a compiler optimize it.

The same principles apply within SSDs.

The smallest writable location in NAND flash is a page; that doesn’t mean that it’s the largest size a controller can choose to write. Today I’d like to introduce the concept of a logical page, an abstraction of a physical page in NAND flash.

Confused? Let’s start with a (hopefully, I'm no artist) helpful diagram:

On one side of the fence we have how the software views storage: as a long list of logical block addresses. It’s a bit more complicated than that since a traditional hard drive is faster at certain LBAs than others but to keep things simple we’ll ignore that.

On the other side we have how NAND flash stores data, in groups of cells called pages. These days a 4KB page size is common.

In reality there’s no fence that separates the two, rather a lot of logic, several busses and eventually the SSD controller. The latter determines how the LBAs map to the NAND flash pages.

The most straightforward way for the controller to write to flash is by writing in pages. In that case the logical page size would equal the physical page size.

Unfortunately, there’s a huge downside to this approach: tracking overhead. If your logical page size is 4KB then an 80GB drive will have no less than twenty million logical pages to keep track of (20,971,520 to be exact). You need a fast controller to sort through and deal with that many pages, a lot of storage to keep tables in and larger caches/buffers.

The benefit of this approach however is very high 4KB write performance. If the majority of your writes are 4KB in size, this approach will yield the best performance.

If you don’t have the expertise, time or support structure to make a big honkin controller that can handle page level mapping, you go to a larger logical page size. One such example would involve making your logical page equal to an erase block (128 x 4KB pages). This significantly reduces the number of pages you need to track and optimize around; instead of 20.9 million entries, you now have approximately 163 thousand. All of your controller’s internal structures shrink in size and you don’t need as powerful of a microprocessor inside the controller.

The benefit of this approach is very high large file sequential write performance. If you’re streaming large chunks of data, having big logical pages will be optimal. You’ll find that most flash controllers that come from the digital camera space are optimized for this sort of access pattern where you’re writing 2MB - 12MB images all the time.

Unfortunately, the sequential write performance comes at the expense of poor small file write speed. Remember that writing to MLC NAND flash already takes 3x as long as reading, but writing small files when your controller needs large ones worsens the penalty. If you want to write an 8KB file, the controller will need to write 512KB (in this case) of data since that’s the smallest size it knows to write. Write amplification goes up considerably.

Remember the first OCZ Vertex drive based on the Indilinx Barefoot controller? Its logical page size was equal to a 512KB block. OCZ asked for a firmware that enabled page level mapping and Indilinx responded. The result was much improved 4KB write performance:

Iometer 4KB Random Writes, IOqueue=1, 8GB sector space Logical Block Size = 128 pages Logical Block Size = 1 Page
Pre-Release OCZ Vertex 0.08 MB/s 8.2 MB/s

A Quick Flash Refresher The Cleaning Lady and Write Amplification
Comments Locked

295 Comments

View All Comments

  • Abjuk - Wednesday, September 2, 2009 - link

    Agreed CM, my current project at work takes about six minutes to build from scratch and CPU usage never gets above about 35%. The process is totally IO bound.

    It really depends on whether you have several large source files or several hundred small ones.
  • Weyzer - Tuesday, September 1, 2009 - link

    Good article and testing, but why was the Crucial M225 not mentioned at all? It's performance is similar to the vertex drives, I know, but I think it could have been mentioned somewhere, if it is in the good or bad range.
  • jasperjones - Tuesday, September 1, 2009 - link

    javascript:link('frmText') $997 @ Newegg omgomgomg

    Needless to say, that price will come down quickly. So more seriously, after reading the article I really feel I understand better what to look for in an SSD. Thanks!
  • paesan - Tuesday, September 1, 2009 - link

    Wow, does NE really think that anyone will buy the Intel drive at that price. OMG!!! Funny thing, it is in stock and it says limit 1 per customer. Lol
  • CList - Tuesday, September 1, 2009 - link

    Obviously someone is buying them at that price or they'd lower it. The people who can't wait two or three weeks and are willing to be gouged for these drives are the ones that allow NewEgg to give us low margins on other products while not going out of business :D

  • ravaneli - Tuesday, September 1, 2009 - link

    I just decided to buy one and when I opened newegg i couldn't believe my eyes. I hope that is only because they have a few drives left, and once Intel pumps up some stock in the retailers the prices will go back to Intel's retail.

    Does anyone know what are the production capabilities of Intel's SSD factories? I don't want to wait a whole year until the market saturates.
  • LazierSaid - Tuesday, September 1, 2009 - link

    This article was so good that Newegg doubled their X25M G2 prices overnight.

  • medi01 - Tuesday, September 1, 2009 - link

    Yep, very impressive advertisement indeed.
  • HVAC - Tuesday, September 1, 2009 - link

    I'd rather have ewoks in the sequels than Jar-jar ...
  • Naccah - Tuesday, September 1, 2009 - link

    Newegg's prices on all the Intel SSDs skyrocketed. The X-25 G2s are $499 now. Is this price a reflection of the high demand or did Intel change the price again?

Log in

Don't have an account? Sign up now