You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if the problem is limited to the dev environment only, but the sqlite db is not persisted
Reproduction
make local-up
save a dataset
check with sqlite3 client that the new data is in the local.db file in the container: ✅
check with sqlite3 client that the new data is in the local.db file on the host machine: ❌
make local-down
check that the lumigator_database_volume contains something: ❌ (size=0 bytes)
make local-up
check with sqlite3 client that the data is in the local.db file in the container: ❌
Relevant log output
Expected behavior
The volume should persist the database data, or there should be a sync with the local.db file on the host and the one in the container.
If the volume works, perhaps we do not need to also have the file?
The main reason for pausing this was that information about jobs was taken live from ray and not having ray persisted broke things. Now we have ray persistence and experiment information in mlflow, so in theory we need the DB just for datasets. As soon as the old experiments is removed in favor of the new workflows we can prune whatever is not needed anymore and merge this to make datasets persistent!
Description
Not sure if the problem is limited to the dev environment only, but the sqlite db is not persisted
Reproduction
make local-up
local.db
file in the container: ✅local.db
file on the host machine: ❌make local-down
lumigator_database_volume
contains something: ❌ (size=0 bytes)make local-up
local.db
file in the container: ❌Relevant log output
Expected behavior
The volume should persist the database data, or there should be a sync with the
local.db
file on the host and the one in the container.If the volume works, perhaps we do not need to also have the file?
System Info
Have you searched for similar issues before submitting this one?
The text was updated successfully, but these errors were encountered: