Data Storage For Billions of Years: The 5D Technology That Could Change Everything
Hello HaWkers, imagine being able to store all of humanity's history on a small glass disk that would last longer than the Sun itself. It sounds like science fiction, but researchers just announced significant advances in a technology that promises exactly that.
5D crystal storage can preserve information for up to 13.8 billion years, practically the age of the universe. Let's understand how this technology works and why it could revolutionize the way we think about data preservation.
What Is 5D Storage
5D storage uses femtosecond lasers to create nanostructures in synthetic quartz glass, encoding data in five dimensions.
The five dimensions:
- X Position: Horizontal location on the disk
- Y Position: Vertical location on the disk
- Z Position: Depth within the material
- Orientation: Angle of the nanostructure
- Size: Dimension of the modification in the glass
How Data Is Written
The process uses extremely short laser pulses.
Technical characteristics:
- Laser pulse: 100 femtoseconds (0.0000000000001 seconds)
- Structure size: ~20 nanometers
- Density: 360 TB per 25mm disk
- Current write speed: ~230 KB/s
- Read speed: Similar to modern SSDs
💡 For comparison: A 25mm disk (coin size) can store the equivalent of 7,500 50GB Blu-rays.
Why It Lasts So Long
The extraordinary durability comes from quartz properties and the nature of the recording.
Extreme Resistance
Synthetic quartz is incredibly resistant to adverse conditions.
Tolerance limits:
| Condition | Tolerance Limit |
|---|---|
| Temperature | Up to 1,000°C |
| Pressure | Up to 10 tons |
| Water | Completely waterproof |
| Radiation | Space-level resistant |
| Magnetic fields | Immune |
| EMP (electromagnetic pulse) | Immune |
Comparison With Other Media
No other storage technology comes close to this durability.
Life expectancy by media:
- HDD: 3-5 years
- SSD: 5-10 years
- Magnetic tape (LTO): 15-30 years
- Blu-ray: 50-100 years
- M-DISC: 1,000 years
- 5D Crystal: 13,800,000,000 years
The difference is astronomical, literally.
Recent Advances
Researchers just announced significant improvements that bring the technology closer to practical use.
What Changed
2025 advances:
- Write speed increased 100x (from 2 KB/s to 230 KB/s)
- New more compact and accessible laser
- Simplified reading process
- Prototype recorder the size of a shoebox
- Cost per disk reduced from $10,000 to $500
Remaining Challenges
There are still obstacles to mass adoption.
Current limitations:
- Write speed still slow for large volumes
- Expensive recording equipment (around $50,000)
- No rewrite capability (write-once)
- Requires special equipment for reading
- Not suitable for frequently changing data
Practical Applications
Even with limitations, there are perfect use cases for this technology.
Historical Archives
Museums, libraries and governments can permanently preserve records.
Ideal candidates:
- Library of Congress (USA)
- Vatican Archives
- Birth and death records
- International treaties
- Digitized artwork
- Genetic code of endangered species
Catastrophic Backup
Companies can create backups that survive any disaster.
Protection scenarios:
- Fires (resists 1,000°C)
- Floods (waterproof)
- Earthquakes (no moving parts)
- Nuclear attacks (radiation resistant)
- Civilizational collapse (requires no electricity to preserve)
Developer Perspective
As technology professionals, this innovation raises interesting questions.
Impact on Systems Architecture
The existence of truly permanent storage changes how we think about data.
Design considerations:
// Conceptual model for "eternal" data
class EternalDataStore {
constructor() {
this.immutableLayers = [];
this.mutableCache = new Map();
}
// Data that never changes goes to permanent storage
async writeToEternal(data, metadata) {
const record = {
id: crypto.randomUUID(),
data: data,
metadata: {
...metadata,
createdAt: new Date().toISOString(),
checksum: await this.calculateChecksum(data),
format: 'v1.0', // Important for future reading
},
// Include decoding instructions
decodingInstructions: this.getDecodingSpec(),
};
return await this.crystalStorage.write(record);
}
// Information on how to read data in the future
getDecodingSpec() {
return {
encoding: 'UTF-8',
compression: 'none', // Simplicity for longevity
format: 'JSON',
schema: this.getCurrentSchema(),
humanReadableSpec: true, // Crucial for reading in thousands of years
};
}
async calculateChecksum(data) {
const encoder = new TextEncoder();
const dataBuffer = encoder.encode(JSON.stringify(data));
const hashBuffer = await crypto.subtle.digest('SHA-256', dataBuffer);
return Array.from(new Uint8Array(hashBuffer))
.map(b => b.toString(16).padStart(2, '0'))
.join('');
}
}This example shows how we can think about long-term immutable storage, including metadata for future reading.
Long-lived Data Formats
If data lasts billions of years, the format needs to be understandable.
Principles for eternal formats:
- Simplicity: The simpler, the easier to decode
- Self-describing: Include reading instructions in the data itself
- Plain text: Binaries are harder to interpret without context
- Redundancy: Multiple copies of critical metadata
- Examples included: Samples that demonstrate the format
// Format optimized for longevity
const longTermRecord = {
// Human-readable header
_format: {
name: 'Long Term Archive Format',
version: '1.0.0',
description: 'Self-describing JSON format for permanent storage',
encoding: 'UTF-8',
example: {
key: 'value',
number: 42,
nested: { works: true }
}
},
// Actual data
payload: {
title: 'US Constitution 1787',
content: '...',
language: 'en-US',
createdDate: '1787-09-17'
},
// Checksums for verification
integrity: {
algorithm: 'SHA-256',
payloadHash: 'abc123...',
fullDocumentHash: 'def456...'
}
};
The Rosetta Project
An interesting project already uses similar technology to preserve human knowledge.
Arch Mission Foundation
The foundation is creating "libraries" to survive human extinction.
What has been done:
- Disk sent to the Moon in 2019 (on Beresheet probe)
- Wikipedia copy in 5D
- Human genome preserved
- Classic literary works
- Instructions for decoding
Message For the Future
The project includes a "manual" for future civilizations.
Manual contents:
- Digital Rosetta Stone (translations in multiple languages)
- Numbers and basic math
- Periodic table
- Human anatomy
- Earth history
- Instructions to read the rest of the data
🌍 Reflection: If humanity disappears, these disks may be the only proof of our existence for billions of years.
Philosophical and Ethical Implications
Eternal storage raises profound questions.
The Right to Be Forgotten
If data lasts forever, how do you apply GDPR and the right to be forgotten?
Legal challenges:
- Personal data recorded permanently
- Impossibility of deletion after recording
- Jurisdiction over data that lasts longer than countries
- Responsibility for content in billions of years
What Deserves to Be Eternal
Not everything should last forever.
Suggested criteria:
- Scientific knowledge: Physics, chemistry, biology
- Historical records: Verified events
- Art and culture: Humanity's heritage
- Genetic code: Biodiversity preservation
- Fundamental technology: How to build basic tools
When Will It Be Available
The technology is in active development with estimated timeline.
Projected Roadmap
Expected evolution:
| Year | Milestone | Application |
|---|---|---|
| 2025 | Functional prototype | Laboratories |
| 2026 | 10x speed | Government archives |
| 2027 | Affordable cost | Large companies |
| 2028 | Compact equipment | Datacenters |
| 2030 | Wide adoption | Enterprise backup |
| 2035 | Consumer | Personal archives |
Companies Working on Technology
Main players:
- University of Southampton (pioneer)
- Microsoft (Project Silica)
- Hitachi (similar, quartz-based)
- Deep tech startups (several)
Current Alternatives
While 5D doesn't arrive, there are options for long-term storage.
M-DISC
Optical discs with stone layer that last 1,000 years.
Characteristics:
- Capacity: 25GB (BD) or 100GB (BD XL)
- Cost: ~$5 per disc
- Burner: Requires M-DISC compatible drive
- Reading: Any Blu-ray drive
LTO Tape
Still the best option for corporate archiving.
LTO-9 characteristics:
- Capacity: 18TB native (45TB compressed)
- Durability: 30+ years
- Cost: ~$0.01 per GB
- Speed: 400 MB/s
Conclusion
5D crystal storage represents a paradigm shift in data preservation. For the first time in history, we can genuinely create records that will last longer than Earth itself.
For developers, this opens new ways of thinking about data architecture, file formats and what is truly worth preserving. Even though the technology will take years to become popular, the principles behind it already teach us a lot about long-lived system design.
If you're interested in technological innovations and their impact on development, I recommend checking out the article Global Internet Traffic Grew 19% where we explore other trends shaping the future of the web.
Let's go! 🦅
📚 Want to Deepen Your JavaScript Knowledge?
This article covered storage technology, but there's much more to explore in modern development.
Developers who invest in solid, structured knowledge tend to have more opportunities in the market.
Complete Study Material
If you want to master JavaScript from basics to advanced, I've prepared a complete guide:
Investment options:
- 1x of $4.90 on card
- or $4.90 at sight
👉 Learn About JavaScript Guide
💡 Material updated with industry best practices

