Xu Zhang
11/13/2020, 8:15 PMOr if you want to be able to use a run launcher to execute your pipeline in a different process like dagit does, we have an option for that as well, it's just a little bit more hidden currently
that hidden option
daniel
11/13/2020, 8:22 PMsashank
11/13/2020, 8:27 PMXu Zhang
11/13/2020, 8:29 PMsashank
11/13/2020, 8:30 PMenv: ENV_VAR_NAME
in places that expect a stringevent_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
username: my_username
password: my_password
hostname: my_host
db_name: my_db
port: 5432
event_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
username:
env: DAGSTER_PG_USERNAME
password:
env: DAGSTER_PG_PASSWORD
hostname:
env: DAGSTER_PG_HOST
db_name:
env: DAGSTER_PG_DB
port: 5432
Xu Zhang
11/13/2020, 9:21 PM