Hello, We've been running Dagster as a service loc...
# ask-community
n
Hello, We've been running Dagster as a service locally, using the default SqliteRunStorage. Because some processes are slow, for example starting numerous backfills or displaying numerous partitions on Dagit, we want to move to PostgresRunStorage. Is there a way to automatically migrate the historical data from Sqlite to Postgres, so we don't lose the history that was displayed on Dagit ?
a
hmm, no tools explicitly for bulk migration. You could use
dagster debug export
/
dagster debug import
run by run, or write a script similar to the implementation of those
D 1
n
Ok, thanks for your answer @alex!