16 lines
336 B
TOML
16 lines
336 B
TOML
# System Worker Configuration
|
|
# Asynchronous worker for high-throughput concurrent processing
|
|
|
|
worker_id = "system_worker_1"
|
|
redis_url = "redis://localhost:6379"
|
|
db_path = "/tmp/system_worker_db"
|
|
preserve_tasks = false
|
|
|
|
[worker_type]
|
|
type = "async"
|
|
default_timeout_seconds = 300 # 5 minutes
|
|
|
|
[logging]
|
|
timestamps = true
|
|
level = "info"
|