-
Notifications
You must be signed in to change notification settings - Fork 1
apis_hot_reload
Stand: 5. Dezember 2025
Version: 1.0.0
Kategorie: Apis
The Hot-Reload system allows ThemisDB to be updated without downtime by:
- Downloading new release files from GitHub
- Verifying integrity with SHA-256 hashes and signatures
- Creating automatic backups
- Atomically replacing files
- Rolling back on failure
Get the manifest for a specific version.
GET /api/updates/manifests/:versionExample:
curl http://localhost:8765/api/updates/manifests/1.2.0Response:
{
"version": "1.2.0",
"tag_name": "v1.2.0",
"release_notes": "Security fixes...",
"is_critical": true,
"files": [
{
"path": "bin/themis_server",
"type": "executable",
"sha256_hash": "e3b0c44...",
"size_bytes": 1024000,
"platform": "linux",
"architecture": "x64",
"download_url": "https://..."
}
],
"manifest_hash": "abc123...",
"signature": "...",
"build_commit": "abc123"
}Download all files for a release.
POST /api/updates/download/:versionExample:
curl -X POST http://localhost:8765/api/updates/download/1.2.0Response:
{
"success": true,
"version": "1.2.0",
"download_path": "/tmp/themis_updates/1.2.0",
"manifest": { ... }
}Apply a hot-reload update. Requires admin authentication.
POST /api/updates/apply/:versionRequest Body (optional):
{
"verify_only": false
}Example:
# Dry-run (verify only)
curl -X POST http://localhost:8765/api/updates/apply/1.2.0 \
-H "Authorization: Bearer $ADMIN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"verify_only": true}'
# Actual apply
curl -X POST http://localhost:8765/api/updates/apply/1.2.0 \
-H "Authorization: Bearer $ADMIN_TOKEN"Response:
{
"success": true,
"version": "1.2.0",
"verify_only": false,
"files_updated": [
"bin/themis_server",
"lib/themis_core.so"
],
"rollback_id": "rollback_1234567890"
}Rollback to a previous version. Requires admin authentication.
POST /api/updates/rollback/:rollback_idExample:
curl -X POST http://localhost:8765/api/updates/rollback/rollback_1234567890 \
-H "Authorization: Bearer $ADMIN_TOKEN"Response:
{
"success": true,
"rollback_id": "rollback_1234567890"
}List all available rollback points.
GET /api/updates/rollbackExample:
curl http://localhost:8765/api/updates/rollbackResponse:
{
"rollback_points": [
{
"rollback_id": "rollback_1234567890",
"timestamp": "2025-01-20T10:30:00Z"
},
{
"rollback_id": "rollback_1234567800",
"timestamp": "2025-01-19T15:20:00Z"
}
],
"count": 2
}# Check if updates are available
curl http://localhost:8765/api/updates
# Response shows new version available
{
"status": "update_available",
"current_version": "1.0.0",
"latest_release": {
"version": "1.2.0",
...
}
}# Download release files
curl -X POST http://localhost:8765/api/updates/download/1.2.0
# Wait for download to complete
{
"success": true,
"download_path": "/tmp/themis_updates/1.2.0"
}# Dry-run to verify
curl -X POST http://localhost:8765/api/updates/apply/1.2.0 \
-H "Authorization: Bearer $ADMIN_TOKEN" \
-d '{"verify_only": true}'
# If verification passes
{
"success": true,
"verify_only": true
}# Apply hot-reload
curl -X POST http://localhost:8765/api/updates/apply/1.2.0 \
-H "Authorization: Bearer $ADMIN_TOKEN"
# Update applied
{
"success": true,
"files_updated": ["bin/themis_server", ...],
"rollback_id": "rollback_1234567890"
}# If something goes wrong, rollback
curl -X POST http://localhost:8765/api/updates/rollback/rollback_1234567890 \
-H "Authorization: Bearer $ADMIN_TOKEN"Enable hot-reload in server configuration:
http_server:
feature_update_checker: true # Enable update checker
feature_hot_reload: true # Enable hot-reload (future)# Update checker
export THEMIS_GITHUB_API_TOKEN=ghp_xxxxx
export THEMIS_UPDATE_CHECK_INTERVAL=3600
# Hot-reload directories
export THEMIS_DOWNLOAD_DIR=/tmp/themis_updates
export THEMIS_BACKUP_DIR=/var/lib/themisdb/rollback- Public endpoints: GET /api/updates/manifests/:version, GET /api/updates/rollback
- Protected endpoints: POST /api/updates/apply/:version, POST /api/updates/rollback/:id
Protected endpoints require:
- Admin token in Authorization header
- Scope:
adminorupdate:apply
All files are verified with:
- SHA-256 hash - File integrity
- CMS signature - Authenticity (if manifest has signature)
- Size check - Completeness
- Manifest hash - Overall integrity
- Automatic backup created before every update
- Atomic file replacement prevents partial updates
- Rollback points kept for configurable retention period
- Default: Keep last 3 rollback points
Download Failed:
{
"success": false,
"error": "Failed to download file: bin/themis_server"
}Verification Failed:
{
"success": false,
"error": "Hash mismatch for file: bin/themis_server"
}Incompatible Upgrade:
{
"success": false,
"error": "Incompatible upgrade from 0.9.0 to 1.2.0"
}Manifest Not Found:
{
"error": "Manifest not found for version: 1.2.0",
"status": 404
}The hot-reload system integrates seamlessly with the update checker:
# 1. Update checker detects new version
GET /api/updates
# -> "status": "critical_update"
# 2. Download automatically or manually
POST /api/updates/download/1.2.0
# 3. Apply critical patch (can be automated)
POST /api/updates/apply/1.2.0For critical security updates, the system can be configured to:
- Auto-download on detection
- Auto-apply critical patches
- Send notifications before applying
The hot-reload engine supports progress callbacks for monitoring:
reload_engine->setProgressCallback([](int percentage, const std::string& message) {
LOG_INFO("Progress: {}% - {}", percentage, message);
// Send to monitoring system
});Track hot-reload metrics:
- Number of successful updates
- Number of rollbacks
- Average download time
- Average apply time
- Failed updates
-
Always verify first - Use
verify_only=truebefore applying - Monitor disk space - Download directory needs space for release files
- Keep rollback points - Don't clean too aggressively
- Test in staging - Apply updates to staging environment first
- Schedule maintenance - Apply non-critical updates during low traffic
- Auto-apply critical - Consider auto-applying security patches
- Monitor logs - Check logs after applying updates
Current limitations:
- Cannot update running server binary (requires restart)
- No support for database schema migrations
- Rollback doesn't restore database state
- CURL required for downloads
- No multi-node coordination yet
Future enhancements planned:
- Graceful restart after update
- Database migration support
- Multi-node rolling updates
- WebSocket progress streaming
- Update scheduling
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