blob: d4922698c69dadf344a81c70bf46f536108bb054 (
plain) (
blame)
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
|
[global]
# Enable message output at different stages in the app.
super_debug = true
# Hide the heartbeat logs when super_debug is enabled. Showing them will generate a lot of messages.
hide_heartbeat_logs = True
# Port to listen on for administrative commands sent via emq-cli
administrative_addr=tcp://0.0.0.0:47293
frontend_addr=tcp://0.0.0.0:47291
backend_addr=tcp://0.0.0.0:47290
worker_addr=tcp://eventmq:47290
scheduler_addr=tcp://eventmq:47291
[router]
[scheduler]
[jobmanager]
worker_addr=tcp://127.0.0.1:47290
queues=[[50,"google"], [40,"pushes"], [10,"default"]]
concurrent_jobs=2
[publisher]
publisher_frontend_addr=tcp://0.0.0.0:47298
publisher_backend_addr=tcp://0.0.0.0:47299
|