
- **Add SPDX license headers to python source files** - **Check for SPDX headers using pre-commit** commit 9d7ef44c3cfb72ca4c32e1c677d99259d10d4745 Author: Russell Bryant <rbryant@redhat.com> Date: Fri Jan 31 14:18:24 2025 -0500 Add SPDX license headers to python source files This commit adds SPDX license headers to python source files as recommended to the project by the Linux Foundation. These headers provide a concise way that is both human and machine readable for communicating license information for each source file. It helps avoid any ambiguity about the license of the code and can also be easily used by tools to help manage license compliance. The Linux Foundation runs license scans against the codebase to help ensure we are in compliance with the licenses of the code we use, including dependencies. Having these headers in place helps that tool do its job. More information can be found on the SPDX site: - https://spdx.dev/learn/handling-license-info/ Signed-off-by: Russell Bryant <rbryant@redhat.com> commit 5a1cf1cb3b80759131c73f6a9dddebccac039dea Author: Russell Bryant <rbryant@redhat.com> Date: Fri Jan 31 14:36:32 2025 -0500 Check for SPDX headers using pre-commit Signed-off-by: Russell Bryant <rbryant@redhat.com> --------- Signed-off-by: Russell Bryant <rbryant@redhat.com>
113 lines
3.4 KiB
Python
113 lines
3.4 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
from multiprocessing import Pool
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
import requests
|
|
|
|
|
|
def _query_server(prompt: str, max_tokens: int = 5) -> dict:
|
|
response = requests.post("http://localhost:8000/generate",
|
|
json={
|
|
"prompt": prompt,
|
|
"max_tokens": max_tokens,
|
|
"temperature": 0,
|
|
"ignore_eos": True
|
|
})
|
|
response.raise_for_status()
|
|
return response.json()
|
|
|
|
|
|
def _query_server_long(prompt: str) -> dict:
|
|
return _query_server(prompt, max_tokens=500)
|
|
|
|
|
|
@pytest.fixture
|
|
def api_server(tokenizer_pool_size: int, distributed_executor_backend: str):
|
|
script_path = Path(__file__).parent.joinpath(
|
|
"api_server_async_engine.py").absolute()
|
|
commands = [
|
|
sys.executable,
|
|
"-u",
|
|
str(script_path),
|
|
"--model",
|
|
"facebook/opt-125m",
|
|
"--host",
|
|
"127.0.0.1",
|
|
"--tokenizer-pool-size",
|
|
str(tokenizer_pool_size),
|
|
"--distributed-executor-backend",
|
|
distributed_executor_backend,
|
|
]
|
|
|
|
uvicorn_process = subprocess.Popen(commands)
|
|
yield
|
|
uvicorn_process.terminate()
|
|
|
|
|
|
@pytest.mark.parametrize("tokenizer_pool_size", [0, 2])
|
|
@pytest.mark.parametrize("distributed_executor_backend", ["mp", "ray"])
|
|
def test_api_server(api_server, tokenizer_pool_size: int,
|
|
distributed_executor_backend: str):
|
|
"""
|
|
Run the API server and test it.
|
|
|
|
We run both the server and requests in separate processes.
|
|
|
|
We test that the server can handle incoming requests, including
|
|
multiple requests at the same time, and that it can handle requests
|
|
being cancelled without crashing.
|
|
"""
|
|
with Pool(32) as pool:
|
|
# Wait until the server is ready
|
|
prompts = ["warm up"] * 1
|
|
result = None
|
|
while not result:
|
|
try:
|
|
for r in pool.map(_query_server, prompts):
|
|
result = r
|
|
break
|
|
except requests.exceptions.ConnectionError:
|
|
time.sleep(1)
|
|
|
|
# Actual tests start here
|
|
# Try with 1 prompt
|
|
for result in pool.map(_query_server, prompts):
|
|
assert result
|
|
|
|
num_aborted_requests = requests.get(
|
|
"http://localhost:8000/stats").json()["num_aborted_requests"]
|
|
assert num_aborted_requests == 0
|
|
|
|
# Try with 100 prompts
|
|
prompts = ["test prompt"] * 100
|
|
for result in pool.map(_query_server, prompts):
|
|
assert result
|
|
|
|
with Pool(32) as pool:
|
|
# Cancel requests
|
|
prompts = ["canceled requests"] * 100
|
|
pool.map_async(_query_server_long, prompts)
|
|
time.sleep(0.01)
|
|
pool.terminate()
|
|
pool.join()
|
|
|
|
# check cancellation stats
|
|
# give it some times to update the stats
|
|
time.sleep(1)
|
|
|
|
num_aborted_requests = requests.get(
|
|
"http://localhost:8000/stats").json()["num_aborted_requests"]
|
|
assert num_aborted_requests > 0
|
|
|
|
# check that server still runs after cancellations
|
|
with Pool(32) as pool:
|
|
# Try with 100 prompts
|
|
prompts = ["test prompt after canceled"] * 100
|
|
for result in pool.map(_query_server, prompts):
|
|
assert result
|