-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
53 lines (41 loc) · 1.01 KB
/
config.toml
File metadata and controls
53 lines (41 loc) · 1.01 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
[logging]
filter = "info"
[circuit]
path = "/etc/mosaic/circuit.v5c"
[network]
signing_key_hex = "1111111111111111111111111111111111111111111111111111111111111111"
bind_addr = "0.0.0.0:7000"
keep_alive_interval_secs = 1
idle_timeout_secs = 5
reconnect_backoff_secs = 1
[network.client]
open_timeout_secs = 5
ack_timeout_secs = 10
[[network.peers]]
peer_id_hex = "a09aa5f47a6759802ff955f8dc2d2a14a5c99d23be97f864127ff9383455a4f0"
addr = "mosaic_2:7000"
[storage]
cluster_file = "/etc/foundationdb/fdb.cluster"
global_path = ["local", "node-1"]
[table_store]
backend = "local_filesystem"
root = "/etc/mosaic/tables"
prefix = "garbling-tables"
[job_scheduler]
submission_queue_size = 256
completion_queue_size = 256
[job_scheduler.light]
threads = 1
concurrency_per_worker = 32
[job_scheduler.heavy]
threads = 2
concurrency_per_worker = 8
[job_scheduler.garbling]
worker_threads = 2
max_concurrent = 2
batch_timeout_ms = 500
chunk_timeout_secs = 30
[sm_executor]
command_queue_size = 256
[rpc]
bind_addr = "0.0.0.0:8000"