run_batch.py 7.57 KB
Newer Older
1
2
import asyncio
from io import StringIO
3
from typing import Awaitable, Callable, List
4
5

import aiohttp
6
from prometheus_client import start_http_server
7
8
9

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


def parse_args():
26
    parser = FlexibleArgumentParser(
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
        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 "
49
                        "`request.add_generation_prompt=True`.")
50
51

    parser = AsyncEngineArgs.add_cli_args(parser)
52
53
54
55
56
57
58
59

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

60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
    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).",
    )

78
79
80
81
82
83
84
85
86
    return parser.parse_args()


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:
87
        with open(path_or_url, "r", encoding="utf-8") as f:
88
89
90
91
92
93
94
95
96
97
98
99
            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.
100
        with open(path_or_url, "w", encoding="utf-8") as f:
101
102
103
            f.write(data)


104
async def run_request(serving_engine_func: Callable,
105
                      request: BatchRequestInput) -> BatchRequestOutput:
106
    response = await serving_engine_func(request.body)
107

108
    if isinstance(response, (ChatCompletionResponse, EmbeddingResponse)):
109
110
111
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
112
            response=BatchResponseData(
113
                body=response, request_id=f"vllm-batch-{random_uuid()}"),
114
115
            error=None,
        )
116
    elif isinstance(response, ErrorResponse):
117
118
119
        batch_output = BatchRequestOutput(
            id=f"vllm-{random_uuid()}",
            custom_id=request.custom_id,
120
            response=BatchResponseData(
121
                status_code=response.code,
122
                request_id=f"vllm-batch-{random_uuid()}"),
123
            error=response,
124
        )
125
126
127
    else:
        raise ValueError("Request must not be sent in stream mode")

128
129
130
131
132
133
134
135
136
137
138
    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(
139
        engine_args, usage_context=UsageContext.OPENAI_BATCH_RUNNER)
140
141
142
143

    # When using single vLLM without engine_use_ray
    model_config = await engine.get_model_config()

144
145
146
147
148
    if args.disable_log_requests:
        request_logger = None
    else:
        request_logger = RequestLogger(max_log_len=args.max_log_len)

149
    # Create the openai serving objects.
150
151
152
153
154
    openai_serving_chat = OpenAIServingChat(
        engine,
        model_config,
        served_model_names,
        args.response_role,
155
156
157
158
        lora_modules=None,
        prompt_adapters=None,
        request_logger=request_logger,
        chat_template=None,
159
    )
160
161
162
163
164
165
    openai_serving_embedding = OpenAIServingEmbedding(
        engine,
        model_config,
        served_model_names,
        request_logger=request_logger,
    )
166
167

    # Submit all requests in the file to the engine "concurrently".
168
    response_futures: List[Awaitable[BatchRequestOutput]] = []
169
    for request_json in (await read_file(args.input_file)).strip().split("\n"):
170
171
172
173
174
        # Skip empty lines.
        request_json = request_json.strip()
        if not request_json:
            continue

175
        request = BatchRequestInput.model_validate_json(request_json)
176
177
178
179
180
181
182
183
184
185
186
187
188

        # Determine the type of request and run it.
        if request.url == "/v1/chat/completions":
            response_futures.append(
                run_request(openai_serving_chat.create_chat_completion,
                            request))
        elif request.url == "/v1/embeddings":
            response_futures.append(
                run_request(openai_serving_embedding.create_embedding,
                            request))
        else:
            raise ValueError("Only /v1/chat/completions and /v1/embeddings are"
                             "supported in the batch endpoint.")
189
190
191
192
193
194
195
196
197
198
199
200
201
202

    responses = await asyncio.gather(*response_futures)

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

203
    logger.info("vLLM batch processing API version %s", VLLM_VERSION)
204
205
    logger.info("args: %s", args)

206
207
208
209
210
211
212
213
    # 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")

214
    asyncio.run(main(args))