paul.q
06/08/2021, 7:52 AMdagster instance migrate
and it reported no errors. However, the dagster-daemon startup reports:
sqlalchemy.exc.ProgrammingError: (psycopg2.errors.UndefinedTable) relation "bulk_actions" does not exist ...
Looking at our postgres DB I can see that there is no 'bulk_actions' table created.
How can we get this table created properly?
Our dagster.yaml looks like so:
run_storage:
module: dagster_postgres.run_storage
class: PostgresRunStorage
config:
postgres_db:
<usual postgres config>
event_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
<usual postgres config>
scheduler:
module: dagster.core.scheduler
class: DagsterDaemonScheduler
schedule_storage:
module: dagster_postgres.schedule_storage
class: PostgresScheduleStorage
config:
postgres_db:
<usual postgres config>
daniel
06/08/2021, 2:00 PMpaul.q
06/08/2021, 10:09 PMdaniel
06/09/2021, 1:56 AMpaul.q
06/09/2021, 3:35 AMdaniel
06/09/2021, 1:55 PMpg_dump --schema_only <your db name> > schema.txt
on a DB that's in the state it was before you migrated and send me the resulting text file, we could use that to try to reproduce the problem on our endpaul.q
06/09/2021, 10:26 PMdaniel
06/10/2021, 1:52 AMpaul.q
06/10/2021, 4:54 AMdaniel
06/10/2021, 12:31 PM