hi everyone! I am running a kedro pipeline in Data...
# questions
o
hi everyone! I am running a kedro pipeline in Databricks Repo, using the kedro docs. The pipeline runs end-to-end but i encountered an error:
Copy code
OperationalError: (sqlite3.OperationalError) unable to open database file
(Background on this error at: <https://sqlalche.me/e/14/e3q8>)
My guess is that the run session info cannot be saved because of writing permissions on databricks Repo. We have deleted
logging.yml
and to be honest this is more of an annoying error (as the pipeline runs). Any ideas on how can we avoid this?
d
I think this is the session store used only for experiment tracking so you should be able to change that to the ShelveStore instead of SQLite
o
thanks joel! @Zihao Xu can we change this easily?
z
Will give this a try - thanks Joel!