- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
52 lines
997 B
Plaintext
52 lines
997 B
Plaintext
# Multiuser Team Mode Overlay
|
|
# Tuning for team staging environment (4 CPU, 8GB RAM)
|
|
|
|
{
|
|
orchestrator = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
queue.max_concurrent_tasks = 10,
|
|
queue.priority_queue = true,
|
|
queue.metrics = true,
|
|
batch.parallel_limit = 10,
|
|
extensions.max_concurrent = 10,
|
|
performance.max_memory = 4000,
|
|
performance.connection_pool_size = 50,
|
|
},
|
|
|
|
control_center = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
|
|
vault_service = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
|
|
mcp_server = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
|
|
extension_registry = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
|
|
rag = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
|
|
ai_service = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
|
|
provisioning_daemon = {
|
|
server.workers = 4,
|
|
server.max_connections = 200,
|
|
},
|
|
}
|