-
Notifications
You must be signed in to change notification settings - Fork 2
/
luigi.cfg.sample
57 lines (46 loc) · 1.28 KB
/
luigi.cfg.sample
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
# Luigi Configuration File
# Documentation http://luigi.readthedocs.io/en/stable/configuration.html
[proxies]
# https = https://username:password@hostname:port/
# http = http://username:password@hostname:port/
[core]
log_level = WARNING
# logging_conf_file = log/luigi.log
[worker]
retry_external_tasks = true
[scheduler]
# record_task_history = True
# state_path = log/luigi-state.pickle
[task_history]
# db_connection = sqlite://log/luigi-task-hist.db
[email]
receiver = [email protected]
sender = luigi-client@operation-pluto
[mysql]
username = username
password = password
hostname = localhost
port = 3306
database = dbname
# marker-table = table_updates
[retcode]
# The following return codes are the recommended exit codes for Luigi
# They are in increasing level of severity (for most applications)
already_running = 10
missing_data = 20
not_run = 25
task_failed = 30
scheduling_error = 35
unhandled_exception = 40
# Task-level configuration
[force]
# Force luigi task re-run. Overwrite / delete data files.
# Set forcable = False to disable all force overwrite / delete working in code
# forcable = False
[holidayapi]
domain = https://holidayapi.com/v1/holidays
# Test key
# key = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
# Live key
key = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
file_format = json