Running a Solana validator is a bit like being an air traffic controller who can never blink. The network processes slots roughly every 400 milliseconds, which means even a few seconds of downtime translates directly into missed rewards and unhappy delegators. SOL Strategies, a digital asset infrastructure company focused on Solana, decided to build a tool that blinks for you.
The company released solana-validator-ha, an open-source high availability manager that automatically detects when a primary validator node goes down and orchestrates a failover to a passive backup. The tool is designed to keep validators humming at 99.99% uptime, a target that leaves room for roughly 52 minutes of annual downtime.
How the failover actually works
The tool hooks into Solana’s gossip protocol, the same peer-to-peer communication layer that validators already use to share information across the network. By leveraging gossip for peer detection and coordination, solana-validator-ha requires no external dependencies. It’s essentially a lightweight process that runs alongside existing validator software, monitoring health and ready to promote a passive node to active duty the moment something goes wrong.











