-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.toml
More file actions
38 lines (30 loc) · 820 Bytes
/
Copy pathdefault.toml
File metadata and controls
38 lines (30 loc) · 820 Bytes
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
# EdgeOrchestrator Default Configuration
# See docs/DESIGN.md for detailed parameter descriptions.
[node]
id = "node-01"
port = 5201
discovery_port = 5200
[monitor]
sampling_interval_ms = 500
mock = false
[executor]
thread_count = 0 # 0 = use hardware_concurrency()
memory_pool_mb = 64
[scheduler]
policy = "greedy" # "greedy", "threshold", "optimizer"
[scheduler.threshold]
cpu_threshold_percent = 75.0
memory_threshold_percent = 80.0
[scheduler.optimizer]
max_iterations = 100
communication_weight = 0.3
[network]
heartbeat_interval_ms = 2000
peer_timeout_ms = 6000
offload_timeout_ms = 10000 # connect/receive deadline per offload
max_message_size_bytes = 1048576 # 1 MB
[telemetry]
log_dir = "./logs"
max_file_size_mb = 50
rotate_count = 5
log_level = "info"