run_batch.py 11 KB
Newer Older
1
import asyncio
2
from http import HTTPStatus
3
from io import StringIO
4
from typing import Awaitable, Callable, List, Optional
5
6

import aiohttp
7
import torch
8
from prometheus_client import start_http_server
9
from tqdm import tqdm
10
11
12

from vllm.engine.arg_utils import AsyncEngineArgs, nullable_str
from vllm.engine.async_llm_engine import AsyncLLMEngine
13
from vllm.entrypoints.logger import RequestLogger, logger
14
# yapf: disable
15
16
from vllm.entrypoints.openai.protocol import (BatchRequestInput,
                                              BatchRequestOutput,
17
18
                                              BatchResponseData,
                                              ChatCompletionResponse,
19
20
                                              EmbeddingResponse, ErrorResponse)
# yapf: enable
21
from vllm.entrypoints.openai.serving_chat import OpenAIServingChat
22
from vllm.entrypoints.openai.serving_embedding import OpenAIServingEmbedding
23
from vllm.entrypoints.openai.serving_engine import BaseModelPath
24
from vllm.usage.usage_lib import UsageContext
25
from vllm.utils import FlexibleArgumentParser, random_uuid
26
from vllm.version import __version__ as VLLM_VERSION
27
28
29


def parse_args():
30
    parser = FlexibleArgumentParser(
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
        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.")
    parser.add_argument("--response-role",
                        type=nullable_str,
                        default="assistant",
                        help="The role name to return if "
53
                        "`request.add_generation_prompt=True`.")
54
55

    parser = AsyncEngineArgs.add_cli_args(parser)
56
57
58
59
60
61
62
63

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

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
    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).",
    )
81
82
83
84
85
    parser.add_argument(
        "--enable-prompt-tokens-details",
        action='store_true',
        default=False,
        help="If set to True, enable prompt_tokens_details in usage.")
86

87
88
89
    return parser.parse_args()


90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# 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


122
123
124
125
126
127
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:
128
        with open(path_or_url, encoding="utf-8") as f:
129
130
131
132
133
134
135
136
137
138
139
140
            return f.read()


async def write_file(path_or_url: str, data: str) -> None:
    if path_or_url.startswith("http://") or path_or_url.startswith("https://"):
        async with aiohttp.ClientSession() as session, \
                   session.put(path_or_url, data=data.encode("utf-8")):
            pass
    else:
        # We should make this async, but as long as this is always run as a
        # standalone program, blocking the event loop won't effect performance
        # in this particular case.
141
        with open(path_or_url, "w", encoding="utf-8") as f:
142
143
144
            f.write(data)


145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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)


164
async def run_request(serving_engine_func: Callable,
165
166
                      request: BatchRequestInput,
                      tracker: BatchProgressTracker) -> BatchRequestOutput:
167
    response = await serving_engine_func(request.body)
168

169
    if isinstance(response, (ChatCompletionResponse, EmbeddingResponse)):
170
171
172
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
173
            response=BatchResponseData(
174
                body=response, request_id=f"vllm-batch-{random_uuid()}"),
175
176
            error=None,
        )
177
    elif isinstance(response, ErrorResponse):
178
179
180
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
181
            response=BatchResponseData(
182
                status_code=response.code,
183
                request_id=f"vllm-batch-{random_uuid()}"),
184
            error=response,
185
        )
186
    else:
187
188
        batch_output = make_error_request_output(
            request, error_msg="Request must not be sent in stream mode")
189

190
    tracker.completed()
191
192
193
194
195
196
197
198
199
200
201
    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(
202
        engine_args, usage_context=UsageContext.OPENAI_BATCH_RUNNER)
203
204

    model_config = await engine.get_model_config()
205
206
207
208
    base_model_paths = [
        BaseModelPath(name=name, model_path=args.model)
        for name in served_model_names
    ]
209

210
211
212
213
214
    if args.disable_log_requests:
        request_logger = None
    else:
        request_logger = RequestLogger(max_log_len=args.max_log_len)

215
    # Create the openai serving objects.
216
217
218
    openai_serving_chat = OpenAIServingChat(
        engine,
        model_config,
219
        base_model_paths,
220
        args.response_role,
221
222
223
224
        lora_modules=None,
        prompt_adapters=None,
        request_logger=request_logger,
        chat_template=None,
225
        chat_template_content_format="auto",
226
        enable_prompt_tokens_details=args.enable_prompt_tokens_details,
227
    ) if model_config.runner_type == "generate" else None
228
229
230
    openai_serving_embedding = OpenAIServingEmbedding(
        engine,
        model_config,
231
        base_model_paths,
232
        request_logger=request_logger,
233
        chat_template=None,
234
        chat_template_content_format="auto",
235
    ) if model_config.task == "embed" else None
236

237
238
239
    tracker = BatchProgressTracker()
    logger.info("Reading batch from %s...", args.input_file)

240
    # Submit all requests in the file to the engine "concurrently".
241
    response_futures: List[Awaitable[BatchRequestOutput]] = []
242
    for request_json in (await read_file(args.input_file)).strip().split("\n"):
243
244
245
246
247
        # Skip empty lines.
        request_json = request_json.strip()
        if not request_json:
            continue

248
        request = BatchRequestInput.model_validate_json(request_json)
249
250
251

        # Determine the type of request and run it.
        if request.url == "/v1/chat/completions":
252
253
254
255
256
257
258
259
260
261
262
263
            handler_fn = (None if openai_serving_chat is None else
                          openai_serving_chat.create_chat_completion)
            if handler_fn is None:
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg=
                        "The model does not support Chat Completions API",
                    ))
                continue

            response_futures.append(run_request(handler_fn, request, tracker))
264
            tracker.submitted()
265
        elif request.url == "/v1/embeddings":
266
267
268
269
270
271
272
273
274
275
276
            handler_fn = (None if openai_serving_embedding is None else
                          openai_serving_embedding.create_embedding)
            if handler_fn is None:
                response_futures.append(
                    make_async_error_request_output(
                        request,
                        error_msg="The model does not support Embeddings API",
                    ))
                continue

            response_futures.append(run_request(handler_fn, request, tracker))
277
            tracker.submitted()
278
        else:
279
280
281
282
283
284
            response_futures.append(
                make_async_error_request_output(
                    request,
                    error_msg="Only /v1/chat/completions and "
                    "/v1/embeddings are supported in the batch endpoint.",
                ))
285

286
287
    with tracker.pbar():
        responses = await asyncio.gather(*response_futures)
288
289
290
291
292
293
294
295
296
297
298
299

    output_buffer = StringIO()
    for response in responses:
        print(response.model_dump_json(), file=output_buffer)

    output_buffer.seek(0)
    await write_file(args.output_file, output_buffer.read().strip())


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

300
    logger.info("vLLM batch processing API version %s", VLLM_VERSION)
301
302
    logger.info("args: %s", args)

303
304
305
306
307
308
309
310
    # 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")

311
    asyncio.run(main(args))