-
Notifications
You must be signed in to change notification settings - Fork 18
/
lightflow.cfg
66 lines (56 loc) · 1.24 KB
/
lightflow.cfg
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
59
60
61
62
63
64
65
66
workflows:
- ./examples
libraries: []
celery:
broker_url: redis://localhost:6379/0
result_backend: redis://localhost:6379/0
worker_concurrency: 8
result_expires: 0
worker_send_task_events: True
worker_prefetch_multiplier: 1
signal:
host: localhost
port: 6379
password: null
database: 0
polling_time: 0.5
store:
host: localhost
port: 27017
database: lightflow
username: null
password: null
auth_source: admin
auth_mechanism: null
connect_timeout: 30000
graph:
workflow_polling_time: 0.5
dag_polling_time: 0.5
cli:
time_format: '%d/%m/%Y %H:%M:%S'
extensions: {}
logging:
version: 1
disable_existing_loggers: false
formatters:
verbose:
format: '[%(asctime)s][%(levelname)s] %(name)s %(filename)s:%(funcName)s:%(lineno)d | %(message)s'
datefmt: '%d/%m/%Y %H:%M:%S'
simple:
(): 'colorlog.ColoredFormatter'
format: '%(log_color)s[%(asctime)s][%(levelname)s] %(blue)s%(processName)s%(reset)s | %(message)s'
datefmt: '%d/%m/%Y %H:%M:%S'
handlers:
console:
class: logging.StreamHandler
level: INFO
formatter: simple
loggers:
celery:
handlers:
- console
level: INFO
root:
handlers:
- console
level: INFO