"csrc/vscode:/vscode.git/clone" did not exist on "ad60a973fbee9102ca542c7eaa388c02fd8581ce"
run_batch.py 18.4 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
import asyncio
5
import tempfile
6
from argparse import Namespace
7
from collections.abc import Awaitable, Callable
8
from http import HTTPStatus
9
10
11
from io import StringIO

import aiohttp
12
import torch
13
from prometheus_client import start_http_server
14
from tqdm import tqdm
15

16
from vllm.engine.arg_utils import AsyncEngineArgs, optional_type
17
from vllm.engine.protocol import EngineClient
18
from vllm.entrypoints.logger import RequestLogger
19
20
21
22
23
24
25
26
27
28
from vllm.entrypoints.openai.protocol import (
    BatchRequestInput,
    BatchRequestOutput,
    BatchResponseData,
    ChatCompletionResponse,
    EmbeddingResponse,
    ErrorResponse,
    RerankResponse,
    ScoreResponse,
)
29
from vllm.entrypoints.openai.serving_chat import OpenAIServingChat
30
from vllm.entrypoints.openai.serving_embedding import OpenAIServingEmbedding
31
from vllm.entrypoints.openai.serving_models import BaseModelPath, OpenAIServingModels
32
from vllm.entrypoints.openai.serving_score import ServingScores
33
from vllm.logger import init_logger
34
from vllm.reasoning import ReasoningParserManager
35
from vllm.utils import FlexibleArgumentParser, random_uuid
36
from vllm.version import __version__ as VLLM_VERSION
37

38
39
logger = init_logger(__name__)

40

41
def make_arg_parser(parser: FlexibleArgumentParser):
42
43
44
45
46
    parser.add_argument(
        "-i",
        "--input-file",
        required=True,
        type=str,
47
        help="The path or url to a single input file. Currently supports local file "
48
        "paths, or the http protocol (http or https). If a URL is specified, "
49
50
        "the file should be available via HTTP GET.",
    )
51
52
53
54
55
56
57
    parser.add_argument(
        "-o",
        "--output-file",
        required=True,
        type=str,
        help="The path or url to a single output file. Currently supports "
        "local file paths, or web (http or https) urls. If a URL is specified,"
58
59
        " the file should be available via HTTP PUT.",
    )
60
61
62
63
64
65
66
    parser.add_argument(
        "--output-tmp-dir",
        type=str,
        default=None,
        help="The directory to store the output file before uploading it "
        "to the output URL.",
    )
67
68
69
70
71
72
    parser.add_argument(
        "--response-role",
        type=optional_type(str),
        default="assistant",
        help="The role name to return if `request.add_generation_prompt=True`.",
    )
73
74

    parser = AsyncEngineArgs.add_cli_args(parser)
75

76
77
78
79
80
81
82
83
    parser.add_argument(
        "--max-log-len",
        type=int,
        default=None,
        help="Max number of prompt characters or prompt "
        "ID numbers being printed in log."
        "\n\nDefault: Unlimited",
    )
84

85
86
87
    parser.add_argument(
        "--enable-metrics", action="store_true", help="Enable Prometheus metrics"
    )
88
89
90
91
92
93
94
95
96
97
98
99
100
101
    parser.add_argument(
        "--url",
        type=str,
        default="0.0.0.0",
        help="URL to the Prometheus metrics server "
        "(only needed if enable-metrics is set).",
    )
    parser.add_argument(
        "--port",
        type=int,
        default=8000,
        help="Port number for the Prometheus metrics server "
        "(only needed if enable-metrics is set).",
    )
102
103
    parser.add_argument(
        "--enable-prompt-tokens-details",
104
        action="store_true",
105
        default=False,
106
107
        help="If set to True, enable prompt_tokens_details in usage.",
    )
108
109
110
111
112
113
114
    parser.add_argument(
        "--enable-force-include-usage",
        action="store_true",
        default=False,
        help="If set to True, include usage on every request "
        "(even when stream_options is not specified)",
    )
115

116
117
118
119
    return parser


def parse_args():
120
    parser = FlexibleArgumentParser(description="vLLM OpenAI-Compatible batch runner.")
121
    return make_arg_parser(parser).parse_args()
122
123


124
125
126
127
128
129
130
131
132
133
# explicitly use pure text format, with a newline at the end
# this makes it impossible to see the animation in the progress bar
# but will avoid messing up with ray or multiprocessing, which wraps
# each line of output with some prefix.
_BAR_FORMAT = "{desc}: {percentage:3.0f}% Completed | {n_fmt}/{total_fmt} [{elapsed}<{remaining}, {rate_fmt}]\n"  # noqa: E501


class BatchProgressTracker:
    def __init__(self):
        self._total = 0
134
        self._pbar: tqdm | None = None
135
136
137
138
139
140
141
142
143

    def submitted(self):
        self._total += 1

    def completed(self):
        if self._pbar:
            self._pbar.update()

    def pbar(self) -> tqdm:
144
145
146
147
148
149
150
151
152
153
154
        enable_tqdm = (
            not torch.distributed.is_initialized() or torch.distributed.get_rank() == 0
        )
        self._pbar = tqdm(
            total=self._total,
            unit="req",
            desc="Running batch",
            mininterval=5,
            disable=not enable_tqdm,
            bar_format=_BAR_FORMAT,
        )
155
156
157
        return self._pbar


158
159
async def read_file(path_or_url: str) -> str:
    if path_or_url.startswith("http://") or path_or_url.startswith("https://"):
160
        async with aiohttp.ClientSession() as session, session.get(path_or_url) as resp:
161
162
            return await resp.text()
    else:
163
        with open(path_or_url, encoding="utf-8") as f:
164
165
166
            return f.read()


167
168
169
async def write_local_file(
    output_path: str, batch_outputs: list[BatchRequestOutput]
) -> None:
170
171
172
173
174
175
    """
    Write the responses to a local file.
    output_path: The path to write the responses to.
    batch_outputs: The list of batch outputs to write.
    """
    # We should make this async, but as long as run_batch runs as a
176
    # standalone program, blocking the event loop won't affect performance.
177
178
179
180
181
    with open(output_path, "w", encoding="utf-8") as f:
        for o in batch_outputs:
            print(o.model_dump_json(), file=f)


182
async def upload_data(output_url: str, data_or_file: str, from_file: bool) -> None:
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
    """
    Upload a local file to a URL.
    output_url: The URL to upload the file to.
    data_or_file: Either the data to upload or the path to the file to upload.
    from_file: If True, data_or_file is the path to the file to upload.
    """
    # Timeout is a common issue when uploading large files.
    # We retry max_retries times before giving up.
    max_retries = 5
    # Number of seconds to wait before retrying.
    delay = 5

    for attempt in range(1, max_retries + 1):
        try:
            # We increase the timeout to 1000 seconds to allow
            # for large files (default is 300).
199
200
201
            async with aiohttp.ClientSession(
                timeout=aiohttp.ClientTimeout(total=1000)
            ) as session:
202
203
                if from_file:
                    with open(data_or_file, "rb") as file:
204
                        async with session.put(output_url, data=file) as response:
205
                            if response.status != 200:
206
207
208
209
210
                                raise Exception(
                                    f"Failed to upload file.\n"
                                    f"Status: {response.status}\n"
                                    f"Response: {response.text()}"
                                )
211
                else:
212
                    async with session.put(output_url, data=data_or_file) as response:
213
                        if response.status != 200:
214
215
216
217
218
                            raise Exception(
                                f"Failed to upload data.\n"
                                f"Status: {response.status}\n"
                                f"Response: {response.text()}"
                            )
219
220
221
222

        except Exception as e:
            if attempt < max_retries:
                logger.error(
223
224
225
226
                    "Failed to upload data (attempt %d). Error message: %s.\nRetrying in %d seconds...",  # noqa: E501
                    attempt,
                    e,
                    delay,
227
228
229
                )
                await asyncio.sleep(delay)
            else:
230
231
232
                raise Exception(
                    f"Failed to upload data (attempt {attempt}). Error message: {str(e)}."  # noqa: E501
                ) from e
233
234


235
236
237
async def write_file(
    path_or_url: str, batch_outputs: list[BatchRequestOutput], output_tmp_dir: str
) -> None:
238
239
240
241
242
243
244
    """
    Write batch_outputs to a file or upload to a URL.
    path_or_url: The path or URL to write batch_outputs to.
    batch_outputs: The list of batch outputs to write.
    output_tmp_dir: The directory to store the output file before uploading it
    to the output URL.
    """
245
    if path_or_url.startswith("http://") or path_or_url.startswith("https://"):
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
        if output_tmp_dir is None:
            logger.info("Writing outputs to memory buffer")
            output_buffer = StringIO()
            for o in batch_outputs:
                print(o.model_dump_json(), file=output_buffer)
            output_buffer.seek(0)
            logger.info("Uploading outputs to %s", path_or_url)
            await upload_data(
                path_or_url,
                output_buffer.read().strip().encode("utf-8"),
                from_file=False,
            )
        else:
            # Write responses to a temporary file and then upload it to the URL.
            with tempfile.NamedTemporaryFile(
261
262
263
264
265
                mode="w",
                encoding="utf-8",
                dir=output_tmp_dir,
                prefix="tmp_batch_output_",
                suffix=".jsonl",
266
            ) as f:
267
                logger.info("Writing outputs to temporary local file %s", f.name)
268
269
270
                await write_local_file(f.name, batch_outputs)
                logger.info("Uploading outputs to %s", path_or_url)
                await upload_data(path_or_url, f.name, from_file=True)
271
    else:
272
273
        logger.info("Writing outputs to local file %s", path_or_url)
        await write_local_file(path_or_url, batch_outputs)
274
275


276
277
278
def make_error_request_output(
    request: BatchRequestInput, error_msg: str
) -> BatchRequestOutput:
279
280
281
282
283
284
285
286
287
288
289
290
291
    batch_output = BatchRequestOutput(
        id=f"vllm-{random_uuid()}",
        custom_id=request.custom_id,
        response=BatchResponseData(
            status_code=HTTPStatus.BAD_REQUEST,
            request_id=f"vllm-batch-{random_uuid()}",
        ),
        error=error_msg,
    )
    return batch_output


async def make_async_error_request_output(
292
293
    request: BatchRequestInput, error_msg: str
) -> BatchRequestOutput:
294
295
296
    return make_error_request_output(request, error_msg)


297
298
299
300
301
async def run_request(
    serving_engine_func: Callable,
    request: BatchRequestInput,
    tracker: BatchProgressTracker,
) -> BatchRequestOutput:
302
    response = await serving_engine_func(request.body)
303

304
    if isinstance(
305
306
        response,
        (ChatCompletionResponse, EmbeddingResponse, ScoreResponse, RerankResponse),
307
    ):
308
309
310
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
311
            response=BatchResponseData(
312
313
                body=response, request_id=f"vllm-batch-{random_uuid()}"
            ),
314
315
            error=None,
        )
316
    elif isinstance(response, ErrorResponse):
317
318
319
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
320
            response=BatchResponseData(
321
                status_code=response.error.code,
322
323
                request_id=f"vllm-batch-{random_uuid()}",
            ),
324
            error=response,
325
        )
326
    else:
327
        batch_output = make_error_request_output(
328
329
            request, error_msg="Request must not be sent in stream mode"
        )
330

331
    tracker.completed()
332
333
334
    return batch_output


335
336
337
338
339
340
341
342
343
344
345
def validate_run_batch_args(args):
    valid_reasoning_parses = ReasoningParserManager.reasoning_parsers.keys()
    if (
        reasoning_parser := args.structured_outputs_config.reasoning_parser
    ) and reasoning_parser not in valid_reasoning_parses:
        raise KeyError(
            f"invalid reasoning parser: {reasoning_parser} "
            f"(chose from {{ {','.join(valid_reasoning_parses)} }})"
        )


346
347
348
349
async def run_batch(
    engine_client: EngineClient,
    args: Namespace,
) -> None:
350
351
352
353
354
    if args.served_model_name is not None:
        served_model_names = args.served_model_name
    else:
        served_model_names = [args.model]

355
    if args.enable_log_requests:
356
        request_logger = RequestLogger(max_log_len=args.max_log_len)
357
358
    else:
        request_logger = None
359

360
    base_model_paths = [
361
        BaseModelPath(name=name, model_path=args.model) for name in served_model_names
362
    ]
363

364
    model_config = engine_client.model_config
365
    supported_tasks = await engine_client.get_supported_tasks()
366
    logger.info("Supported tasks: %s", supported_tasks)
367

368
    # Create the openai serving objects.
369
    openai_serving_models = OpenAIServingModels(
370
        engine_client=engine_client,
371
372
373
        base_model_paths=base_model_paths,
        lora_modules=None,
    )
374

375
376
377
378
379
380
381
382
    openai_serving_chat = (
        OpenAIServingChat(
            engine_client,
            openai_serving_models,
            args.response_role,
            request_logger=request_logger,
            chat_template=None,
            chat_template_content_format="auto",
383
            reasoning_parser=args.structured_outputs_config.reasoning_parser,
384
            enable_prompt_tokens_details=args.enable_prompt_tokens_details,
385
            enable_force_include_usage=args.enable_force_include_usage,
386
387
388
389
        )
        if "generate" in supported_tasks
        else None
    )
390

391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
    openai_serving_embedding = (
        OpenAIServingEmbedding(
            engine_client,
            openai_serving_models,
            request_logger=request_logger,
            chat_template=None,
            chat_template_content_format="auto",
        )
        if "embed" in supported_tasks
        else None
    )

    enable_serving_reranking = (
        "classify" in supported_tasks
        and getattr(model_config.hf_config, "num_labels", 0) == 1
    )

    openai_serving_scores = (
        ServingScores(
            engine_client,
            openai_serving_models,
            request_logger=request_logger,
        )
        if ("embed" in supported_tasks or enable_serving_reranking)
        else None
    )
417

418
419
420
    tracker = BatchProgressTracker()
    logger.info("Reading batch from %s...", args.input_file)

421
    # Submit all requests in the file to the engine "concurrently".
422
    response_futures: list[Awaitable[BatchRequestOutput]] = []
423
    for request_json in (await read_file(args.input_file)).strip().split("\n"):
424
425
426
427
428
        # Skip empty lines.
        request_json = request_json.strip()
        if not request_json:
            continue

429
        request = BatchRequestInput.model_validate_json(request_json)
430
431
432

        # Determine the type of request and run it.
        if request.url == "/v1/chat/completions":
433
434
435
436
437
            chat_handler_fn = (
                openai_serving_chat.create_chat_completion
                if openai_serving_chat is not None
                else None
            )
438
            if chat_handler_fn is None:
439
440
441
                response_futures.append(
                    make_async_error_request_output(
                        request,
442
443
444
                        error_msg="The model does not support Chat Completions API",
                    )
                )
445
446
                continue

447
            response_futures.append(run_request(chat_handler_fn, request, tracker))
448
            tracker.submitted()
449
        elif request.url == "/v1/embeddings":
450
451
452
453
454
            embed_handler_fn = (
                openai_serving_embedding.create_embedding
                if openai_serving_embedding is not None
                else None
            )
455
            if embed_handler_fn is None:
456
457
458
459
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg="The model does not support Embeddings API",
460
461
                    )
                )
462
463
                continue

464
            response_futures.append(run_request(embed_handler_fn, request, tracker))
465
            tracker.submitted()
466
        elif request.url.endswith("/score"):
467
468
469
470
471
            score_handler_fn = (
                openai_serving_scores.create_score
                if openai_serving_scores is not None
                else None
            )
472
            if score_handler_fn is None:
473
474
475
476
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg="The model does not support Scores API",
477
478
                    )
                )
479
480
                continue

481
            response_futures.append(run_request(score_handler_fn, request, tracker))
482
            tracker.submitted()
483
        elif request.url.endswith("/rerank"):
484
485
486
487
488
            rerank_handler_fn = (
                openai_serving_scores.do_rerank
                if openai_serving_scores is not None
                else None
            )
489
490
491
492
493
            if rerank_handler_fn is None:
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg="The model does not support Rerank API",
494
495
                    )
                )
496
497
                continue

498
            response_futures.append(run_request(rerank_handler_fn, request, tracker))
499
            tracker.submitted()
500
        else:
501
502
503
            response_futures.append(
                make_async_error_request_output(
                    request,
504
505
506
507
508
                    error_msg=f"URL {request.url} was used. "
                    "Supported endpoints: /v1/chat/completions, /v1/embeddings,"
                    " /score, /rerank ."
                    "See vllm/entrypoints/openai/api_server.py for supported "
                    "score/rerank versions.",
509
510
                )
            )
511

512
513
    with tracker.pbar():
        responses = await asyncio.gather(*response_futures)
514

515
    await write_file(args.output_file, responses, args.output_tmp_dir)
516
517


518
async def main(args: Namespace):
519
520
521
    from vllm.entrypoints.openai.api_server import build_async_engine_client
    from vllm.usage.usage_lib import UsageContext

522
523
    validate_run_batch_args(args)

524
    async with build_async_engine_client(
525
526
527
        args,
        usage_context=UsageContext.OPENAI_BATCH_RUNNER,
        disable_frontend_multiprocessing=False,
528
    ) as engine_client:
529
        await run_batch(engine_client, args)
530
531


532
533
534
if __name__ == "__main__":
    args = parse_args()

535
    logger.info("vLLM batch processing API version %s", VLLM_VERSION)
536
537
    logger.info("args: %s", args)

538
539
540
541
542
543
544
545
    # Start the Prometheus metrics server. LLMEngine uses the Prometheus client
    # to publish metrics at the /metrics endpoint.
    if args.enable_metrics:
        logger.info("Prometheus metrics enabled")
        start_http_server(port=args.port, addr=args.url)
    else:
        logger.info("Prometheus metrics disabled")

546
    asyncio.run(main(args))