# PaddleOCR-VL High-Performance Serving [简体中文](README.md) This directory provides a high-performance service deployment solution for the **PaddleOCR-VL series** with concurrent request processing support. It applies to VL pipeline releases such as `PaddleOCR-VL`, `PaddleOCR-VL-1.5`, and `PaddleOCR-VL-1.6`. > This solution currently only supports NVIDIA GPUs. Support for other inference devices is still being developed. ## Architecture ``` Client → FastAPI Gateway → Triton Server → vLLM Server ``` | Component | Description | | -----------------| -----------------------------------------------------------------------------------------------------------------------------| | FastAPI Gateway | Unified access point, simplified client calls, concurrency control | | Triton Server | Layout analysis model (such as PP-DocLayoutV3) and pipeline orchestration; model management, dynamic batching, inference scheduling | | vLLM Server | VLM, continuous batching inference | **Triton Models:** | Model | Device | Description | |-------|--------|-------------| | `layout-parsing` | Inference device (e.g., GPU) | Layout parsing inference | | `restructure-pages` | CPU | Multi-page result post-processing (cross-page table merging, title level reassignment) | ## Requirements - x64 CPU - NVIDIA GPU, Compute Capability >= 8.0 and < 10.0 - NVIDIA driver supporting CUDA 12.6 - Docker >= 19.03 - Docker Compose >= 2.0 ## Quick Start 1. Clone the PaddleOCR repository and navigate to this directory: ```bash git clone https://github.com/PaddlePaddle/PaddleOCR.git cd PaddleOCR/deploy/paddleocr_vl_docker/hps ``` 2. Prepare necessary files: ```bash cp .env.example .env # Edit HPS_PIPELINE_NAME in .env if needed bash prepare.sh ``` `prepare.sh` downloads the high-stability serving SDK for the selected PaddleOCR-VL release and writes the Triton pipeline config. 3. Start the services: ```bash docker compose up ``` The above command will start 3 containers in sequence: | Service | Description | Port | |---------|-------------|------| | `paddleocr-vl-api` | FastAPI gateway (external entry point) | 8080 | | `paddleocr-vl-pipeline` | Triton inference server running the pipeline | 8000 (internal) | | `paddleocr-vlm-server` | vLLM-based VLM inference service | 8080 (internal) | > The first startup will automatically download and build images, which takes longer. Subsequent startups will use local images and start faster. ## Configuration ### Environment Variables Copy `.env.example` to `.env` and modify as needed. ```bash cp .env.example .env ``` You can also set these as environment variables directly instead of using the `.env` file, e.g.: ```bash export HPS_MAX_CONCURRENT_INFERENCE_REQUESTS=8 ``` #### Pipeline and SDK Configuration Use the following variables to choose a release from the PaddleOCR-VL series. After changing them, rerun `prepare.sh` and rebuild the images: This solution reuses the PaddleX [High-Stability Serving](https://paddlepaddle.github.io/PaddleX/latest/en/pipeline_deploy/serving.html#2-high-stability-serving) SDK as the base Triton model repository and client dependency, and adds a PaddleOCR-VL-specific FastAPI gateway and vLLM service orchestration on top. | Variable | Default | Description | |----------|---------|-------------| | `HPS_PIPELINE_NAME` | `PaddleOCR-VL-1.6` | Pipeline name | | `HPS_PADDLEX_VERSION` | `3.6` | PaddleX version (major.minor only, e.g. `3.6`). Drives both the Triton base image tag (`paddlex${HPS_PADDLEX_VERSION}-gpu`) and the SDK release directory (`v${HPS_PADDLEX_VERSION}`), keeping them in sync | | `HPS_SDK_DIR` | `paddlex_hps_PaddleOCR-VL-1.6_sdk` | Extracted SDK directory, following `paddlex_hps_${HPS_PIPELINE_NAME}_sdk` | Common examples: | Target release | `HPS_PIPELINE_NAME` | `HPS_SDK_DIR` | |----------------|-----------------|---------------| | PaddleOCR-VL-1.6 | `PaddleOCR-VL-1.6` | `paddlex_hps_PaddleOCR-VL-1.6_sdk` | | PaddleOCR-VL-1.5 | `PaddleOCR-VL-1.5` | `paddlex_hps_PaddleOCR-VL-1.5_sdk` | | PaddleOCR-VL (v1) | `PaddleOCR-VL` | `paddlex_hps_PaddleOCR-VL_sdk` | #### Gateway and Device | Variable | Default | Description | |----------|---------|-------------| | `HPS_MAX_CONCURRENT_INFERENCE_REQUESTS` | 16 | Max concurrent inference requests (layout parsing) | | `HPS_MAX_CONCURRENT_NON_INFERENCE_REQUESTS` | 64 | Max concurrent non-inference requests (page restructuring) | | `HPS_INFERENCE_TIMEOUT` | 600 | Request timeout in seconds | | `HPS_HEALTH_CHECK_TIMEOUT` | 5 | Health check timeout in seconds | | `HPS_VLM_URL` | http://paddleocr-vlm-server:8080 | VLM server URL | | `HPS_LOG_LEVEL` | INFO | Log level (DEBUG, INFO, WARNING, ERROR) | | `HPS_FILTER_HEALTH_ACCESS_LOG` | true | Whether to filter health check access logs | | `HPS_UVICORN_WORKERS` | 4 | Number of gateway worker processes | | `HPS_DEVICE_ID` | 0 | Inference device ID to use | ### Pipeline Configuration To adjust pipeline configurations (such as model path, batch size, deployment device, etc.), please refer to the Pipeline Configuration section in the [PaddleOCR-VL Usage Tutorial](https://github.com/PaddlePaddle/PaddleOCR/blob/main/docs/version3.x/pipeline_usage/PaddleOCR-VL.en.md). ## API Usage ### Document Parsing Please refer to the Client-Side Invocation section in the [PaddleOCR-VL Usage Tutorial](https://github.com/PaddlePaddle/PaddleOCR/blob/main/docs/version3.x/pipeline_usage/PaddleOCR-VL.en.md). The service accepts PDF or image files (including TIFF; multi-page TIFF is processed page by page—use `fileType=1`). ### Health Checks ```bash # Liveness check curl http://localhost:8080/health # Readiness check (verifies Triton and VLM services are ready to process requests) curl http://localhost:8080/health/ready ``` ## Performance Tuning ### Concurrency Settings The gateway controls concurrency for inference and non-inference operations independently: - **`HPS_MAX_CONCURRENT_INFERENCE_REQUESTS`** (default 16): Controls concurrency for inference operations such as `layout-parsing` (layout parsing) - Too low (4): Underutilized inference device, requests queue unnecessarily - Too high (64): May overload Triton, causing OOM or timeouts - Default value of 16 allows enough requests to queue for the next batch while the current batch is being processed - If inference device resources are limited, consider lowering this value - **`HPS_MAX_CONCURRENT_NON_INFERENCE_REQUESTS`** (default 64): Controls concurrency for non-inference operations such as `restructure-pages` (page restructuring) - Non-inference operations do not consume inference device resources and can be set to a higher concurrency level - Adjust based on CPU cores and available memory **High-throughput configuration example:** ```bash # .env HPS_MAX_CONCURRENT_INFERENCE_REQUESTS=32 HPS_MAX_CONCURRENT_NON_INFERENCE_REQUESTS=128 HPS_UVICORN_WORKERS=8 ``` **Low-latency configuration example:** ```bash # .env HPS_MAX_CONCURRENT_INFERENCE_REQUESTS=8 HPS_MAX_CONCURRENT_NON_INFERENCE_REQUESTS=32 HPS_INFERENCE_TIMEOUT=300 HPS_UVICORN_WORKERS=2 ``` ### Worker Processes Each Uvicorn worker is an independent process with its own event loop: - **1 worker**: Simple, but limited to a single process - **4 workers**: Suitable for most scenarios - **8+ workers**: Suitable for high-concurrency scenarios with many small requests ### Triton Dynamic Batching Triton automatically batches requests to improve inference device utilization. The maximum batch size is controlled by the `max_batch_size` parameter in the model configuration file (default: 8), located at `config.pbtxt` under each model directory in the model repository (e.g., `model_repo/layout-parsing/config.pbtxt`). ### Triton Instance Count The number of parallel inference instances for each Triton model is configured via the `instance_group` section in `config.pbtxt` (default: 1). Increasing the instance count improves parallelism but consumes more device resources. ``` # model_repo/layout-parsing/config.pbtxt instance_group [ { count: 1 # Number of instances; increase for higher parallelism kind: KIND_GPU gpus: [ 0 ] } ] ``` There is a trade-off between instance count and dynamic batching: - **Single instance (`count: 1`)**: Dynamic batching combines multiple requests into one batch for parallel execution, but all requests in the same batch must wait for the slowest one to finish before results are returned, which may increase latency for faster requests. Additionally, a single instance can only process one batch at a time — subsequent requests must queue until the current batch completes. Best suited for scenarios with limited GPU memory or uniform request processing times - **Multiple instances (`count: 2+`)**: Multiple instances can process different batches simultaneously, allowing more requests to be handled concurrently. This reduces queuing time and improves latency for individual requests. Note that within each instance, dynamic batching behavior still applies (requests in the same batch start and finish together). Each additional instance consumes an extra copy of the layout analysis model's GPU memory, increases the load on the VLM inference service, and uses more CPU and system memory. Adjust based on the available resources of your inference device Non-inference models (e.g., `restructure-pages`) run on CPU and can have their instance count increased based on available CPU cores. ## Troubleshooting and Resolution ### Service Fails to Start Check the logs for each service to identify the issue: ```bash docker compose logs paddleocr-vl-api docker compose logs paddleocr-vl-pipeline docker compose logs paddleocr-vlm-server ``` Common causes include port conflicts, unavailable inference devices, or image pull failures. ### Timeout Errors - Increase `HPS_INFERENCE_TIMEOUT` (for complex documents) - If the inference device is overloaded, reduce `HPS_MAX_CONCURRENT_INFERENCE_REQUESTS` ### Out of Memory - Reduce `HPS_MAX_CONCURRENT_INFERENCE_REQUESTS` - Ensure only one service runs per inference device - Check `shm_size` in compose.yaml (default: 4GB)