-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapplication.conf
More file actions
28 lines (26 loc) · 889 Bytes
/
Copy pathapplication.conf
File metadata and controls
28 lines (26 loc) · 889 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
## actor-ts voice sample — HOCON configuration.
##
## Loaded by `ActorSystem.create(SYSTEM_NAME, { configFile })`. Tune
## knobs that don't change per-node here; CLI flags from
## `backend/config.ts` (host, port, http-port, seeds) win over
## anything set in this file.
##
## Notably absent: a `persistence` block. The voice sample has no
## journal — there are no PersistentActors and no SqliteJournal
## wired up. Voice is ephemeral by design; if the cluster goes
## down, in-flight rooms and presence are simply gone.
actor-ts {
# Logging. Accepted values: debug, info, warn, error, off.
logger {
level = "info"
}
# Cluster gossip cadence — same modest defaults as the chat sample.
cluster {
failure-detector {
heartbeat-interval-ms = 300
unreachable-after-ms = 1500
down-after-ms = 4000
}
gossip-interval-ms = 500
}
}