Why Jetpath for AI Infrastructure

AI inference workloads benefit from Jetpath's low-latency kernel-level processing:

Session Persistence

Keep long-running inference sessions on the same backend with source IP or cookie-based persistence.

Weighted Distribution

Distribute traffic across backends with different capacities using weighted round-robin.

Health Checks

Automatically route around unhealthy inference servers with configurable health checks.

Configuration Example

Configure Jetpath for an inference cluster:

{
  "name": "inference-cluster",
  "protocol": "tcp",
  "listeners": [{"vip": "10.0.0.100", "port": 8000}],
  "lb_policy": {"type": "weighted_round_robin"},
  "persistence": {
    "enabled": true,
    "type": "source",
    "timeout_sec": 7200
  },
  "destinations": [
    {"id": "gpu-1", "ip": "10.0.1.10", "port": 8000, "weight": 4},
    {"id": "gpu-2", "ip": "10.0.1.11", "port": 8000, "weight": 4},
    {"id": "gpu-3", "ip": "10.0.1.12", "port": 8000, "weight": 2}
  ]
}

Supported Load Balancing Algorithms

AlgorithmUse Case
Round RobinEqual distribution across identical backends
Weighted Round RobinDistribute based on backend capacity
Least ConnectionRoute to backend with fewest active connections
Source PersistenceKeep client sessions on same backend