-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupervisord.conf
executable file
·37 lines (27 loc) · 1.07 KB
/
supervisord.conf
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
[supervisord]
nodaemon=true
loglevel=debug
[program:zookeeper]
command=/home/druid/zookeeper-3.4.6/bin/zkServer.sh start-foreground
priority=0
[program:druid-historical]
command=nohup ./home/druid/druid-0.8.3/run_druid_server.sh historical > /home/druid/druid-0.8.3/logs/historical.nohup.out &
priority=100
[program:druid-broker]
command=nohup ./home/druid/druid-0.8.3/run_druid_server.sh broker > /home/druid/druid-0.8.3/logs/broker.nohup.out &
priority=100
[program:druid-coordinator]
command=nohup ./home/druid/druid-0.8.3/run_druid_server.sh coordinator > /home/druid/druid-0.8.3/logs/coordinator.nohup.out &
priority=100
[program:druid-overlord]
command=nohup ./home/druid/druid-0.8.3/run_druid_server.sh overlord > /home/druid/druid-0.8.3/logs/overlord.nohup.out &
priority=100
[program:druid-middleManager]
command=nohup ./home/druid/druid-0.8.3/run_druid_server.sh middleManager > /home/druid/druid-0.8.3/logs/middleManager.nohup.out &
priority=100
#[program:python-virtualenv]
#command=. ./venv/bin/activate
#priority=100
[program:caravel]
command=superset runserver
priority=100