-
Notifications
You must be signed in to change notification settings - Fork 1
Ops LLM QUOTA TUNING
Navigation: Home > Operations
Component: ThemisDB LLM module β Scheduler and resource governance
Severity: Operational
Last Updated: April 2026
Related Alert: LLMQueueDepthHigh, LLMQueueDepthCritical
This guide explains how to tune the LLM module's throughput limits and queue parameters to balance latency, throughput, and fairness. It also covers the planned per-user and per-model quota system (Q1βQ2 roadmap items) and the steps to configure it once available.
Current state (v1.5): Per-user quotas and backpressure-based rejection are not yet implemented. The parameters listed here relate to the continuous batch scheduler configuration and the maximum queue depth that will be added in Q1.
Incoming requests
β
βΌ
βββββββββββββββββββββββ
β ContinuousBatchScheduler β β queue_max_depth (Q1)
β queue: pending reqs β
ββββββββββ¬βββββββββββββ
β (batch step)
βΌ
βββββββββββββββββββββββ
β Active Batch β β n_batch (max sequences per step)
β (llama_decode) β
ββββββββββ¬βββββββββββββ
β (tokens)
βΌ
Response stream
Key parameters:
| Parameter | Config key | Current default | Effect |
|---|---|---|---|
| Context window | n_ctx |
4096 | Max tokens per session (KV cache size) |
| Batch size | n_batch |
512 | Max tokens processed per decode step |
| Thread count | n_threads |
4 | CPU threads for non-GPU layers |
| Max queue depth | queue_max_depth |
unlimited (Q1) | Requests rejected above this limit |
| Request timeout | request_timeout_ms |
none (Q1) | Max wall-clock time per request |
Cause: Inference throughput is lower than the arrival rate.
Actions:
-
Increase
n_batchβ allows more tokens per decode step, increasing throughput at the cost of slightly higher latency per step.llm: n_batch: 1024 # was 512
-
Increase
n_threadsβ helps on CPU-heavy layers (e.g., embedding, logit processing).llm: n_threads: 8 # was 4
-
Enable GPU offload β if not already enabled, move more layers to GPU with
n_gpu_layers:llm: n_gpu_layers: 40 # increase to use more GPU layers
-
Reduce context window β smaller
n_ctxreduces KV-cache memory, allowing more concurrent sessions. -
Set a maximum queue depth β once implemented (Q1), configure
queue_max_depthto prevent unbounded memory growth and enable backpressure signalling to callers.
Cause: Individual requests are using large context windows or generating many tokens.
Actions:
- Set
max_new_tokensat the API layer to cap output length. - Reduce
n_ctxif large context is not needed. - Switch to a smaller/faster model quantisation (Q4_K_M over Q8_0).
Cause: request_timeout_ms is too aggressive for the workload.
Actions:
- Increase
request_timeout_msproportionally to the expectedmax_new_tokens. - Profile typical request durations:
histogram_quantile(0.99, rate(llm_inference_duration_ms_bucket[5m])). - Set the timeout to β₯ 2Γ the p99 duration.
Once per-user quota enforcement is implemented, the configuration will resemble:
llm:
quotas:
default_user:
tokens_per_minute: 10000
requests_per_minute: 60
power_user:
tokens_per_minute: 100000
requests_per_minute: 600
model_overrides:
llama-3.2-70b-q4_k_m:
tokens_per_minute: 5000 # large model has stricter quotaQuota violations will be recorded as llm_scheduler_rejected_total{reason="quota_exceeded"} and emitted to the audit log.
Use the token generation rate metric to estimate sustainable throughput:
# Steady-state tokens/sec
sum(rate(llm_tokens_generated_total[15m]))
For a 7B Q4_K_M model on an A100 (80 GB), expect roughly:
- ~2 000 tokens/sec with a batch of 512 (continuous batching).
- ~150 tokens/sec on CPU (32-core, AVX-512).
Set queue_max_depth to approximately 2Γ the number of requests that can be served within the target SLO latency:
queue_max_depth = (token_throughput / avg_tokens_per_request) Γ target_latency_seconds Γ 2
Example: 2 000 tokens/sec, 200 avg tokens/request, 30 s SLO target:
queue_max_depth = (2000 / 200) Γ 30 Γ 2 = 600 requests
-
docs/llm_roadmap.mdβ Q1: timeouts/quota/backpressure; Q2: per-user quotas -
prometheus/rules/llm_alerts.ymlβLLMQueueDepthHigh,LLMQueueDepthCriticalalert definitions -
docs/observability/llm_metrics_schema.mdβllm_scheduler_queue_length,llm_scheduler_rejected_totalmetrics -
src/llm/continuous_batch_scheduler.cppβ Scheduler implementation -
src/llm/llama_wrapper.cppβ Configuration validation
ThemisDB 1.9.0-beta Β· Home Β· Module-Index Β· GitHub Β· Issues
ThemisDB 1.9.0-beta Β· Home Β· Wiki-Index Β· Module-Index Β· FAQ Β· Quick-Reference Β· GitHub Β· Issues Β· Discussions Β· License
- Batch Operations
- Best Practices
- CRUD Tutorial
- Custom Document Ingestion
- Getting Started Tutorial
- Interactive Examples
- Schema Design
- Video Tutorials
- AQL Reference
- AQL Examples
- AQL Overview
- AQL Feature Roadmap
- AQL Geospatial Guide
- AQL LLM Migration Guide
- AQL API
- AQL Grammar (EBNF)
- AQL Root Overview
- AQL Examples (root)
- API Reference
- API Module README
- OpenAPI Overview
- Client SDK Overview
- SDK Overview
- Operations
- Operations Overview
- Operations Runbook
- Operations Handbook
- ThemisCtl Admin Guide
- Pipeline E2E SOPs
- Deploy Overview
- Docker Overview
- Docker Hub README
- Helm Overview
- Packaging Overview
- Operator Overview
- Security Policy
- Production Hardening Checklist
- Security Hardening Guide
- Encryption Key Management
- Access Control Framework
- Zero Trust Policy
- API Authentication & Authorization
- HSM Production Setup
- PKCS11 Integration
- DSGVO / SOC2 Checklist
- Access Model Runbooks
- Access Model Dashboard
- Maturity Automation Runbook
- Access Review Automation
- Access Model Dashboard
- Access Model Runbooks
- Rights Revocation
- Dr Checklists
- Dr Testing
- Incident Response Playbook
- Incident Response Testing
- GPU Oom Recovery
- Grammar Debugging
- Metrics Scrape Troubleshooting
- Model Swap Procedure
- Quota Tuning
- Subagent Deployment
- Logging Configuration
- Content Model
- Crypto & Keys
- Feature Flags Reference
- Modular Architecture Roadmap
- Modularization Guide
- Module Architecture Index
- PostgreSQL Wire Protocol
- Query Scheduling
- Raft Consensus Design
- Resource Pooling
- Source Directory Guide
- Unified Access Model
- E1 001 Layered Retrieval Design
- E1 002 Ann Abstraction Strategy
- E1 003 Tensor Summary Types
- E1 004 Lora Package Distinction
- E1 005 Model Switch Compatibility
- E1 006 Federated Tensor Summaries
- E2 001 Evaluation Framework Design
- E2 002 Hardware Profile Strategy
- E2 003 Query Planner Routing Model
- E2 004 Approximation Governance Rules
- E2 005 Cross Layer Fallback Confidence Policy
- E3 001 Distributed Tensor Design
- E3 002 Manifest Coordination Strategy
- E3 003 Recovery And Erasure Choice
- E3 004 Tensor Fabric Infrastructure
- Contributing
- Contributing (root)
- Code of Conduct
- Support
- Maintainers
- CTest Guide
- Build Quick Reference
- Developer Wiki Index
- Build / Test / CI
- Module Index
- Branching Strategy
- Disabled Stub Policy
- Docs PR Policy
- GA Promotion Sign Off
- Github Milestones Setup
- Maturity Claim Verification Checklist
- Maturity Evidence Registry
- Merge Gate Bot Config
- Merge Gate Status Live
- Phase 1 Closure Report
- Phase Closure Policy
- Phase Dependency Graph
- Phase3 Enforcement Runbook
- Plugin Submodule Rollback
- PR Version Targeting
- PR Version Targeting Backfill
- Production Ready 2026 Delivery Plan
- Query Module Status
- Readme
- Release Promotion Gate Policy
- Release Validation Checklist
- Security Module 5671 Evidence Summary
- Sharding P6 Residual Risk Acceptance
- Sourcecode Compliance Governance
- Updates Development Status Sign Off
- Wave C Implementation Complete
- Blob Storage
- Cuda
- Ethics Ai
- Exporters
- Huggingface
- Image Analysis
- Importers
- RPC
- Scraper
- Themisdb Ai Watermark Detector
- User Storage Encrypted
- Chimera Architecture
- Chimera Future
- Chimera Readme
- Chimera Roadmap
- Covina Fastapi Ingestion Architecture
- Covina Fastapi Ingestion Future
- Covina Fastapi Ingestion Roadmap
- Vcc Base Architecture
- Vcc Base Future
- Vcc Base Roadmap
- Vcc Clara Ingestion Architecture
- Vcc Clara Ingestion Future
- Vcc Clara Ingestion Roadmap
- Vcc Veritas Architecture
- Vcc Veritas Future
- Vcc Veritas Roadmap
- 01 Hello World
- 02 Todo App
- 03 Contact Manager
- 04 Inventory System
- 05 Time Series Monitor
- 06 Graph Social Network
- 07 Vector Search Documents
- 08 Dms Erp System
- 09 Iot Sensor Network
- 10 Drone Image Analysis
- 11 Blog Wiki
- 12 Expense Tracker
- 13 Recipe Manager
- 14 Ecommerce Catalog
- 15 Event Management
- 16 Kanban Board
- 17 Crm
- 18 Realtime Chat
- 19 Recommendation Engine
- 20 Smart Home
- 21 Coding Platform
- 22 AQL Diagram Tool
- 23 Traveling Salesman
- 24 Moral Philosophy Debates
- API Versioning
- Distributed Sharding
- Feedback Plugins
- Geo
- Gnn
- Image Analysis
- Legal Lora Training
- LLM
- Lora Sync
- Migration
- Nlp
- Performance
- Railway
- Replication
- Rope Visualization
- Sample Product Config
- Security
- Client SDK Overview
- Quickstart
- Sdk Enhancements
- Sdk Implementation Summary
- Test Suite Readme
- Go
- Java
- Javascript
- Php
- Python
- Ruby
- Rust
- Typescript
- 01 Grundlegende Operationen
- 02 AQL Queries
- 03 Graph Daten
- 04 Multimodell Anwendung
- 01 Quickstart Guide
- 02 AQL Referenz Kurzuebersicht
- 03 Datenmodellierung Guide
- 04 Uebungsaufgaben
- 05 Best Practices Guide
- Training Documents
- Training Overview
- 01 Einfuehrung Und Uebersicht
- 02 Datenmodelle Und Architektur
- 03 AQL Abfragesprache
- 04 Installation Und Setup
- 05 Anwendungsbeispiele
- Training Presentations
- Dependencies Readme
- Processmonitor Readme
- Themis.admintools.shared Readme
- Themis.aqlquerybuilder Readme
- Themis.aqlquerybuilder Roadmap
- Themis.auditlogviewer Readme
- Themis.auditlogviewer Roadmap
- Themis.classificationdashboard Readme
- Themis.classificationdashboard Roadmap
- Themis.compliancereports Readme
- Themis.compliancereports Roadmap
- Themis.gisviewer.controlpanel Readme
- Themis.gisviewer.controlpanel Roadmap
- Themis.impactanalysisviewer Readme
- Themis.impactanalysisviewer Roadmap
- Themis.ingestiontool Readme
- Themis.ingestiontool Roadmap
- Themis.keyrotationdashboard Readme
- Themis.keyrotationdashboard Roadmap
- Themis.piimanager Readme
- Themis.piimanager Roadmap
- Themis.retentionmanager Readme
- Themis.retentionmanager Roadmap
- Themis.sagaverifier Readme
- Themis.sagaverifier Roadmap
- Themis.usbadmintool Readme
- Themis.usbadmintool Roadmap
- CI Readme
- CI Roadmap
- Compiler Diagnostics Readme
- Compiler Diagnostics Roadmap
- Completion Readme
- Copilot Ollama Router Readme
- Copilot Ollama Router Roadmap
- Gnn Readme
- Gnn Roadmap
- Rope Visualizer Readme
- Rope Visualizer Roadmap
- Tco Calculator Readme
- Tco Calculator Roadmap
- Tests Readme
- Tests Roadmap
- Themis Config Wx Readme
- Themis Docs Builder Readme
- Wikipedia Ingestion Readme