Back to blog
SolanaFebruary 24, 2026·3 min read

How to Reduce Latency to the Jito Block Engine

How to Reduce Latency to the Jito Block Engine

For Solana MEV and high-frequency trading, latency to the Jito Block Engine is frequently the deciding factor between landing a bundle and missing it. The good news is that latency is largely an engineering problem, and most of the gains come from a handful of well-understood moves. Here they are, in order of impact.

1. Choose the closest region (biggest win)

Physics sets the floor. Jito operates block engines in several regions, and the speed of light through fibre means your absolute minimum latency is dictated by distance. Host in the same metro as the engine you target. From our New York (EWR) site, we average ~0.1ms to the NY Jito Block Engine - see the EWR launch for the benchmark. No amount of tuning will beat simply being closer.

2. Get premium peering

Distance sets the floor, but routing determines whether you hit it. Traffic that bounces through several intermediate carriers accumulates latency and, worse, jitter. A direct connection to a network like Teraswitch removes those hops for relevant traffic, producing shorter and far more consistent paths. Our Amsterdam network upgrade explains the principle in detail.

3. Use fast, dedicated hardware

Your own processing time is part of total latency. A high-clock CPU and dedicated resources mean your bot builds and signs transactions faster, and a dedicated machine has no noisy neighbours injecting unpredictable delay. This is one reason serious operators move from a shared VPS to bare metal.

4. Tune your connection and code

  • Keep persistent connections open to avoid repeated TCP/TLS handshakes on the hot path.
  • Co-locate your logic on the same server that talks to the engine - an extra network hop between your bot and your sender is pure waste.
  • Minimise serialization and parsing overhead in your submission path.
  • Reuse warm clients rather than constructing new ones per request.

5. Benchmark properly - do not guess

Measure real latency from any candidate location before you commit, and measure continuously rather than once. A single ping tells you little; sustained monitoring reveals the average and, crucially, the jitter:

ping -c 100 ny.mainnet.block-engine.jito.wtf

Pay attention to the standard deviation (mdev), not just the average. A consistent 1ms beats a 0.5ms that regularly spikes.

Why jitter matters as much as average latency

On-chain strategies are timing-sensitive and built around predictable behaviour. A connection that is usually fast but occasionally spikes will cost you at exactly the wrong moments. This is why premium peering and dedicated hardware - both of which reduce variability - are so valuable, not just raw speed.

FAQ

What latency to Jito is "good"?

It depends on your strategy and target region, but sub-millisecond is achievable when you are in the right datacenter with direct peering, as our EWR numbers show.

Does a VPS add latency versus bare metal?

A well-run VPS adds very little, but a dedicated machine removes noisy-neighbour variability entirely. For the most latency-sensitive strategies, bare metal is the safer choice.

Put it into practice

Orbit Servers operates low-latency, premium-peered locations built for exactly this. Tell us your target endpoint and we will point you to the lowest-latency option - start at orbitservers.io.

Ready to deploy a low-latency Solana VPS?

Spin up an instantly-provisioned VPS close to the RPC or block engine you target - across the US, EU, and APAC. Pay with crypto or card.

View VPS plans
O

Written by

Ory

The Orbit Servers Team

The Orbit Servers team builds and operates low-latency VPS, bare metal, and colocation infrastructure across the US, EU, and APAC - with a focus on Solana RPC, validator, and trading workloads.

Related posts