2

From my understanding, partitions are allocated based on the offsets. So it's location on drive is fixed. So, Over an SSD, Does small partitions with lot of re-writes (say - swap partition on linux) cause a week point on the drive and let it wear out quickly.

Other way said, does SSD's wear-leveling work within a partition or across partitions i.e entire drive.

samshers
  • 350
  • 5
  • 15

1 Answers1

2

So, Over an SSD, Does small partitions with lot of re-writes (say - swap partition on linux) cause a week point on the drive and let it wear out quickly.

No it won't wear out quicker just because the region the writes were done in was smaller because wear levelling works across the whole drive. See section 3.4 Wear levelling of Coding for SSDs. The physical region used for storing the data is distinct from the logical block address (LBA) that the OS writes and a mapping (the Flash Translation Layer) is kept of logical blocks to physical addresses by the SSD itself.

Anon
  • 1,431