-
Notifications
You must be signed in to change notification settings - Fork 1
/
expander.ini
58 lines (48 loc) · 1.14 KB
/
expander.ini
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
# karton config
[logging]
#level = DEBUG
[s3]
access_key = karton-test-access
secret_key = karton-test-key
address = http://localhost:9000
bucket = karton
[redis]
host=localhost
port=6379
# our config
# used by multiple components
[expander]
#use_deduper = True
#use_cache = True
#reports_key = expander.reports
#job_cache_key = expander.cache:
#correlator_reports_identity = expander.correlator-for-job-
# used by peekaboo components
# BTW: Section names cannot contain separators based on the way Karton maps
# environment variables onto them. Because they're case-sensitive and Karton
# lower-cases their names in env var mapping, we can't even use camelCase or
# similar for readability.
[expanderpeekaboo]
#url = http://127.0.0.1:8100
#backoff = 0.5
#retries = 5
# individual components
[expanderpeekabootracker]
#job_age_cutoff = 600
[expandercacheresponder]
#age_out_interval = 60
#max_age = 240
[expanderdeduper]
#running_key = expander.running
#recheck_interval = 2
#cutoff = 60
# 2*cutoff
#gc_interval = 120
[expanderpoker]
#jobs_key = expander.jobs
#recheck_cutoff = 60
#poking_delay = 3
#timeout = 1
[expanderapi]
#host = 127.0.0.1
#port = 8200