Used Enterprise SSDs for Homelabs: Are eBay Data Center Drives Worth the Risk?
Used data center SSDs on eBay look like an absurd deal. Here's what you actually get, what the endurance numbers really mean, and when a new consumer drive is the smarter buy.
This post contains affiliate links. If you buy through them, I earn a small commission at no extra cost to you.
Search eBay for “enterprise SSD” and the prices stop making sense. A 1.92TB data center drive for $55. A 3.84TB SAS drive for $90. Meanwhile a new 2TB consumer NVMe costs about the same as the 1.92TB enterprise drive, and the enterprise one has a five-year warranty printed on a label that expired in 2021.
This is one of the most common questions in r/homelab, and the answers are usually split between “enterprise drives are built better, buy them all day” and “you’re buying someone else’s worn-out garbage.” Both camps are partly right, which is why the question keeps coming back.
Here’s the actual math.
What You’re Actually Buying
A used enterprise SSD is a drive pulled from a server, a SAN, or a decommissioned data center rack. It was built to a different spec than the drive in your laptop:
- Power loss protection. Onboard capacitors that flush the write cache to NAND if power drops. Consumer drives almost never have this.
- Higher endurance NAND. Often eMLC or high-grade TLC rated for far more drive writes per day than consumer parts.
- Consistent write performance. Enterprise drives have large over-provisioned areas so they don’t collapse into a slow crawl once the SLC cache fills. Consumer drives absolutely do.
- Real spec sheets. Sustained IOPS and latency numbers that the manufacturer commits to, not “up to” marketing figures.
Those are genuine engineering advantages, and they matter for a homelab more than people expect. Proxmox with ZFS, a Postgres container, and a few VMs all doing small random writes is a workload closer to a server than to a gaming PC.
What you’re also buying: an unknown number of power-on hours, no warranty, and a seller whose “tested, healthy” claim is worth exactly nothing until you verify it yourself.
The Endurance Numbers Nobody Reads Correctly
This is where most of the fear is misplaced.
Enterprise SSDs are rated in DWPD, drive writes per day, over a five-year warranty period. A 1.92TB drive rated at 3 DWPD is warrantied for roughly 10.5 petabytes of writes. Consumer drives are rated in TBW, total bytes written, and a 2TB consumer NVMe is typically rated somewhere around 1,200TB.
So the used enterprise drive can have burned through eight times the entire lifetime rating of a new consumer drive and still have more endurance headroom left.
| Drive class | Typical rating | Lifetime writes |
|---|---|---|
| Consumer 2TB NVMe (new) | ~600 TBW per TB | ~1,200 TB |
| Enterprise 1.92TB, 1 DWPD | 1 write/day for 5 yr | ~3,500 TB |
| Enterprise 1.92TB, 3 DWPD | 3 writes/day for 5 yr | ~10,500 TB |
And here’s the part that reframes the whole decision: a typical homelab writes far less than people assume. Proxmox host logs, a handful of Docker containers, a Jellyfin metadata database, and nightly backups land most setups somewhere in the range of 10 to 40GB of writes per day. At 30GB/day you would need roughly 95 years to exhaust 1 petabyte.
The endurance is almost never what kills a used enterprise SSD. Age, controller failure, and firmware quirks are the real risks. Which brings us to the actual problem.
The Real Risks
No warranty, and no recourse. eBay buyer protection covers “dead on arrival,” not “died in month seven.” A new consumer drive that fails in year three gets replaced. A used enterprise drive that fails in year three is $55 you spent and lost.
Unknown provenance. Some sellers pull drives from properly decommissioned gear. Others pull them from a bin, wipe the SMART data if they can, and list them as “like new.” You cannot tell which is which from the listing photos.
SAS is not SATA. This is the single most common expensive mistake. A huge share of the cheapest enterprise SSDs on eBay are SAS drives, and a SAS drive will physically slot into a SATA port but will not work. You need an HBA card, typically an LSI 9207-8i or similar flashed to IT mode, plus SFF-8087 to SATA breakout cables. That adds $40 to $70 and a PCIe slot to a build, which most mini PCs do not have. If you are running a homelab on a used mini PC, SAS drives are simply not an option.
U.2 has the same problem. Cheap U.2 enterprise NVMe drives need an adapter and a spare PCIe lane. Great in a tower, useless in a small form factor box.
Power and heat. Enterprise drives are built for chassis with real airflow. A 2.5” SATA data center drive idling in a fanless mini PC will run hot, and heat is what actually degrades NAND.
How to Check a Drive Before You Trust It
Buy it, then verify before you put anything on it that matters. On Linux:
sudo apt install smartmontools
sudo smartctl -a /dev/sda
The four fields that matter:
- Power On Hours. Under 20,000 is fine. Over 40,000 means the drive has been running continuously for four and a half years and you should treat it as a spare, not a primary.
- Percentage Used (NVMe) or Media Wearout Indicator (SATA). This is the drive’s own estimate of consumed endurance. Under 10% is genuinely lightly used. Over 80% and you are buying a coaster.
- Total LBAs Written / Data Units Written. Multiply out to get actual terabytes written and compare against the rated endurance. This is the honest number.
- Reallocated Sector Count / Media Errors. Should be zero. Anything above zero on an SSD is a reason to return it immediately.
Then run a full surface pass before it goes into production. A badblocks -wsv run on a 2TB drive takes most of a day, and it is a day well spent. If the drive is going to fail early, this is usually when.
If SMART looks wrong or the seller wiped it, return the drive inside the eBay window. Do not talk yourself into keeping a drive with a suspicious SMART table because it was cheap.
When Used Enterprise Wins
You need a lot of capacity for VM and container storage. This is the strongest case. 1.92TB or 3.84TB SATA enterprise drives at $30 to $50 per TB beat new consumer pricing on capacity, and the power loss protection genuinely matters for ZFS and database workloads.
You’re running a ZFS SLOG or L2ARC device. Power loss protection is not optional for a SLOG. A small enterprise drive with PLP is the correct and cheap answer, and a new consumer drive is the wrong tool at any price.
You have a tower or SFF case with real airflow and spare SATA ports. The physical constraints are the deciding factor more often than the drive specs are.
You have backups. If a drive dying means restoring from your Proxmox snapshots and backups and losing an evening, used enterprise is a fine bet. If it means losing photos, it isn’t.
When to Just Buy New
You have one drive and no redundancy. Single points of failure should not also be gambles. Buy new.
Your host is a mini PC. One M.2 slot, maybe one 2.5” bay, no PCIe, no airflow. Nearly every advantage of enterprise drives evaporates in that chassis, and a new consumer NVMe like the Crucial P3 Plus 2TB is faster, cooler, and warrantied.
You value the warranty more than $60. A new Crucial or WD 2TB NVMe runs a five-year warranty and current firmware. That is a real product with a real support path behind it.
You don’t want a project. Sourcing, SMART-checking, badblocks-testing, and possibly returning drives is a few hours of work. If your homelab time budget is better spent on the services you actually want to run, pay the new-drive premium and move on.
What I’d Actually Do
If I were spending $200 on homelab storage today:
- One host, no redundancy: one new 2TB consumer NVMe. Done. Don’t overthink it.
- A tower with 4+ SATA ports: four used 1.92TB SATA enterprise drives, SMART-checked, in a ZFS mirrored pair of vdevs. About 3.8TB usable with redundancy, for less than a new 4TB NVMe costs.
- Mixed setup: new NVMe for the boot drive and Docker volumes, used enterprise SATA for bulk VM storage and backup targets.
That last one is the pattern most established homelabs converge on, and it’s the same logic behind the DAS versus NAS decision: put fast, warrantied, new storage where failure is disruptive, and cheap high-capacity storage where failure is merely annoying.
Used enterprise SSDs are not a scam, and they’re not free performance either. They’re a capacity play with a labor cost and a redundancy requirement attached. If you’re willing to pay that cost, the price per terabyte is genuinely excellent. If you aren’t, a new consumer drive is not the naive choice people make it out to be.
For the wider picture on how storage fits into a build budget, see homelab storage options and what a homelab actually costs.