run_batch.py 16.4 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
import asyncio
4
import tempfile
5
from collections.abc import Awaitable
6
from http import HTTPStatus
7
from io import StringIO
8
from typing import Callable, Optional
9
10

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

15
from vllm.engine.arg_utils import AsyncEngineArgs, optional_str
16
from vllm.engine.async_llm_engine import AsyncLLMEngine
17
from vllm.entrypoints.logger import RequestLogger, logger
18
# yapf: disable
19
20
from vllm.entrypoints.openai.protocol import (BatchRequestInput,
                                              BatchRequestOutput,
21
22
                                              BatchResponseData,
                                              ChatCompletionResponse,
23
24
                                              EmbeddingResponse, ErrorResponse,
                                              ScoreResponse)
25
# yapf: enable
26
from vllm.entrypoints.openai.serving_chat import OpenAIServingChat
27
from vllm.entrypoints.openai.serving_embedding import OpenAIServingEmbedding
28
29
from vllm.entrypoints.openai.serving_models import (BaseModelPath,
                                                    OpenAIServingModels)
30
from vllm.entrypoints.openai.serving_score import ServingScores
31
from vllm.usage.usage_lib import UsageContext
32
from vllm.utils import FlexibleArgumentParser, random_uuid
33
from vllm.version import __version__ as VLLM_VERSION
34
35
36


def parse_args():
37
    parser = FlexibleArgumentParser(
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
        description="vLLM OpenAI-Compatible batch runner.")
    parser.add_argument(
        "-i",
        "--input-file",
        required=True,
        type=str,
        help=
        "The path or url to a single input file. Currently supports local file "
        "paths, or the http protocol (http or https). If a URL is specified, "
        "the file should be available via HTTP GET.")
    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,"
        " the file should be available via HTTP PUT.")
56
57
58
59
60
61
62
    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.",
    )
63
    parser.add_argument("--response-role",
64
                        type=optional_str,
65
66
                        default="assistant",
                        help="The role name to return if "
67
                        "`request.add_generation_prompt=True`.")
68
69

    parser = AsyncEngineArgs.add_cli_args(parser)
70
71
72
73
74
75
76
77

    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')

78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
    parser.add_argument("--enable-metrics",
                        action="store_true",
                        help="Enable Prometheus metrics")
    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).",
    )
95
96
97
98
99
    parser.add_argument(
        "--enable-prompt-tokens-details",
        action='store_true',
        default=False,
        help="If set to True, enable prompt_tokens_details in usage.")
100

101
102
103
    return parser.parse_args()


104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# 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
        self._pbar: Optional[tqdm] = None

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

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

    def pbar(self) -> tqdm:
        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)
        return self._pbar


136
137
138
139
140
141
async def read_file(path_or_url: str) -> str:
    if path_or_url.startswith("http://") or path_or_url.startswith("https://"):
        async with aiohttp.ClientSession() as session, \
                   session.get(path_or_url) as resp:
            return await resp.text()
    else:
142
        with open(path_or_url, encoding="utf-8") as f:
143
144
145
            return f.read()


146
async def write_local_file(output_path: str,
147
                           batch_outputs: list[BatchRequestOutput]) -> None:
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
    """
    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
    # standalone program, blocking the event loop won't effect performance.
    with open(output_path, "w", encoding="utf-8") as f:
        for o in batch_outputs:
            print(o.model_dump_json(), file=f)


async def upload_data(output_url: str, data_or_file: str,
                      from_file: bool) -> None:
    """
    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).
            async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(
                    total=1000)) as session:
                if from_file:
                    with open(data_or_file, "rb") as file:
                        async with session.put(output_url,
                                               data=file) as response:
                            if response.status != 200:
                                raise Exception(f"Failed to upload file.\n"
                                                f"Status: {response.status}\n"
                                                f"Response: {response.text()}")
                else:
                    async with session.put(output_url,
                                           data=data_or_file) as response:
                        if response.status != 200:
                            raise Exception(f"Failed to upload data.\n"
                                            f"Status: {response.status}\n"
                                            f"Response: {response.text()}")

        except Exception as e:
            if attempt < max_retries:
                logger.error(
                    f"Failed to upload data (attempt {attempt}). "
                    f"Error message: {str(e)}.\nRetrying in {delay} seconds..."
                )
                await asyncio.sleep(delay)
            else:
                raise Exception(f"Failed to upload data (attempt {attempt}). "
                                f"Error message: {str(e)}.") from e


208
async def write_file(path_or_url: str, batch_outputs: list[BatchRequestOutput],
209
210
211
212
213
214
215
216
                     output_tmp_dir: str) -> None:
    """
    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.
    """
217
    if path_or_url.startswith("http://") or path_or_url.startswith("https://"):
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
        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(
                    mode="w",
                    encoding="utf-8",
                    dir=output_tmp_dir,
                    prefix="tmp_batch_output_",
                    suffix=".jsonl",
            ) as f:
                logger.info("Writing outputs to temporary local file %s",
                            f.name)
                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)
244
    else:
245
246
        logger.info("Writing outputs to local file %s", path_or_url)
        await write_local_file(path_or_url, batch_outputs)
247
248


249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
def make_error_request_output(request: BatchRequestInput,
                              error_msg: str) -> BatchRequestOutput:
    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(
        request: BatchRequestInput, error_msg: str) -> BatchRequestOutput:
    return make_error_request_output(request, error_msg)


268
async def run_request(serving_engine_func: Callable,
269
270
                      request: BatchRequestInput,
                      tracker: BatchProgressTracker) -> BatchRequestOutput:
271
    response = await serving_engine_func(request.body)
272

273
274
    if isinstance(response,
                  (ChatCompletionResponse, EmbeddingResponse, ScoreResponse)):
275
276
277
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
278
            response=BatchResponseData(
279
                body=response, request_id=f"vllm-batch-{random_uuid()}"),
280
281
            error=None,
        )
282
    elif isinstance(response, ErrorResponse):
283
284
285
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
286
            response=BatchResponseData(
287
                status_code=response.code,
288
                request_id=f"vllm-batch-{random_uuid()}"),
289
            error=response,
290
        )
291
    else:
292
293
        batch_output = make_error_request_output(
            request, error_msg="Request must not be sent in stream mode")
294

295
    tracker.completed()
296
297
298
299
300
301
302
303
304
305
306
    return batch_output


async def main(args):
    if args.served_model_name is not None:
        served_model_names = args.served_model_name
    else:
        served_model_names = [args.model]

    engine_args = AsyncEngineArgs.from_cli_args(args)
    engine = AsyncLLMEngine.from_engine_args(
307
        engine_args, usage_context=UsageContext.OPENAI_BATCH_RUNNER)
308
309

    model_config = await engine.get_model_config()
310
311
312
313
    base_model_paths = [
        BaseModelPath(name=name, model_path=args.model)
        for name in served_model_names
    ]
314

315
316
317
318
319
    if args.disable_log_requests:
        request_logger = None
    else:
        request_logger = RequestLogger(max_log_len=args.max_log_len)

320
    # Create the openai serving objects.
321
    openai_serving_models = OpenAIServingModels(
322
        engine_client=engine,
323
324
325
326
327
        model_config=model_config,
        base_model_paths=base_model_paths,
        lora_modules=None,
        prompt_adapters=None,
    )
328
329
330
    openai_serving_chat = OpenAIServingChat(
        engine,
        model_config,
331
        openai_serving_models,
332
        args.response_role,
333
334
        request_logger=request_logger,
        chat_template=None,
335
        chat_template_content_format="auto",
336
        enable_prompt_tokens_details=args.enable_prompt_tokens_details,
337
    ) if model_config.runner_type == "generate" else None
338
339
340
    openai_serving_embedding = OpenAIServingEmbedding(
        engine,
        model_config,
341
        openai_serving_models,
342
        request_logger=request_logger,
343
        chat_template=None,
344
        chat_template_content_format="auto",
345
    ) if model_config.task == "embed" else None
346
    openai_serving_scores = (ServingScores(
347
348
349
350
351
        engine,
        model_config,
        openai_serving_models,
        request_logger=request_logger,
    ) if model_config.task == "score" else None)
352

353
354
355
    tracker = BatchProgressTracker()
    logger.info("Reading batch from %s...", args.input_file)

356
    # Submit all requests in the file to the engine "concurrently".
357
    response_futures: list[Awaitable[BatchRequestOutput]] = []
358
    for request_json in (await read_file(args.input_file)).strip().split("\n"):
359
360
361
362
363
        # Skip empty lines.
        request_json = request_json.strip()
        if not request_json:
            continue

364
        request = BatchRequestInput.model_validate_json(request_json)
365
366
367

        # Determine the type of request and run it.
        if request.url == "/v1/chat/completions":
368
369
370
            chat_handler_fn = (None if openai_serving_chat is None else
                               openai_serving_chat.create_chat_completion)
            if chat_handler_fn is None:
371
372
373
374
375
376
377
378
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg=
                        "The model does not support Chat Completions API",
                    ))
                continue

379
380
            response_futures.append(
                run_request(chat_handler_fn, request, tracker))
381
            tracker.submitted()
382
        elif request.url == "/v1/embeddings":
383
384
385
            embed_handler_fn = (None if openai_serving_embedding is None else
                                openai_serving_embedding.create_embedding)
            if embed_handler_fn is None:
386
387
388
389
390
391
392
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg="The model does not support Embeddings API",
                    ))
                continue

393
394
            response_futures.append(
                run_request(embed_handler_fn, request, tracker))
395
396
            tracker.submitted()
        elif request.url == "/v1/score":
397
398
399
            score_handler_fn = (None if openai_serving_scores is None else
                                openai_serving_scores.create_score)
            if score_handler_fn is None:
400
401
402
403
404
405
406
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg="The model does not support Scores API",
                    ))
                continue

407
408
            response_futures.append(
                run_request(score_handler_fn, request, tracker))
409
            tracker.submitted()
410
        else:
411
412
413
            response_futures.append(
                make_async_error_request_output(
                    request,
414
415
416
                    error_msg=
                    "Only /v1/chat/completions, /v1/embeddings, and /v1/score "
                    "are supported in the batch endpoint.",
417
                ))
418

419
420
    with tracker.pbar():
        responses = await asyncio.gather(*response_futures)
421

422
    await write_file(args.output_file, responses, args.output_tmp_dir)
423
424
425
426
427


if __name__ == "__main__":
    args = parse_args()

428
    logger.info("vLLM batch processing API version %s", VLLM_VERSION)
429
430
    logger.info("args: %s", args)

431
432
433
434
435
436
437
438
    # 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")

439
    asyncio.run(main(args))