Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Futures Kickoff
Get prepared for your futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to experience risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Launchpad
Be early to the next big token project
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
Sui's Tidehunter: Redefining Database Efficiency Through SSD Optimization
Sui has unveiled Tidehunter, a purpose-built database architecture designed to unlock the full potential of modern SSD hardware. This technical innovation directly addresses the traditional bottleneck in blockchain databases: write operation contention. By restructuring how data flows through the system, Tidehunter represents a significant shift in how blockchain platforms can leverage contemporary storage technology to achieve unprecedented throughput and reliability.
Architectural Innovations in Write Path Processing
At the heart of Tidehunter lies a fundamentally different approach to handling write operations. Instead of scattering write requests across multiple system components, all write operations funnel through a unified, high-speed lock-free write-ahead log (WAL). This design choice enables the database to process millions of operations per second—a performance threshold that would overwhelm conventional database architectures. The lock-free mechanism eliminates contention between concurrent write threads, ensuring that each operation completes without waiting for others to finish.
Memory-Mapped Strategy Replaces Costly System Calls
The most innovative aspect of Tidehunter’s design is its replacement of traditional system calls with writable memory-mapped files. In conventional databases, each write operation triggers a system call—a context switch that introduces latency and CPU overhead. By mapping file I/O directly into application memory space, Tidehunter bypasses this expensive operation entirely. Data moves directly from the application buffer to the SSD through kernel-bypass pathways, resulting in dramatically lower overhead and faster persistence initiation.
Asynchronous Persistence with Background Thread Management
Rather than blocking application threads during write operations, Tidehunter delegates persistence responsibilities to dedicated background service threads. These threads handle file growth management, metadata synchronization, and periodic flushing to persistent storage—all without stalling the main write path. This asynchronous architecture ensures that the database achieves consistent, high-speed throughput regardless of underlying storage speed or load patterns.
Optimized Read Operations Through Dedicated Index Layer
Complementing the write-optimized design, Tidehunter introduces a specialized uniform lookup index engineered to minimize read latency on critical data access paths. By maintaining a streamlined index structure that’s optimized for SSD characteristics, read operations can be resolved with minimal seeks and maximum cache efficiency. This ensures that blockchain applications powered by Sui don’t sacrifice read performance while gaining massive write throughput advantages.
With Tidehunter, Sui positions itself at the frontier of database technology, demonstrating how thoughtful architectural design can extract far greater utility from modern SSD hardware than conventional platforms can achieve.