-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.a.toml
More file actions
68 lines (53 loc) · 1.53 KB
/
config.a.toml
File metadata and controls
68 lines (53 loc) · 1.53 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
57
58
59
60
61
62
63
64
65
66
67
68
[logging]
filter = "info"
[circuit]
# Placeholder to allow process startup in this repo checkout.
# Replace with a real .v5c circuit file before running any garbling jobs.
path = "/etc/hosts"
[network]
signing_key_hex = "1111111111111111111111111111111111111111111111111111111111111111"
bind_addr = "127.0.0.1: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 = "127.0.0.1:7001"
[[network.peers]]
peer_id_hex = "17cb79fb2b4120f2b1ec65e4198d6e08b28e813feb01e4a400839b85e18080ce"
addr = "127.0.0.1:7002"
[[network.peers]]
peer_id_hex = "d759793bbc13a2819a827c76adb6fba8a49aee007f49f2d0992d99b825ad2c48"
addr = "127.0.0.1:7003"
[[network.peers]]
peer_id_hex = "c6822637c7d310ec57627be00ba259d253749f4aaf644470cffbe53a35f73242"
addr = "127.0.0.1:7004"
[storage]
cluster_file = "/etc/foundationdb/fdb.cluster"
global_path = ["local-dev", "node-a"]
[table_store]
backend = "local_filesystem"
root = "/tmp/mosaic-node-a/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
restore_interval_secs = 60
[rpc]
bind_addr = "127.0.0.1:8000"