What allocation unit size to use when formatting a USB flash drive in FAT32?

For quick readers:

In general:

It depends on what kind of data you are intending to store on the device. For all data storage media types at all sizes:

  • Small cluster sizes are more suitable for many small files such as documents and plain text.
  • Large cluster sizes rather match large files. This is more multimedia-oriented.
  • In today's world, it makes no noticeable difference as it did decades ago. Feel free to use the pre-selected cluster size, which is usually 4 KB (4096 Bytes).

Details:

Let's dive into the details.

  • Even an empty file would take the full block size on FAT32. Newer and more modern file systems such as BtrFS and ext4 have more efficient ways of handling it. The latter one, and possibly both for instance are able to store multiple small files in one cluster. But that is also an ancient problem due to extremely developing storage sizes.
  • If a file grows beyond any single/multiplied cluster size (e.g. for 4KB cluster size: 4096, 8192, 12288, 16384, 20480, n×4096, etc…), and the next cluster after the file is already used by a different file, fragmentation happens.
  • FAT32 is the default and most commonly supported USB file system for embedded systems such as car radios and USB HiFi, Boomboxes for your music. It is possible, that specific devices suffer from compatibility problems with exotic cluster sizes. You may try out a few, but the default 4 KB (4096 Bytes) is the most likely size to be supported.

Because flash drives (i.e. SDD, SD, USB) have closely zero access times and no moving parts, file fragmentation is less of a problem there. There is no head that needs to jump to and seek the data block position LBA (logical block address) of where the file continues. This is normally no noticeable delay, but can turn into a minor problem, if an operating system is running on that disk, and needs access to many files and huge amounts of data in real-time.

But a larger cluster size results into fewer clusters holding more data, which makes it easier, thus faster for the computer to handle.

Today's computers are so fast, that, as already mentioned, the selected cluster size does not make much of a difference in average usage cases, especially for flash drives. Hard drives are prone to performance drops with increased file fragmentation, but modern operating systems and file systems regularly defragmentize by default, and even allow using RAM and auxiliary storage (ie.SSD) as block cache, where frequently used data will be stored onto for faster access.

That is the process of reversing the file fragmentation, simply said. The dedicated Wikipedia article shows a graphical animation, which may help your understanding.

Graphical animation: Illustration of file fragmentation and defragmentation.

Summary: It makes no relevant difference in today's world in your case.

Music, what you mentioned in your question, does not require extreme reading speeds at all. Even the reading speed of floppy disks is sufficient for music.


The Microsoft article Default cluster size for NTFS, FAT, and exFAT has this table for default cluster sizes :

image

As your drive has 3.63 GB in size, the default sector size is 4KB. As you can see, the larger the disk, the larger is the sector size suggested by Microsoft.

As far as how the sector size affects disk space usage, the Wikipedia article File Allocation Table - FAT32 has this calculation :

The boot sector uses a 32-bit field for the sector count, limiting the FAT32 volume size to 2 TiB for a sector size of 512 bytes and 16 TiB for a sector size of 4,096 bytes.

Therefore any sector size will allow the usage of your entire disk space.

Your choice should be :

  • If you have lots of small files, choose a suitable sector size to contain the majority of the files (unlikely for mp3 files)
  • Otherwise, stay with the default sector size of 4KB. Even if most of your files are much larger than 4KB, you will not gain anything from a larger sector size. Furthermore, the larger the sector size, the more disk space is lost as unused, since, statistically speaking, about half of the last sector of such a file will be allocated but never used. Sector size of 4KB is the most widely used size and so may be better supported on more devices.

When you format it, the disk is split in allocations units. Each not empty files on the disk will have one or more allocations units attributed to store its content. So, the smallest file will take 4KB on the disk. It could be useful to reduce it if you have a lot of small files. In your case, for the mp3 the default will be fine.

The general tab of file properties showing 4KB on disk size The general tab of file properties showing 4KB on disk size