-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdagster_run.yaml
More file actions
73 lines (65 loc) · 1.64 KB
/
Copy pathdagster_run.yaml
File metadata and controls
73 lines (65 loc) · 1.64 KB
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
67
68
69
70
71
72
73
# Dagster instance configuration for run containers
run_launcher:
module: dagster.core.launcher
class: DefaultRunLauncher
run_storage:
module: dagster_postgres.run_storage
class: PostgresRunStorage
config:
postgres_db:
username:
env: DAGSTER_POSTGRES_USER
password:
env: DAGSTER_POSTGRES_PASSWORD
hostname:
env: DAGSTER_POSTGRES_HOSTNAME
db_name:
env: DAGSTER_POSTGRES_DB
port:
env: DAGSTER_POSTGRES_PORT
event_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
username:
env: DAGSTER_POSTGRES_USER
password:
env: DAGSTER_POSTGRES_PASSWORD
hostname:
env: DAGSTER_POSTGRES_HOSTNAME
db_name:
env: DAGSTER_POSTGRES_DB
port:
env: DAGSTER_POSTGRES_PORT
schedule_storage:
module: dagster_postgres.schedule_storage
class: PostgresScheduleStorage
config:
postgres_db:
username:
env: DAGSTER_POSTGRES_USER
password:
env: DAGSTER_POSTGRES_PASSWORD
hostname:
env: DAGSTER_POSTGRES_HOSTNAME
db_name:
env: DAGSTER_POSTGRES_DB
port:
env: DAGSTER_POSTGRES_PORT
compute_logs:
module: dagster.core.storage.local_compute_log_manager
class: LocalComputeLogManager
config:
base_dir: /opt/dagster/dagster_home/storage/logs
local_artifact_storage:
module: dagster.core.storage.root
class: LocalArtifactStorage
config:
base_dir: /opt/dagster/dagster_home/storage/artifacts
python_logs:
managed_python_loggers:
- root
python_log_level: WARNING
telemetry:
enabled: false