async_llm.py 12.3 KB
Newer Older
1
import asyncio
2
import os
3
from typing import AsyncGenerator, List, Mapping, Optional, Type, Union
4
5
6
7
8

from vllm.config import ModelConfig, VllmConfig
from vllm.engine.arg_utils import AsyncEngineArgs
from vllm.engine.protocol import EngineClient
from vllm.inputs import INPUT_REGISTRY, InputRegistry, PromptType
9
from vllm.inputs.preprocess import InputPreprocessor
10
11
from vllm.logger import init_logger
from vllm.lora.request import LoRARequest
12
from vllm.outputs import RequestOutput
13
14
15
16
17
18
from vllm.pooling_params import PoolingParams
from vllm.prompt_adapter.request import PromptAdapterRequest
from vllm.sampling_params import SamplingParams
from vllm.transformers_utils.tokenizer import AnyTokenizer
from vllm.transformers_utils.tokenizer_group import init_tokenizer_from_configs
from vllm.usage.usage_lib import UsageContext
19
from vllm.utils import kill_process_tree
20
from vllm.v1.engine.core_client import EngineCoreClient
21
from vllm.v1.engine.output_processor import OutputProcessor
22
from vllm.v1.engine.processor import Processor
23
from vllm.v1.executor.abstract import Executor
24
from vllm.v1.metrics.loggers import LoggingStatLogger, StatLoggerBase
25
from vllm.v1.metrics.stats import IterationStats, SchedulerStats
26
27
28
29
30
31
32
33
34

logger = init_logger(__name__)


class AsyncLLM(EngineClient):

    def __init__(
        self,
        vllm_config: VllmConfig,
35
        executor_class: Type[Executor],
36
37
38
39
40
41
42
        log_stats: bool,
        usage_context: UsageContext = UsageContext.ENGINE_CONTEXT,
        input_registry: InputRegistry = INPUT_REGISTRY,
        use_cached_outputs: bool = False,
        log_requests: bool = True,
        start_engine_loop: bool = True,
    ) -> None:
43

44
45
46
47
        assert start_engine_loop

        self.log_requests = log_requests
        self.log_stats = log_stats
48
49
50
51
        self.stat_loggers: List[StatLoggerBase] = [
            LoggingStatLogger(),
            # TODO(rob): PrometheusStatLogger(),
        ]
52
53
54
55
56
57
58
        self.model_config = vllm_config.model_config

        # Tokenizer (+ ensure liveness if running in another process).
        self.tokenizer = init_tokenizer_from_configs(
            model_config=vllm_config.model_config,
            scheduler_config=vllm_config.scheduler_config,
            parallel_config=vllm_config.parallel_config,
59
            lora_config=vllm_config.lora_config)
60
61
62
        self.tokenizer.ping()

        # Processor (converts Inputs --> EngineCoreRequests).
63
64
65
66
67
68
69
        self.processor = Processor(
            model_config=vllm_config.model_config,
            cache_config=vllm_config.cache_config,
            lora_config=vllm_config.lora_config,
            tokenizer=self.tokenizer,
            input_registry=input_registry,
        )
70

71
72
73
        # OutputProcessor (converts EngineCoreOutputs --> RequestOutput).
        self.output_processor = OutputProcessor(self.tokenizer,
                                                log_stats=self.log_stats)
74
75
76
77
78

        # EngineCore (starts the engine in background process).
        self.engine_core = EngineCoreClient.make_client(
            multiprocess_mode=True,
            asyncio_mode=True,
79
80
            vllm_config=vllm_config,
            executor_class=executor_class,
81
82
        )

83
        self.output_handler: Optional[asyncio.Task] = None
84
85
86
87
88
89
90
91

    @classmethod
    def from_engine_args(
        cls,
        engine_args: AsyncEngineArgs,
        engine_config: Optional[VllmConfig] = None,
        start_engine_loop: bool = True,
        usage_context: UsageContext = UsageContext.ENGINE_CONTEXT,
92
    ) -> "AsyncLLM":
93
94
95
96
        """Create an AsyncLLM from the EngineArgs."""

        # Create the engine configs.
        if engine_config is None:
97
            vllm_config = engine_args.create_engine_config(usage_context)
98
99
100
        else:
            vllm_config = engine_config

101
        executor_class = Executor.get_class(vllm_config)
102
103
104
105
106
107
108
109
110
111
112
113
114
115

        # Create the AsyncLLM.
        return cls(
            vllm_config=vllm_config,
            executor_class=executor_class,
            log_requests=not engine_args.disable_log_requests,
            log_stats=not engine_args.disable_log_stats,
            start_engine_loop=start_engine_loop,
            usage_context=usage_context,
        )

    def shutdown(self):
        """Shutdown, cleaning up the background proc and IPC."""

116
117
        if engine_core := getattr(self, "engine_core", None):
            engine_core.shutdown()
118
119
120
121
122
123
124
125
126
127
128
129
130
131

        if handler := getattr(self, "output_handler", None):
            handler.cancel()

    async def add_request(
        self,
        request_id: str,
        prompt: PromptType,
        params: Union[SamplingParams, PoolingParams],
        arrival_time: Optional[float] = None,
        lora_request: Optional[LoRARequest] = None,
        trace_headers: Optional[Mapping[str, str]] = None,
        prompt_adapter_request: Optional[PromptAdapterRequest] = None,
        priority: int = 0,
132
    ) -> asyncio.Queue[RequestOutput]:
133
134
        """Add new request to the AsyncLLM."""

135
        # 1) Create a new output queue for the request.
136
        if self.output_processor.is_request_active(request_id):
137
            raise ValueError(f"Request id {request_id} already running.")
138
        queue: asyncio.Queue[RequestOutput] = asyncio.Queue()
139

140
141
142
143
144
145
        # 2) Convert Input --> Request.
        request = self.processor.process_inputs(request_id, prompt, params,
                                                arrival_time, lora_request,
                                                trace_headers,
                                                prompt_adapter_request,
                                                priority)
146

147
148
        # 3) Add the request to OutputProcessor (this process).
        self.output_processor.add_request(request, queue)
149
150

        # 4) Add the EngineCoreRequest to EngineCore (separate process).
151
        await self.engine_core.add_request_async(request)
152

153
154
155
        if self.log_requests:
            logger.info("Added request %s.", request_id)

156
        return queue
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175

    # TODO: we should support multiple prompts in one call, as you
    # can do with LLM.generate. So that for multi-prompt completion
    # requests we don't need to send multiple messages to core proc,
    # and so we don't need multiple streams which then get
    # re-multiplexed in the API server anyhow.
    async def generate(
        self,
        prompt: PromptType,
        sampling_params: SamplingParams,
        request_id: str,
        lora_request: Optional[LoRARequest] = None,
        trace_headers: Optional[Mapping[str, str]] = None,
        prompt_adapter_request: Optional[PromptAdapterRequest] = None,
        priority: int = 0,
    ) -> AsyncGenerator[RequestOutput, None]:
        """
        Main function called by the API server to kick off a request
            * 1) Making an AsyncStream corresponding to the Request.
176
            * 2) Processing the Input.
177
178
179
180
181
182
183
184
185
186
187
            * 3) Adding the Request to the Detokenizer.
            * 4) Adding the Request to the EngineCore (separate process).

        A separate output_handler loop runs in a background AsyncIO task, 
        pulling outputs from EngineCore and putting them into the 
        per-request AsyncStream.

        The caller of generate() iterates the returned AsyncGenerator,
        returning the RequestOutput back to the caller.
        """

188
189
190
191
192
193
194
195
196
        try:
            # We start the output_handler on the first call to generate() so
            # we can call __init__ before the event loop, which enables us
            # to handle startup failure gracefully in the OpenAI server.
            if self.output_handler is None:
                self.output_handler = asyncio.create_task(
                    self._run_output_handler())

            q = await self.add_request(
197
198
199
200
201
202
203
                request_id,
                prompt,
                sampling_params,
                lora_request=lora_request,
                trace_headers=trace_headers,
                prompt_adapter_request=prompt_adapter_request,
                priority=priority,
204
            )
205

206
207
208
209
210
211
212
            # The output_handler task pushes items into the queue.
            # This task pulls from the queue and yields to caller.
            while True:
                # Note: drain queue without await if possible (avoids
                # task switching under load which helps performance).
                out = q.get_nowait() if q.qsize() > 0 else await q.get()

213
                # Note: both OutputProcessor and EngineCore handle their
214
215
216
217
218
219
220
221
222
223
224
225
226
                # own request cleanup based on finished.
                if out.finished:
                    yield out
                    break

                yield out

        # If the request is disconnected by the client, the
        # generate() task will be canceled. So, we abort the
        # request if we end up here.
        except asyncio.CancelledError:
            await self.abort(request_id)
            raise
227
228
229
230
231
232

    async def _run_output_handler(self):
        """Background loop: pulls from EngineCore and pushes to AsyncStreams."""

        try:
            while True:
233
                # 1) Pull EngineCoreOutputs from the EngineCore.
234
235
                outputs = await self.engine_core.get_output_async()

236
237
                # 2) Process EngineCoreOutputs.
                processed_outputs = self.output_processor.process_outputs(
238
                    outputs.outputs)
239
240
                # NOTE: RequestOutputs are pushed to their queues.
                assert len(processed_outputs.request_outputs) == 0
241

242
243
244
                # 3) Abort any reqs that finished due to stop strings.
                await self.engine_core.abort_requests_async(
                    processed_outputs.reqs_to_abort)
245

246
247
248
249
250
251
252
                # 4) Logging.
                # TODO(rob): make into a coroutine and launch it in
                # background thread once we add Prometheus.
                self._log_stats(
                    scheduler_stats=outputs.scheduler_stats,
                    iteration_stats=processed_outputs.iteration_stats,
                )
253

254
255
256
        except Exception as e:
            logger.exception("EngineCore output handler hit an error: %s", e)
            kill_process_tree(os.getpid())
257
258

    async def abort(self, request_id: str) -> None:
259
        """Abort RequestId in OutputProcessor and EngineCore."""
260
261
262

        request_ids = [request_id]
        await self.engine_core.abort_requests_async(request_ids)
263
        self.output_processor.abort_requests(request_ids)
264

265
266
        if self.log_requests:
            logger.info("Aborted request %s.", request_id)
267

268
269
270
271
272
    def _log_stats(
        self,
        scheduler_stats: SchedulerStats,
        iteration_stats: IterationStats,
    ):
273
274
275
276
277
278
        if not self.log_stats:
            return

        for logger in self.stat_loggers:
            logger.log(scheduler_stats=scheduler_stats)

279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
    def encode(
        self,
        prompt: PromptType,
        pooling_params: PoolingParams,
        request_id: str,
        lora_request: Optional[LoRARequest] = None,
        trace_headers: Optional[Mapping[str, str]] = None,
        priority: int = 0,
    ):
        raise ValueError("Not Supported on V1 yet.")

    async def get_model_config(self) -> ModelConfig:
        return self.model_config

    async def get_decoding_config(self):
        raise ValueError("Not Supported on V1 yet.")

296
297
298
    async def get_input_preprocessor(self) -> InputPreprocessor:
        return self.processor.input_preprocessor

299
300
301
302
    async def get_tokenizer(
        self,
        lora_request: Optional[LoRARequest] = None,
    ) -> AnyTokenizer:
303
        return self.tokenizer.get_lora_tokenizer(lora_request)
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318

    async def is_tracing_enabled(self) -> bool:
        return False

    async def do_log_stats(
        self,
        scheduler_outputs=None,
        model_output=None,
    ) -> None:
        logger.debug("Called do_log_stats.")

    async def check_health(self) -> None:
        logger.debug("Called check_health.")

    async def start_profile(self) -> None:
319
        await self.engine_core.profile_async(True)
320
321

    async def stop_profile(self) -> None:
322
        await self.engine_core.profile_async(False)
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337

    @property
    def is_running(self) -> bool:
        return True

    @property
    def is_stopped(self) -> bool:
        return False

    @property
    def errored(self) -> bool:
        return False

    @property
    def dead_error(self) -> BaseException:
338
        return Exception()  # TODO: implement
339
340
341
342

    async def add_lora(self, lora_request: LoRARequest) -> None:
        """Load a new LoRA adapter into the engine for future requests."""
        raise NotImplementedError("LoRA not yet supported in V1")