this post was submitted on 24 Aug 2023
39 points (100.0% liked)

Asklemmy

43382 readers
1926 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

Does having swap memory damage SSDs too much, what do you think about it?

top 14 comments
sorted by: hot top controversial new old
[–] jet@hackertalks.com 10 points 1 year ago* (last edited 1 year ago) (2 children)

SSDs have a limited number of lifetime writes. Depending on the size of the swap file and the frequency in which you write to it you could go through your lifetime writes faster than you expect. You can keep an eye on it by looking at your drives health metrics. It will tell you how many writes it's used. Usually in a percentage term

If you pull up the data sheet for your drive it'll tell you the total number of writes it's rated for.

[–] Tanoh@lemmy.world 5 points 1 year ago (1 children)

SSDs have a limited number of lifetime writes.

Yes, but in the real world it is not a concern. The number of writes you can do is so huge that you will never come even near it, and the speed boost from SSD far far outweighs it.

[–] jet@hackertalks.com 2 points 1 year ago

https://techcommunity.microsoft.com/t5/storage-at-microsoft/understanding-ssd-endurance-drive-writes-per-day-dwpd-terabytes/ba-p/426024

Good summary.

It should last a long time but I have exhausted multiple disks. Just depends on your workloads and lifespan

[–] Quills@sh.itjust.works 1 points 1 year ago

I see, will look into that later thank you!

I have done some tests, and under low memory conditions, when frequently writing to the drive (especially with a high /proc/sys/vm/dirty_writeback_centisecs) swap can actually reduce the amount of writes to the drive. If you do have enough memory, swap is hardly used but still results in a noticeable speed improvement.

People think that Windows doesn’t do swap because on Windows it’s done automatically for you. Does it wear down the SSD? Yes, but so does every other write operation. Ideally, getting like 32gigs of ram so you’ll never have to use your swap is ideal(or at least use less), but not everyone can do that.

[–] dosse91@lemmy.trippy.pizza 7 points 1 year ago

I generally wouldn't recommend this, especially if you're using a cheaper SSD without cache or with QLC memory.

As you already know, cells on an SSD have limited write cycles (as low as 700 for QLC memory) and things like TRIM and wear leveling make sure that your SSD wears uniformly, but on cheaper SSDs the endurance is so low that without cache you will run into wearing issues in a few years of regular use or a few months if you're using it a lot or with swap enabled. I have seen it first hand many times working in a repair shop.

Keep in mind that endurance is not just a number of terabytes written that will cause your drive to suddenly switch to read-only mode, before it fails it will usually slow down to the point of making your PC unusable, I've seen SSDs write as slow as 9MB/s (specifically a Yucun drive from 2018 with TLC memory and no cache), it's not defective it just has to do a lot of error correction during writes.

Also, another issue that plagues cheap SSDs is that their controllers usually die well before the memory does, keep that in mind when choosing an SSD because this usually happens without early signs of failure or SMART errors.

So in general, unless your PC has a lot of RAM and that swap area will rarely be used, don't use swap and use zram instead (or just buy more RAM?).

[–] emptyother@programming.dev 6 points 1 year ago (1 children)

I did calculate it once on an older samsung drive. If you write multiple terabytes every day, you will cross samsungs estimated lifetime in 3 years.

I have no idea how much data a swap partition move per day but it can't be near that much?

[–] kev@lemmy.kevhomeit.trade 1 points 1 year ago (1 children)

But the swap partition is only used when you run out of ram right? If I have enough ram I should not worry about that.

[–] Wyrryel@pawb.social 5 points 1 year ago (1 children)

No, it's used much more often. How often is determined by a value called swapiness.

[–] jet@hackertalks.com 4 points 1 year ago

100% this. An aggressive memory manager could preemptively write everything from memory to swap even though it's still in memory, in case it has to evict it quickly.

[–] Kangie@lemmy.srcfiles.zip 6 points 1 year ago

Does having swap memory damage SSDs

Not to the point that it's worth worrying about. Seriously. Unless you're on something stupid like an SD card the write endurance of a SSD will be fine for the purposes of swap.

If you're regularly thrashing the swap it's still fine, but maybe rethink what you're doing anyway because there's probably a better way

[–] dan@upvote.au 4 points 1 year ago* (last edited 1 year ago)

I wouldn't worry too much about it, since good modern SSDs have such high TBW values that you could usually rewrite half the disk every day and it'd still survive the warranty period. SSDs often survive longer than the TBW value - that's just the amount that's warrantied, and manufacturers are very conservative in their warranties.

I've seen server systems that have been running 24/7 for over 10 years, with a consumer grade SSD (Samsung 830 EVO or equivalent), with swap enabled, and they're still running fine.

If you have plenty of RAM (i.e. you usually don't actually need swap), reduce the value of vm.swappiness in /etc/sysctl.conf. 10 is a good value in that case. It's a number between 0 and 100, where 0 means to never swap and 100 means to always swap (apps will be swapped out shortly after loading). The default on many distros is 60, which tends to start swapping quite a bit once the RAM is around 50% full).

[–] trimmerfrost@lemm.ee 1 points 1 year ago

Use Zram instead of Swap