-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdistributed_config.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathdistributed_config.json
File metadata and controls
56 lines (56 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"agent_heartbeat_interval": 30,
"task_timeout": 300,
"load_balancing_strategy": "least_connections",
"max_retries": 3,
"message_queue_size": 1000,
"resource_lock_timeout": 60,
"cluster_monitoring_interval": 15,
"agent_capacity_threshold": 80,
"max_failure_history": 100,
"failure_notification": {
"enabled": true,
"types": ["log", "system"],
"min_severity": "medium"
},
"email_notification": {
"enabled": false,
"smtp_server": "smtp.example.com",
"smtp_port": 587,
"username": "",
"password": "",
"sender": "system@example.com",
"recipients": ["admin@example.com"]
},
"webhook_notification": {
"enabled": false,
"url": "https://example.com/webhook",
"headers": {
"Content-Type": "application/json",
"Authorization": "Bearer token"
}
},
"failover_config": {
"enabled": true,
"priority_based_reassignment": true,
"preserve_task_priority": true,
"max_reassignment_attempts": 3,
"critical_agents": [],
"backup_agents": {},
"use_failover_strategy": true,
"failover_strategy_type": "failover",
"backup_strategy_count": 2,
"reliability_threshold": 0.8,
"task_priority_levels": {
"high": 8,
"medium": 5,
"low": 2
},
"failure_cooldown_period": 300
},
"aggregator_config": {
"fusion_strategy": "weighted_merge",
"confidence_threshold": 0.7,
"max_context_length": 4000
}
}