forked from ckan/ckan-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
/
harvester.conf
51 lines (48 loc) · 1.23 KB
/
harvester.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[program:ckan_gather_consumer]
command=ckan harvester gather-consumer
user=ckan
numprocs=1
stdout_logfile=/var/log/harvester/gather_consumer.log
stdout_logfile_maxbytes=50MB
stderr_logfile=/var/log/harvester/gather_consumer.log
stderr_logfile_maxbytes=50MB
autostart=true
autorestart=true
startsecs=10
priority=1
[program:ckan_fetch_consumer]
command=ckan harvester fetch-consumer
user=ckan
numprocs=1
stdout_logfile=/var/log/harvester/fetch_consumer.log
stdout_logfile_maxbytes=50MB
stderr_logfile=/var/log/harvester/fetch_consumer.log
stderr_logfile_maxbytes=50MB
autostart=true
autorestart=true
startsecs=10
priority=2
[program:ckan_harvester_run]
command=ckan harvester run
user=ckan
numprocs=1
stdout_logfile=/var/log/harvester/ckan_harvester.log
stdout_logfile_maxbytes=25MB
stderr_logfile=/var/log/harvester/ckan_harvester.log
stderr_logfile_maxbytes=25MB
autostart=true
autorestart=false
startsecs=2
priority=3
[program:ckan_harvester_clean_log]
command=ckan harvester clean-harvest-log
user=ckan
numprocs=1
stdout_logfile=/var/log/harvester/ckan_harvester_clean_log.log
stdout_logfile_maxbytes=25MB
stderr_logfile=/var/log/harvester/ckan_harvester_clean_log.log
stderr_logfile_maxbytes=25MB
autostart=false
autorestart=false
startsecs=2
priority=4