Given that I want to create my own database store, what size should the files be to avoid fragmentation and filesystem overhead, especially in the light of the "new" SSDs?

Would a lot of 64 kbyte files be ok, for instance? Or would that be using up file (inode) entries at an alarming rate?

Is it better to use a huge file and access it only within 64 kbyte boundaries?

(I am using the 64 kbyte as an example. Maybe 4kbyte is the magic size? Also tell me if I am rambling or if I made my point across.)

link|improve this question

actually fragmentation doesn't matter for ssd drives, there is no read head that jumps around on any disk in fact it is recommended to turn off defragmentation for ssd drives. – Anders K Nov 18 '11 at 9:23
@AndersK, aha, thansk. – Amigable Clark Kant Nov 18 '11 at 9:27
1  
This is a question how to design the storage access pattern of a software. Please do not close it. – dmeister Nov 19 '11 at 10:15
feedback

closed as off topic by Andras Zoltan, martin clayton, skaffman, Brad Larson, BalusC Nov 23 '11 at 23:52

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 1 down vote accepted

Good questions.

The flash in modern SSD is usually(!) are structured as follows: A page size of 2K or 4K than can be written and 256K erase blocks. A page cannot be overwritten without erasing it before. But the erase operation only works on full erase blocks. However, each erase operations takes a long time (in contrast to other IO operations) and slowly wears out the SSD.

A component of the SSD controller called FTL (Flash Transition Layer) is used to provide the illusion of a HDD-like block device on the flash semantics. SSD can be used like HDD, but to get the most out of it (and to do it for a long time) a software IO design incorporating the knowledge of the storage works best.

However, the SSD controller logic is usually not known. So it might differ from SSD to SSD, but here are a few rules of thumb:

If possible I would align my IO pattern and the file sizes to full erase blocks (or a multiple of it). So writing a file of 256K uses a full erase block without any internal fragmentation. Smaller files like 64K would use only a portion of it. Writing data to the rest of the block might lead to a read-modify-write cycle. This means that the complete block is read, modified and then written to another location. Very expensive.

This is not a problem when the SSD is empty (because the controller has enough unused blocks), but may become an issue if the SSD is full and also heavily used. Or if IO pattern are usually very small writes and the SSD becomes fragmentated. So that the FTL has a harder time finding consecutive free flash pages.

As a side note: the system administrator should align the filesystem to the SSD erase block boundaries, it's really important.

link|improve this answer
feedback

This is made even worse since the system's view of any modern disk does not match actual locations on the physical device. Modern disks, both SSDs and spinning ones, put sectors where they desire.

Since SSDs have wear leveling sector 27 might not be anywhere close to sector 28, and, even if they started out 'close' together might not be close after a bit of writing. Plus, of course, the concept of 'close' with an SSD is kind of an odd concept since there is no seek time.

I would shy away from any design that has loads and loads of files, if the design is just as simple with fewer big files. If, on the other hand, you find yourself writing what amounts to a file system yourself to do the mapping to blocks in your single big file then unless your problem has very specific features it is probably better to take advantage of all the time and thought that has gone into existing file system designs.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.