For drive-managed SMR drives, yes, but these seem to be host-managed ones. So the filesystem has to be aware of the zones.
> ... the filesystem has to be aware of the zones. Does that mean the drives simply will not work with an unaware filesystem or that it will work but performance will be poor?
They will not work at all. You have to issue special commands to the drive to be able to overwrite zones.
AFAIK new generation of tape has decent read-write speeds.
Decent for tape, or decent in general?
Tape sequential throughput is higher than HDD. It's the latency/seek time that gets you. But for a recovery scenario, you can hopefully just do a giant sequential scan.
For archival spinning rust is still massively more cost effective than SSDs while offering better performance than tape, especially for random access. I'm sure eventually SSDs will be cheap enough that HDD will go the way of the floppy but we're not there yet.
Is tape even cheaper than spinning rust? Last time I priced it, the per-GB costs were similar and the tape drives themselves are quite expensive. Tape is a more reliable backup, since the moving parts are not part of the storage, but it's not a cheaper backup.
You can have an amount of tapes as large as you wish to a single drive, meaning the cost of the tape drive becomes irrelevant after a certain amount of tapes.
HAMR and then HDMR are expected to allow data densities to increase by 5 to 10 times what is currently achievable. HAMR will probably start showing up in a year or two. Spinning drives are definitely not going away anytime soon unless there is a much more significant drop in the cost of SSDs.
Investment in new spinning drive technologies is going away though. Nobody wants to spend R&D money on coming up with patents and ideas which will be worthless in 5 years when SSD's overtake. Science investment requires a new technology to have a prospect of a return for most of the ~20 year patent lifespan for it to look like a good investment, and spinning bits of metal aren't that right now.
This isn't true, though.
Seagate and WD are spending mountains of cash to develop technologies like HAMR and MAMR which they expect to take them up to 40TB drives. These technologies require entirely new fabrication processes, etc. Very capital intensive.
For archival spinning rust is still massively more cost effective than SSDs while offering better performance than tape, especially for random access. I'm sure eventually SSDs will be cheap enough that HDD will go the way of the floppy but we're not there yet.
Is tape even cheaper than spinning rust? Last time I priced it, the per-GB costs were similar and the tape drives themselves are quite expensive. Tape is a more reliable backup, since the moving parts are not part of the storage, but it's not a cheaper backup.
I know Amazon prices aren't exactly perfect for enterprise storage costs, but they imply tape is at least 4x cheaper (assuming you are using enough to amortize the cost of the tape drive):
EDIT: Commenter below points out this 6.25TB tape is actualy 2.5TB physical -- still cheaper, in terms of $/GB, but not the 4x I mention above -- closer to 2x.
For archival spinning rust is still massively more cost effective than SSDs while offering better performance than tape, especially for random access. I'm sure eventually SSDs will be cheap enough that HDD will go the way of the floppy but we're not there yet.
Is tape even cheaper than spinning rust? Last time I priced it, the per-GB costs were similar and the tape drives themselves are quite expensive. Tape is a more reliable backup, since the moving parts are not part of the storage, but it's not a cheaper backup.
Depends on your volume. I don't know how much IT departments typically pay, but on Amazon, hard drives start at about $20-25/TB, whereas LTO-7 tapes are about $10-12/TB. That's a significant savings, but you need to be storing at least a few hundred TB before you recoup the cost of the tape drive.
Is tape even cheaper than spinning rust? Last time I priced it, the per-GB costs were similar and the tape drives themselves are quite expensive. Tape is a more reliable backup, since the moving parts are not part of the storage, but it's not a cheaper backup.
I know Amazon prices aren't exactly perfect for enterprise storage costs, but they imply tape is at least 4x cheaper (assuming you are using enough to amortize the cost of the tape drive): 6.25TB tape is $28 : https://www.amazon.com/HP-HEWC7976A-Ultrium-6-25TB-Cartridge... 6TB HDD is $120 : https://www.amazon.com/Seagate-Expansion-Desktop-External-ST... EDIT: Commenter below points out this 6.25TB tape is actualy 2.5…
That's an apples-to-oranges comparison. The "6.25TB" number for LTO tapes is assuming a fairly arbitrary 2.5:1 lossless compression ratio. The actual data capacity of the tape is only 2.5TB.
Raid 01 has its own risk. If the wrong two disks fail your entire array is toast
as opposed to raid 5 where if any two disks fail your array is toast, raid 6 increases this to 3. However both raid 5 and 6 have 2 huge problems: Data inflight at write time (power/hardware failures are more likely to corrupt the array, especially silently, which is the worst outcome). Parity calculations require you to spin up the whole raid5/6 array during a rebuild, massively increasing the chance of a multi drive…
The biggest problem with raid5 is that it is completely unprotected against silent corruption -- because there is no way for raid to know which data is the corrupted one (and as a result it has to decide whether the parity is correct or not -- though on most raid implementations just ignore silent corruption completely and so the parity is always assumed to be wrong in such cases).
So even if you rebuild an array, a bad drive might've blown away all of your data already. If you were to compare this with ZFS' "raid" Z1 (same parity, different design) you get detection and protection against silent data corruption.