Menu
The Chia Plot
  • Blog
  • How-To
  • About
  • Contact
  • Security
  • Discord
The Chia Plot

TBW and SSD Lifetimes

Posted on May 22, 2021July 27, 2021 by Chris Dupres

Since Chia was announced there has been a huge focus on how quickly it destroys SSDs, and how fast they will reach their TBW or Tera Bytes Written thresholds. While this is true, and the amount of writes are very high it is still unlikely to kill a drive in a couple of weeks. Possible, and it will happen to some people, but it will not be the norm.

TBW is a useful metric to look at when buying a drive, but it is hardly the only metric that relates to drive lifespan. In fact, it doesn’t relate to the lifetime at all as TBW is a warranty value, and not a technical one. If the drive fails before it hits it TBW value inside the 3 or 5 year warranty that shipped with it the manufacturer will generally replace the drive. But drives don’t just die when they hit that value, otherwise manufacturers would have to replace a lot of drives under warranty they do not have to. The SMART attribute representing drive lifetime is, coincidentally, called Drive Remaining Life and that value is derived from the utilization of overprovisioned flash. The WDS100T3X drives, Western Digital SN750 Blacks, have a TBW of 600TB. As you can see, I am roughly 25% of the way through that while only consuming about 10% of the drive’s actual life as self reported.

Every SSD has some amount of physical NAND flash memory reserved for cell degradation so the size of the SSD remains constant. This will be more or less, maybe 16GB on a 512GB SSD for example. This allows the storage controller to move data around replace dying cells without reducing the overall size of the drive. Each NAND cell has a finite, and relatively small, number of physical write cycles available before dying so the more write the faster it dies. The smaller the overprovisioning space, the faster it dies. And how you use the drive will also significantly impact the life of the drive, and we will discuss some tips below to extend the life of your drive.

While plotting Chia, it is important to realize that the process is very hard on NAND flash for more than just the quantity of data writing. The method used by the Chia plotter is creating and destroying files on the drive constantly. When a file system deletes a file, it simply marks it in the file table as deleted, it does not remove it from the disk. Until the OS tells the drive that the space is empty, the drive will constantly shuffle that already-deleted data around trying to preserve it from deletion while the OS is trying to overwrite it. This produces an effect called Write Amplification, where for every write operation the SSD actually does 2 or 3 as it is moving ghost data around from cell to cell. In the 3rd revision of SATA a feature called TRIM was brought over from the SAS enterprise world where SSDs were more common at the time. What Trim does is it allows the OS to tell the SSD controller which NAND addresses have been deleted, letting the NAND controller reuse those cells without moving the data in them around.

Write Amplification has a significant effect on drive lifetime, but like other common “drive killers” it is mitigatable. Along with a few other easy enough suggestions, we can go a long way to preserving the life of your drives. The first piece of advice is to keep your drives cool. NAND operates best when operating between 40c and 55c and especially during high utilization activity like plotting. This does not require a heatsink, or specialized cooling in most cases. What it does need is airflow. Making sure your case has a good balanced set of intake and exhaust fans and that the air doesn’t get trapped will do it for most SSDs.

The second piece of advice is to not run them more than about halfway. When you are plotting 2 – 3 plots at a time on a 1TB NVME SSD and not fulling it to its brim you are leaving lots of space free for reallocation and should be minimizing write amplification to the best of your ability. It is tempting to use every available GB of plotting space if you have the CPU and Memory for it, but you will definitely reduce the life of drive and probably slow down the individual plots since these things run a bit slower the more full they are.

The third piece of advice is possibly the most important. Trim. Trim often, Trim everything. On my plotting machine I have 3 SSDs, 2 NVME Western Digital SN750 Blacks for plotting and one cheap 500GB SATA for temporary storage after the plotting process completes. I have a scheduled task that runs a powershell trim command against each of them every hour. This means that the free space on those drives the OS sees is actually free space, and the controller does not need to waste NAND lifetime or performance trying to preserve data you have already deleted.

This powershell snippet is as follows, and it is run as a scheduled task Once per day, repeating every hour.

$date = (New-TimeSpan -Start (Get-Date “01/01/1970”) -End (Get-Date)).TotalSeconds
Optimize-Volume -DriveLetter D -ReTrim -Verbose > “C:\trimlogs\Trim-D $($date).txt”
Optimize-Volume -DriveLetter E -ReTrim -Verbose > “C:\trimlogs\Trim-E $($date).txt”
Optimize-Volume -DriveLetter Y -ReTrim -Verbose > “C:\trimlogs\Trim-Y $($date).txt”
This powershell script will trim each of my SSDs in sequence, and put a file in C:\trimlogs with the date as a record Trim was run.

Edited

Thanks to u/akrobet on Reddit, i would like to clarify the above script block. This will create empty files with a timestamp to see that Trim was run but will still only show the verbose output in the console. If you would like to log the output, about 3kb a trim run, then run the scriptblock like so:

$date = (New-TimeSpan -Start (Get-Date “01/01/1970”) -End (Get-Date)).TotalSeconds
Optimize-Volume -DriveLetter D -ReTrim -Verbose 4>&1 | Out-File -FilePath “C:\trimlogs\Trim-D $($date).txt”
Optimize-Volume -DriveLetter E -ReTrim -Verbose 4>&1 | Out-File -FilePath “C:\trimlogs\Trim-E $($date).txt”
Optimize-Volume -DriveLetter Y -ReTrim -Verbose 4>&1 | Out-File -FilePath “C:\trimlogs\Trim-Y $($date).txt”

Related

Leave a Reply Cancel reply

Advertisement

Recent Posts

  • Crypto is burning down – Chia seems fine
  • Chia CAT upgrade fiasco part 2 – Was I wrong?
  • WTF just happened?? CAT1 to CAT2 “upgrade”
  • The era of the Chia NFT is upon us
  • Chia Blockchain 1.4.0 released – NFTs and DIDs oh my
  • Discussion
  • Facts About Farmers
  • How-To
  • Information
  • News
  • pools
  • Security
  • Trademark
  • Trading
  • Uncategorized

Dark Mode Switch

©2021 The Chia Plot - Donate XCH / MRMT / SBX @ xch1p4440d6zwu9ryta2vx073lq2ge3s29d37kskz6t34jp085e8srjqnk0gcr
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-advertisement1 yearThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Advertisement".
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
JSESSIONIDsessionUsed by sites written in JSP. General purpose platform session cookies that are used to maintain users' state across page requests.
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
CookieDurationDescription
na_id1 year 1 monthThis cookie is set by Addthis.com to enable sharing of links on social media platforms like Facebook and Twitter
na_rn1 monthThis cookie is used to recognize the visitor upon re-entry. This cookie allows to collect information on user behaviour and allows sharing function provided by Addthis.com
na_sc_e1 monthThis cookie is used to recognize the visitor upon re-entry. This cookie allows to collect information on user behaviour and allows sharing function provided by Addthis.com
na_sr1 monthThis cookie is set by Addthis.com. This cookie is used for sharing of links on social media platforms.
na_srp1 minuteThis cookie is used to recognize the visitor upon re-entry. This cookie allows to collect information on user behaviour and allows sharing function provided by Addthis.com
na_tc1 year 1 monthThis cookie is set by the provider Addthis. This cookie is used for social media sharing tracking service.
ouid1 year 1 monthThe cookie is set by Addthis which enables the content of the website to be shared across different networking and social sharing websites.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
CookieDurationDescription
d3 monthsThis cookie tracks anonymous information on how visitors use the website.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
CookieDurationDescription
__gads1 year 24 daysThis cookie is set by Google and stored under the name dounleclick.com. This cookie is used to track how many times users see a particular advert which helps in measuring the success of the campaign and calculate the revenue generated by the campaign. These cookies can only be read from the domain that it is set on so it will not track any data while browsing through another sites.
_ga2 yearsThis cookie is installed by Google Analytics. The cookie is used to calculate visitor, session, campaign data and keep track of site usage for the site's analytics report. The cookies store information anonymously and assign a randomly generated number to identify unique visitors.
_gat_gtag_UA_199099757_11 minuteThis cookie is set by Google and is used to distinguish users.
_gid1 dayThis cookie is installed by Google Analytics. The cookie is used to store information of how visitors use a website and helps in creating an analytics report of how the website is doing. The data collected including the number visitors, the source where they have come from, and the pages visted in an anonymous form.
CONSENT16 years 4 months 5 daysThese cookies are set via embedded youtube-videos. They register anonymous statistical data on for example how many times the video is displayed and what settings are used for playback.No sensitive data is collected unless you log in to your google account, in that case your choices are linked with your account, for example if you click “like” on a video.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
CookieDurationDescription
advanced_ads_browser_width1 monthThis cookie is set by Advanced ads plugin.This cookie is used to measure and store the user browser width for adverts.
anj3 monthsNo description available.
CMID1 yearThe cookie is set by CasaleMedia. The cookie is used to collect information about the usage behavior for targeted advertising.
CMPRO3 monthsThis cookie is set by Casalemedia and is used for targeted advertisement purposes.
CMPS3 monthsThis cookie is set by Casalemedia and is used for targeted advertisement purposes.
CMRUM31 yearThis cookie is set by Casalemedia and is used for targeted advertisement purposes.
CMST1 dayThe cookie is set by CasaleMedia. The cookie is used to collect information about the usage behavior for targeted advertising.
DSID1 hourThis cookie is setup by doubleclick.net. This cookie is used by Google to make advertising more engaging to users and are stored under doubleclick.net. It contains an encrypted unique ID.
i1 yearThe purpose of the cookie is not known yet.
IDE1 year 24 daysUsed by Google DoubleClick and stores information about how the user uses the website and any other advertisement before visiting the website. This is used to present users with ads that are relevant to them according to the user profile.
KADUSERCOOKIE3 monthsThe cookie is set by pubmatic.com for identifying the visitors' website or device from which they visit PubMatic's partners' website.
KTPCACOOKIE1 dayThis cookie is set by pubmatic.com for the purpose of checking if third-party cookies are enabled on the user's website.
mc1 year 1 monthThis cookie is associated with Quantserve to track anonymously how a user interact with the website.
test_cookie15 minutesThis cookie is set by doubleclick.net. The purpose of the cookie is to determine if the user's browser supports cookies.
uid1 year 1 monthThis cookie is used to measure the number and behavior of the visitors to the website anonymously. The data includes the number of visits, average duration of the visit on the website, pages visited, etc. for the purpose of better understanding user preferences for targeted advertisments.
uuid3 monthsTo optimize ad relevance by collecting visitor data from multiple websites such as what pages have been loaded.
uuid23 monthsThis cookies is set by AppNexus. The cookies stores information that helps in distinguishing between devices and browsers. This information us used to select advertisements served by the platform and assess the performance of the advertisement and attribute payment for those advertisements.
VISITOR_INFO1_LIVE5 months 27 daysThis cookie is set by Youtube. Used to track the information of the embedded YouTube videos on a website.
YSCsessionThis cookies is set by Youtube and is used to track the views of embedded videos.
yt-remote-connected-devicesneverThese cookies are set via embedded youtube-videos.
yt-remote-device-idneverThese cookies are set via embedded youtube-videos.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
CookieDurationDescription
__gpi1 year 24 daysNo description
adImpCountpastNo description
C3UID5 yearsNo description available.
C3UID-9245 yearsNo description
fc5 months 27 daysNo description available.
pfpastNo description
pxs5 months 27 daysNo description available.
SAVE & ACCEPT
Powered by CookieYes Logo