Compare commits
3 commits
f1b7ecdf94
...
2ab1f089c9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ab1f089c9 | ||
|
|
673651a810 | ||
|
|
75fe386ef6 |
3 changed files with 71 additions and 0 deletions
17
CITATION.cff
Normal file
17
CITATION.cff
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
cff-version: 1.2.0
|
||||
title: NASdisks NAS Drive Data
|
||||
message: "If you use this dataset, please cite it and link to nasdisks.com."
|
||||
type: dataset
|
||||
authors:
|
||||
- name: NASdisks
|
||||
url: "https://www.nasdisks.com/data/"
|
||||
repository-code: "https://github.com/deeddy/nas-drive-data"
|
||||
license: CC-BY-4.0
|
||||
keywords:
|
||||
- NAS
|
||||
- hard drives
|
||||
- CMR
|
||||
- SMR
|
||||
- Backblaze
|
||||
- reliability
|
||||
- storage
|
||||
|
|
@ -1,5 +1,9 @@
|
|||
# NAS drive dataset
|
||||
|
||||
[](https://doi.org/10.5281/zenodo.21225049)
|
||||
|
||||
**Cite:** NASdisks (2026), *NAS Drive Dataset*, Zenodo. doi:[10.5281/zenodo.21225049](https://doi.org/10.5281/zenodo.21225049)
|
||||
|
||||
An original dataset of NAS and enterprise hard drives: full specs, **CMR vs SMR classification**, and **annualized failure rates** derived from Backblaze Drive Stats. 149 drives.
|
||||
|
||||
The core of this dataset - the CMR/SMR classification and drive specs - is our own original research, compiled from manufacturer datasheets and model-number analysis. Manufacturers do not publish a unified CMR/SMR list; we built one. The failure-rate column enriches it with rates derived from Backblaze's raw Drive Stats data (our computation, their underlying counts).
|
||||
|
|
|
|||
50
datapackage.json
Normal file
50
datapackage.json
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "nas-drive-data",
|
||||
"title": "NASdisks NAS Drive Data",
|
||||
"description": "Open dataset of currently-sold NAS and enterprise hard drives: full specs (capacity, RPM, cache, interface, form factor), verified CMR vs SMR, idle/seek acoustic noise, helium/air fill, drive class, and real-world annualized failure rates (AFR) computed from Backblaze Drive Stats. Drive specs and CMR/SMR are CC BY 4.0; AFR fields are cited to Backblaze Drive Stats, not relicensed.",
|
||||
"homepage": "https://www.nasdisks.com/data/",
|
||||
"licenses": [
|
||||
{ "name": "CC-BY-4.0", "title": "Creative Commons Attribution 4.0 International", "path": "https://creativecommons.org/licenses/by/4.0/" }
|
||||
],
|
||||
"keywords": ["nas", "hard drives", "hdd", "cmr", "smr", "backblaze", "reliability", "annualized failure rate", "storage", "price per tb"],
|
||||
"resources": [
|
||||
{
|
||||
"name": "drives",
|
||||
"title": "NAS & enterprise hard drives (full dataset)",
|
||||
"path": "https://www.nasdisks.com/data/drives.csv",
|
||||
"format": "csv",
|
||||
"mediatype": "text/csv",
|
||||
"schema": {
|
||||
"fields": [
|
||||
{ "name": "model", "type": "string" },
|
||||
{ "name": "brand", "type": "string" },
|
||||
{ "name": "line", "type": "string" },
|
||||
{ "name": "capacity_tb", "type": "number" },
|
||||
{ "name": "rpm", "type": "integer" },
|
||||
{ "name": "cache_mb", "type": "integer" },
|
||||
{ "name": "interface", "type": "string" },
|
||||
{ "name": "form_factor", "type": "string" },
|
||||
{ "name": "recording_tech", "type": "string", "description": "cmr or smr" },
|
||||
{ "name": "acoustic_idle_db", "type": "number" },
|
||||
{ "name": "acoustic_seek_db", "type": "number" },
|
||||
{ "name": "is_helium", "type": "boolean" },
|
||||
{ "name": "drive_class", "type": "string" },
|
||||
{ "name": "in_production", "type": "boolean" },
|
||||
{ "name": "also_sold_as", "type": "string" },
|
||||
{ "name": "afr_pct", "type": "number", "description": "Backblaze annualized failure rate (%)" },
|
||||
{ "name": "reliability_drive_count", "type": "integer", "description": "Backblaze" },
|
||||
{ "name": "reliability_drive_days", "type": "integer", "description": "Backblaze" },
|
||||
{ "name": "reliability_failures", "type": "integer", "description": "Backblaze" },
|
||||
{ "name": "reliability_source", "type": "string" }
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "drives-json",
|
||||
"title": "Full dataset (JSON, with license + reliability metadata)",
|
||||
"path": "https://www.nasdisks.com/data/drives.json",
|
||||
"format": "json",
|
||||
"mediatype": "application/json"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue