-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[TRTLLM-8920][feat] decouple disagg service from fastapi #8714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
reasonsolo
wants to merge
6
commits into
NVIDIA:main
Choose a base branch
from
reasonsolo:TRTLLM-8920_decouplefastapi
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,396
−587
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
577e9db
implement prototype
reasonsolo 57451e6
fix tests
reasonsolo f0a7986
fix failed CI tests
reasonsolo ade914e
fix failed tests
reasonsolo 850f245
address review comments
reasonsolo 579e250
add a UT for OpenAIHttpClient
reasonsolo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,295 @@ | ||
| # Copyright (c) 2025, NVIDIA CORPORATION. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| # yapf: disable | ||
| import asyncio | ||
| import traceback | ||
| from abc import ABC, abstractmethod | ||
| from typing import Any, AsyncGenerator, Dict, List, Optional, Tuple, Type | ||
|
|
||
| import aiohttp | ||
|
|
||
| from tensorrt_llm.llmapi.disagg_utils import ServerRole | ||
| from tensorrt_llm.logger import logger | ||
| from tensorrt_llm.serve.openai_protocol import ( | ||
| ChatCompletionRequest, | ||
| ChatCompletionResponse, | ||
| CompletionRequest, | ||
| CompletionResponse, | ||
| UCompletionRequest, | ||
| UCompletionResponse, | ||
| ) | ||
| from tensorrt_llm.serve.perf_metrics import ClientMetricsCollector | ||
| from tensorrt_llm.serve.responses_utils import ( | ||
| ResponseHooks, | ||
| UCompletionResponseOrGenerator, | ||
| get_steady_clock_now_in_seconds, | ||
| ) | ||
| from tensorrt_llm.serve.router import Router | ||
|
|
||
| # yapf: enable | ||
|
|
||
|
|
||
| class OpenAIClient(ABC): | ||
| async def send_request( | ||
| self, | ||
| request: UCompletionRequest, | ||
| server: Optional[str] = None, | ||
| hooks: Optional[ResponseHooks] = None, | ||
| ) -> UCompletionResponseOrGenerator: | ||
| if isinstance(request, CompletionRequest): | ||
| return await self._send_request( | ||
| "v1/completions", request, CompletionResponse, server, hooks | ||
| ) | ||
| elif isinstance(request, ChatCompletionRequest): | ||
| return await self._send_request( | ||
| "v1/chat/completions", request, ChatCompletionResponse, server, hooks | ||
| ) | ||
| else: | ||
| raise ValueError(f"Invalid request type: {type(request)}") | ||
|
|
||
| @abstractmethod | ||
| async def _send_request( | ||
| self, | ||
| endpoint: str, | ||
| request: UCompletionRequest, | ||
| response_type: Type[UCompletionResponse], | ||
| server: Optional[str] = None, | ||
| hooks: Optional[ResponseHooks] = None, | ||
| ) -> UCompletionResponseOrGenerator: | ||
| """Send a request to the server and return the response and the body generator. | ||
|
|
||
| The request is finished (in routers) when the generator is exhausted or there is an error. | ||
| """ | ||
| ... | ||
|
|
||
| @abstractmethod | ||
| async def collect_metrics(self) -> Dict[str, Any]: ... | ||
|
|
||
| @abstractmethod | ||
| async def check_ready(self) -> Tuple[List[str], List[str]]: | ||
| """Return the list of ready servers and the list of unready servers.""" | ||
| ... | ||
|
|
||
| async def shutdown(self) -> None: ... | ||
|
|
||
| @abstractmethod | ||
| async def _finish_request(self, request: UCompletionRequest) -> None: | ||
| """Finish the request in the router.""" | ||
| ... | ||
|
|
||
|
|
||
| class OpenAIHttpClient(OpenAIClient): | ||
| def __init__( | ||
| self, | ||
| router: Router, | ||
| role: ServerRole, | ||
| timeout_secs: int = 180, | ||
| max_retries: int = 1, | ||
| retry_interval_sec: int = 1, | ||
| session: Optional[aiohttp.ClientSession] = None, | ||
| ): | ||
| self._router = router | ||
| self._role = role | ||
| self._metrics_collector = ClientMetricsCollector(role) | ||
| self._session = session or aiohttp.ClientSession( | ||
| connector=aiohttp.TCPConnector(limit=0, limit_per_host=0, force_close=False), | ||
| timeout=aiohttp.ClientTimeout(total=timeout_secs), | ||
| ) | ||
| self._max_retries = max_retries | ||
| self._retry_interval_sec = retry_interval_sec | ||
|
|
||
| async def _send_request( | ||
| self, | ||
| endpoint: str, | ||
| request: UCompletionRequest, | ||
| response_type: Type[UCompletionResponse], | ||
| server: Optional[str] = None, | ||
| hooks: Optional[ResponseHooks] = None, | ||
| ) -> UCompletionResponseOrGenerator: | ||
| if server is None: | ||
| server, _ = await self._router.get_next_server(request) | ||
| url = f"http://{server}/{endpoint}" | ||
| logger.debug( | ||
| f"Sending {self._role} request {request.disaggregated_params.ctx_request_id} to {url}" | ||
| ) | ||
| try: | ||
| self._metrics_collector.total_requests.inc() | ||
| resp_generator = self._post_with_retry(server, url, request, hooks) | ||
| if request.stream: | ||
| # return the response generator, the request is not done yet | ||
| return resp_generator | ||
| else: | ||
| # consume the generator to get the response and return it directly when it's not streaming | ||
| response = None | ||
| async for resp_json in resp_generator: | ||
| response = response_type(**resp_json) | ||
| if hooks: | ||
| if self._role == ServerRole.CONTEXT: | ||
| hooks.on_ctx_resp(server, response) | ||
| else: | ||
| hooks.on_first_token(server, request) | ||
| hooks.on_resp_done(server, request, response) | ||
| return response | ||
| except Exception: | ||
| self._metrics_collector.error_requests.inc() | ||
| # finish the request upon error | ||
| await self._finish_request(request) | ||
| raise | ||
|
|
||
| async def _post_with_retry( | ||
| self, | ||
| server: str, | ||
| url: str, | ||
| request: UCompletionRequest, | ||
| hooks: Optional[ResponseHooks] = None, | ||
| ) -> AsyncGenerator[Any, None]: | ||
| json_data = request.model_dump(exclude_unset=True) | ||
| is_stream = request.stream | ||
| for attempt in range(self._max_retries + 1): | ||
| try: | ||
| start_time = get_steady_clock_now_in_seconds() | ||
| async with self._session.post(url, json=json_data) as http_response: | ||
| content_type = http_response.headers.get("Content-Type", "") | ||
| if not is_stream and "text/event-stream" in content_type: | ||
| raise ValueError( | ||
| "Received an event-stream although request stream was False" | ||
| ) | ||
| if is_stream: | ||
| # do NOT return generator directly here or the response will go | ||
| # out of scope and get destroyed | ||
| async for line in self._response_generator( | ||
| request, http_response, start_time, server, hooks | ||
| ): | ||
| yield line | ||
| # don't finish the request here since the response generator is not done yet | ||
| else: | ||
| http_response.raise_for_status() | ||
| response_dict = await http_response.json() | ||
| # yield here since python forbids return statements in async generators | ||
| yield response_dict | ||
| # finish the request after the successful response | ||
| await self._finish_request(request) | ||
| break # break and skip retries if the whole response is processed without exception | ||
| except (aiohttp.ClientError, OSError) as e: | ||
| if attempt == self._max_retries: | ||
| logger.error( | ||
| f"Client error to {url}: {e} - last retry {attempt} of {self._max_retries}" | ||
| "failed", | ||
| traceback.format_exc(), | ||
| ) | ||
| raise | ||
| logger.error( | ||
| f"{self._role} client error to {url}: {e} - retry {attempt} of {self._max_retries}", | ||
| traceback.format_exc(), | ||
| ) | ||
| await asyncio.sleep(self._retry_interval_sec) | ||
| self._metrics_collector.retry_requests.inc() | ||
| except Exception as e: | ||
| logger.error( | ||
| f"Unexpected error while processing {self._role} request to {url}: {e}" | ||
| ) | ||
| raise | ||
|
|
||
| async def _response_generator( | ||
| self, | ||
| request: UCompletionRequest, | ||
| http_response: aiohttp.ClientResponse, | ||
| start_time: float, | ||
| server: str, | ||
| hooks: Optional[ResponseHooks] = None, | ||
| ) -> AsyncGenerator[Any, None]: | ||
| assert request.stream, "Request is not streaming" | ||
| assert "text/event-stream" in http_response.headers.get("Content-Type", ""), ( | ||
| "Response is not streaming" | ||
| ) | ||
| try: | ||
| last_token_time = start_time | ||
| i = 0 | ||
| async for line in http_response.content.iter_any(): | ||
| now_time = get_steady_clock_now_in_seconds() | ||
| if i == 0: | ||
| if hooks: | ||
| hooks.on_first_token(server, request) | ||
| self._metrics_collector.first_token_latency_seconds.observe( | ||
| now_time - last_token_time | ||
| ) | ||
| else: | ||
| self._metrics_collector.per_token_latency_seconds.observe( | ||
| now_time - last_token_time | ||
| ) | ||
| i += 1 | ||
| if line: | ||
| yield line | ||
| await asyncio.sleep(0) | ||
| last_token_time = now_time | ||
|
|
||
| if hooks: | ||
| hooks.on_resp_done(server, request, None) | ||
| self._metrics_collector.completed_requests.inc() | ||
| self._metrics_collector.complete_latency_seconds.observe( | ||
| get_steady_clock_now_in_seconds() - start_time | ||
| ) | ||
| except aiohttp.ClientError as e: | ||
| # a client error is expected when the response stream is done if the connector has close=True | ||
| logger.error(f"{self._role} client {server} error: {e}") | ||
| self._metrics_collector.error_requests.inc() | ||
| raise | ||
| except Exception: | ||
| self._metrics_collector.error_requests.inc() | ||
| raise | ||
| finally: | ||
| # finish the request after streaming response is done or error is raised | ||
| await self._finish_request(request) | ||
|
|
||
| async def _finish_request(self, request: UCompletionRequest) -> None: | ||
| await self._router.finish_request(request) | ||
|
|
||
| async def collect_metrics(self) -> Dict[str, Any]: | ||
| metrics = {} | ||
| for server in self._router.servers: | ||
| try: | ||
| async with self._session.get(f"http://{server}/perf_metrics") as response: | ||
| metrics[server] = await response.json() | ||
| except Exception: | ||
| logger.error(f"Failed to collect metrics from {server}") | ||
| continue | ||
| return metrics | ||
|
|
||
| async def shutdown(self) -> None: | ||
| await self._session.close() | ||
|
|
||
| async def check_ready(self) -> Tuple[List[str], List[str]]: | ||
| return await OpenAIHttpClient.check_ready_for_servers(self._session, self._router.servers) | ||
|
|
||
| @staticmethod | ||
| async def check_ready_for_servers( | ||
| session: aiohttp.ClientSession, servers: List[str] | ||
| ) -> Tuple[List[str], List[str]]: | ||
| async def check_server_ready(server: str) -> bool: | ||
| try: | ||
| url = ( | ||
| f"{server}/health" | ||
| if server.startswith("http://") | ||
| else f"http://{server}/health" | ||
| ) | ||
| async with session.get(url) as response: | ||
| return response.status == 200 | ||
| except Exception: | ||
| return False | ||
|
|
||
| servers_ready = await asyncio.gather(*[check_server_ready(server) for server in servers]) | ||
| return [server for server, ready in zip(servers, servers_ready) if ready], [ | ||
| server for server, ready in zip(servers, servers_ready) if not ready | ||
| ] | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.