transcribe

Routing LLM Inference in Production: From Engine Signals to Policy — Qianru Lao & Lu Zhang, OpenAI

AI Engineer · 17m · transcribed 2d ago
More from AI Engineer Business
𝕏 Share ▶ YouTube 📥 PDF 🤖 .md

Section Insights

# 0:00

Introduction to Inference Load Balancer

What is the inference load balancer and how has it evolved?

The inference load balancer is a system that manages user requests and routes them to appropriate inference engines. It has evolved from a feedback loop-driven approach to a more explicit and predictable policy, while still being informed by engine signals.

  • The inference load balancer acts as a bridge between CPU clusters and GPU engine clusters.
  • It has two main responsibilities: selecting the appropriate engine for requests and managing the routing process.
  • The system's evolution reflects a shift towards more predictable routing policies.
# 3:34

Early Routing Challenges

What were the initial challenges in the routing process?

In the early days, routing faced challenges due to constraints like engine capabilities and data residency. The system used weighted consistent hashing to select the best engine based on performance scores derived from periodic feedback loops.

  • Routing decisions were initially constrained by engine capabilities and data residency requirements.
  • Performance scores were generated through feedback loops to adjust routing weights.
  • The approach borrowed concepts from control theory to improve routing decisions.
# 7:09

Need for a Globally Optimized Solution

Why is a globally optimized routing solution necessary?

A globally optimized solution is needed to prevent overload on certain engines while underutilizing others. The naive round-robin approach fails to account for the differences in engine capabilities and traffic demands.

  • Independent routing by multiple CPU clusters can lead to engine overload.
  • A global view of the system is essential for effective load balancing.
  • The architecture must consider both local and global optimization for routing decisions.
# 10:44

Architecture of the Load Balancer

How does the architecture of the load balancer function?

The architecture consists of a data plane that selects engines for requests based on local routing states and a control plane that computes globally optimized routing weights. The system operates with both synchronous and asynchronous paths to improve routing decisions.

  • The data plane handles immediate routing decisions while the control plane optimizes routing weights.
  • Real-time engine signals are crucial for both planes to function effectively.
  • The architecture allows for quick local decisions while continuously improving future routing.
# 14:19

Routing Optimization Goals

What are the goals and constraints of the routing optimization?

The optimization aims to minimize expected end-to-end latency while respecting constraints such as routing all traffic demand and ensuring engines operate within their capacity. The controller uses these optimized weights to make routing decisions.

  • Minimizing end-to-end latency involves balancing network distance and engine latency.
  • Routing must adhere to hard constraints to maintain system stability.
  • Effective routing decisions depend on a combination of local and global optimization strategies.

Transcript

0:12 Hi everyone, thanks for joining our talk. I'm Lou and this is my colleague Chenu. So we today we're going to talk about the in we both work on the inference team at OpenAI and today we are going to talk about routing IM inference in production specifically how our system evolved from routing based on feedback loops driven by engine signals to a more explicit and a predictable policy which is still informed by engine signals. However, it's more like the way we use it is different.

0:43 So for the agenda today we're going to begin by introducing the inference load balancer what it is what it does and how it has evolved and then Chenu will walk us through the newer control plane and data plane driven architecture what are the responsibilities of each and followed by a concrete case study of how we reduce the global network overhead and in the end I return to discuss the protection mechanisms that help keep the system stable and production level stress.

1:14 So to begin with what is the inference load balancer and where it sit? So this is a very high level diagram of the system we are talking about. On the left hand side are the front end clusters. Those are the GPU cluster. Sorry, those are the CPU clusters that act as gateways into our system and they receive user requests then prepare them into the inference request that can be processed by the inference engines and on the right hand side are the engine clusters which are usually GPU clusters and each hosting multiple inference engines. So that's why we they got the name of engine clusters and as you may already heard nowadays GPUs are pretty popular and expensive. So sitting in the middle it is the IRB or inference load balancer. It actually runs on the front end clusters but is also a bridge into our inference stack.

2:15 It has two main responsibilities select an engine and proxing the request. For this talk, we are going to focus on the engine selection part. So in some ways, IRB resembles a very traditional load balancer because a request usually targets a model and a model is backed by multiple engines. They may live on different clusters in different regions or even across the continents because that gives us a good resiliency towards localized degradation or cluster failures. However, the inference stack or the uniqueness of the inference introduces a lot of nuances like it has to consider a bunch of signals reported in real time like the well-known time to first token TTF time between output tokens also known as token throughput or time between tokens and other hairness and utilization signals. Besides there's a important concept of a KV cache which is also well known but for example when the conversation already has a lot of the useful context cached in one engine sending the follow-up turns of the same conversation back to the same engine will avoid recomputation improve efficiency and reduce latency. So the combination of performance reliability locality cach awareness is what makes it such an interesting problem. so how we attempted in the problem? Let's take a look at the early days. And to be honest, early days in in this industry sounds a lot more historic than it really is. And the routing process at that time began with a fear of like each request may not be served by all the engines because of constraints such as capabilities or due restrictions due to compute or data residency. And among the remaining engines, IRB used a weighted consistent hashing to select the best destination engine for a request or of for certain user. Then the important question becomes where are the WS come from. So they were generated by a periodic feedback loop. The inference engines as mentioned earlier reports all kind of the signals we care about and the controller will periodically smooth out those signals and compute a performance score. The performance score then will be compared against the fleet average. Then the weight will be adjusted basically for each engine. is weight goes up if the performance is better or it goes down when the performance is worse than the fleet average and this generated weight will impact the routing and then it's basically a control loop conceptually it is very similar to the P controller and no this P controller will not help you care a Linux process but instead it's a classic control theory technique that continuously steering the system towards its desired date and we just borrowed this important concept the proportional part of it and applied into our our load balancer. So it has a lot of nice properties. For example, it could combine the useful signals we care about into the single routing decision and because of the it adapt to the observed performance as what we mentioned earlier there's a lot of constraints and those constraints might have the some engines basier because they can serve more requests more kind of request than the remaining but those basier signal will be fit into the next loop and resulting in the less constraint less constraint request can go to more of those kind of engines. So basically they self balanced out and to some extent this just means we don't need to do a lot of manual intervention and it just works. However that kind of adaptability comes with big trade-offs because of the same reasons that it combined so many signals. It's also very hard to reason about a particular routing decision or like why search engine get a higher weight than we expect. And every time we want to fine-tune towards some aspect, it's all almost impossible to not impacting something else.

6:37 And the load is not always very well very evenly distributed because sometimes a model is served by engines on different GPU skills and they have different characteristics. Then the problem becomes a lot more trickier and the feedback loop sometimes creates bad oscillations because when you shift an engine away some traffic the engine turns a bit cooler and this signal get fit to the controller. The controller now thinks that hey this engine can take a lot more traffic. then the some traffic going to be shifted back and forth between a few engines and disrupting the KV cache utilization. So all those limitations motivated us to rethink about the architecture and see if we have new ways to address the problem. So I'm going to hand over to Chenu to deep dive into the new architecture we tried out.

7:38 >> Yeah, thank you L. So I'm going to talk about the architecture of the load balancer and how do we reduce the overall overhead with our routing algorithm. The load balancer answers one question for each request from a CPU cluster which engine should serve it. One most naive baseline might be round robin which send requests across engines evenly. But if you think a little bit more that doesn't make sense because engines are not homogeneous they can have different hardware and capacity different health and also different distance from CPU cluster also run could break cache locality c related requests that could reuse the same engine cache might be sent to different engines.

8:30 A probably better solution might be for each CPU cluster it choose the best engine from its own local view. But that's not enough either. Think about one extreme case. Multiple CPU cluster route traffic to the same engines independently which could overload that engine while leave other engines underutilized. So what we need is a globally optimized solution, a control plane that has a global view for all the CPU cluster and GPU engines and could compute a globally optimized routing answers and the data plane can make a routing decision quickly based on the answer proved from the control plane.

9:18 Now let's look inside the control plane and data plane. In the data plane there is an engine selector which select engine for each request. It read the local routing state which includes the candidate engines and the routing weights for each candidate engines. Both of them are refreshed asynchronously in the background. So we don't need to ask the control plane before we make a routing decision for each request. Also the data plane collects realtime engine signal such as number of ready replica engine house etc to surface fast local guard draw in the control plane. The data loader combines those live engine signals and never overhead. And with offline regressions of capacity, TTFT and TBOT, the optimizer could turn those data into routing weights and the control plane will publish the routing weight for each data plane to pull. In this way, no request need to wait on the data plane.

10:26 The control plane continuously compute the next globally optimized routing way snapshot while the data plane make a routing decision based on the latest snapshot already installed locally. In summary, there are three important paths through the system. The first path is the inference request path. The request arrive to the CPU cluster and the data plane inside that CPU cluster will select engine for that request based on the local routing state and forward the request to the selected engines.

11:03 The second pass is the engine signal pass. The system continuously collects real-time engine signal such as TTFT, TBOT, number of radio replica and engine house etc. Boost planes need those real-time engine signals. The control plane need them to compute a globally optimized routing way while the data plane need them to serve as fast local. And the third path is the routing way pass. The control plane compute and publish the routing way and the data plane pull the updates to its local cache.

11:41 So only the first pass is synchronous but it's fast and only local inside the data plane of the CPU cluster. The other two loops are asynchronous loop and they are to improve future routing decision. So that's pretty much of the architecture part. But that still leaves one question. How do we compute those routing weights? But before answer that question, let's answer another question first. Why not just send a request to the nearest engine?

12:20 That's because the traffic demand and GPU capacity are not geographically balanced. For example, in region one, CPU cluster A send 90 RPS and the nearby engine A can serve 100 RPS. So in this case nearest only is fine while in region two CPU cluster B send 120 RPS and the nearby engine B could only serve 100 RPS. So in this case if we insist on keeping everything local the extra 20 RPS need to wait on an overloaded engine B. While in region three we are only using 40 RPS of an 80 RPS engine C. That still leaves 40 RPS spare. So if we send the extra 20 RPS from cluster B to engine C, that will add network distance.

13:17 But it could also avoid a probably much larger engine side waiting time. So in this case, a further engine might be faster end to end. That's why we need something better than the nearest only routing. Now let's open the black box of the optimizer. The optimizer accepts four types of input. The request from each CPU cluster, the network latency to each engine, the available engine capacity and health and also the TTFT, TBOT latency profiles that tell us how's the engine side latency change as the low increases.

14:04 And with those input the optimizer turn the input to the output routing weights. The routing way say for each CPU cluster what fraction of its traffic should go to each GPU engine. And the optimization goal is straightforward is to minimize the expected end to end latency across all routed traffic. The important part is that the end to end latency includes both the network distance and the engine side latency. That means a nearby engine might be attractive when it still has room to serve traffic while a further engine might be better if all the nearby engines are close to full.

14:51 And the optimizer also need to respect several hard constraints. First it need to route all the traffic demand. Second it need to ensure all the engines stay within the effected capacity. Third it need to keep the routing weights non- negative. With this the controller control plane get the routing way from the optimizer and publish them and the data plane pull them and use them to make a globally optimized routing decision.

15:24 And that's pretty much of my part and Lou will continue to talk about the protection mechanisms in the system. Thanks Chenu. So as AI engineers we all kind of know that production in many cases are not behaving in the most ideal case. So clusters can fail, GPUs or individual nodes can degrade degree and networking can just get to all kind of mysterious issues. So how do we keep our production system heresy as much as possible under the heavy load? The first thing we have is the penalties.

16:05 Basically when an engine is an outlier, we detect the try to reduce the routing weight to that engine. In that way, we give it a chance to either recover by themselves if there's a if it's some transient issue or we can have a human intervented out or replace the faulty hardware. And secondly, the retries which is a very common technique used to mitigate a problems. However, during some cases, it's actually could make them even worse like when the system is very close to like a tip over or very heavy utilized retries, we are send more load and this more load we are cause more failure and cause more retries which is infamous retry storm. So we incre implemented caps or budget to constant retries into a acceptable region and this is actually even need to be dynamic because in the happy time or in the normal time we can tolerate a lot more retries than when the system are heavily utilized. And finally we have the load shedding which is our last result when the production capac capacity couldn't meet the increasing amount of inference demands. So we instead try to have all the system fail.

17:27 We basically proactively load shed a portion of the traffic to have the system degraded gracefully. So that pretty much concludes our talk today and thanks for joining us. both of us will be around in our booth area this afternoon. So if you have further questions, feel free to walk to the area and and chat with us. Thank you.

Summary

Lou and Chenu from OpenAI discuss the evolution of their inference load balancer (ILB) system, focusing on routing inference requests in production. They explain how the system transitioned from a feedback loop-based routing mechanism to a more predictable architecture that balances efficiency and reliability.

- The inference load balancer (ILB) selects the best engine for processing user requests, balancing performance, reliability, and cache locality.
- Early routing relied on a feedback loop that adjusted engine weights based on performance metrics, but this led to unpredictability and inefficiencies.
- The new architecture separates the control plane (global optimization) from the data plane (local routing decisions), improving routing efficiency.
- The control plane computes globally optimized routing weights, while the data plane handles requests quickly using local state.
- The optimizer considers traffic demand, network latency, engine capacity, and performance profiles to minimize end-to-end latency.
- Protection mechanisms include penalties for underperforming engines, dynamic retry caps to prevent overload, and load shedding to manage excessive demand gracefully.
- The system aims to maintain stability and performance even under heavy load and potential failures.

Questions Answered

What is the inference load balancer and how has it evolved?

The inference load balancer is a system that manages user requests and routes them to appropriate inference engines. It has evolved from a feedback loop-driven approach to a more explicit and predictable policy, while still being informed by engine signals.

What were the initial challenges in the routing process?

In the early days, routing faced challenges due to constraints like engine capabilities and data residency. The system used weighted consistent hashing to select the best engine based on performance scores derived from periodic feedback loops.

Why is a globally optimized routing solution necessary?

A globally optimized solution is needed to prevent overload on certain engines while underutilizing others. The naive round-robin approach fails to account for the differences in engine capabilities and traffic demands.

How does the architecture of the load balancer function?

The architecture consists of a data plane that selects engines for requests based on local routing states and a control plane that computes globally optimized routing weights. The system operates with both synchronous and asynchronous paths to improve routing decisions.

What are the goals and constraints of the routing optimization?

The optimization aims to minimize expected end-to-end latency while respecting constraints such as routing all traffic demand and ensuring engines operate within their capacity. The controller uses these optimized weights to make routing decisions.

© transcribe · For agents Built with care and craft by Gokul Rajaram