https://dagster.io/ logo
r

Richard Fisher

12/04/2020, 9:22 AM
What’s the difference between ConsolidatedSqliteEventLogStorage and SqliteEventLogStorage? Is it just that the consolidated version is asset-aware? If I’m not looking to persist intermediates, should I be using SqliteEventLogStore?
a

alex

12/04/2020, 3:34 PM
ya its `ConsolidatedSqliteEventLogStorage`: one big sqlite file for all runs events , can do indexed queries over all events `SqliteEventLogStorage`: one sqlite file per run for events, lower chance of problematic contention if you have multiple runs going at the same time
r

Richard Fisher

12/07/2020, 6:32 AM
Great, thanks 👍