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
Users need a way to checkpoint their current storage and restore it. This would also allow migrating from one database backend to another, for example checkpointing from pickleddb, and then loading the checkpoint into mongodb. The easiest way to support this would be to save the checkpoint into a pickleddb. The restoration would be the trickiest part, as we need to ensure there are no collisions, and that the id references between experiments and trials are conserved even though the ids will need to change to avoid collisions with existing data in the storage.
orion db dump --config orion_config.yaml --exp experiment orion db load --config orion_config.yaml --exp experiment dump.pkl
--exp would be an optional argument to select only a subset of the data.
The text was updated successfully, but these errors were encountered:
If there are experiment ID conflicts during load, we could offer to ignore, overwrite or bump version of incoming experiment. When overwritting, should we deleting the prior trials? 🤔
Users need a way to checkpoint their current storage and restore it. This would also allow migrating from one database backend to another, for example checkpointing from pickleddb, and then loading the checkpoint into mongodb. The easiest way to support this would be to save the checkpoint into a pickleddb. The restoration would be the trickiest part, as we need to ensure there are no collisions, and that the id references between experiments and trials are conserved even though the ids will need to change to avoid collisions with existing data in the storage.
orion db dump --config orion_config.yaml --exp experiment
orion db load --config orion_config.yaml --exp experiment dump.pkl
--exp
would be an optional argument to select only a subset of the data.The text was updated successfully, but these errors were encountered: