Matthew Whiteside
10/18/2022, 4:05 PMstorage:
postgres:
postgres_db:
username: { DAGSTER_PG_USERNAME }
password: { DAGSTER_PG_PASSWORD }
hostname: { DAGSTER_PG_HOSTNAME }
db_name: { DAGSTER_PG_DB }
port: 5432
But in the dagster-postgres library documentation: https://docs.dagster.io/_apidocs/libraries/dagster-postgres it lists each as separate:
event_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
username: { username }
password: { password }
hostname: { hostname }
db_name: { db_name }
port: { port }
What's the difference? Is storage
config equivalent to adding the three: event_log_storage
, run_storage
and schedule_storage
?rex
10/18/2022, 4:11 PMevent_log_storage
, run_storage
, and schedule_storage
. cc @prhaMatthew Whiteside
10/18/2022, 4:13 PM