Goss
09/21/2022, 4:49 PM.config/fsspec/s3.json
But now getting:
sqlite3.OperationalError: unable to open database file
Any idea why I would be getting this? Happens while kedro is trying to do session.run
and it looks like SqlLite is trying to initialize a database.noklam
09/21/2022, 9:25 PMGoss
09/21/2022, 9:30 PMsrc/settings.py
has:
SESSION_STORE_ARGS = {"path": str(Path(__file__).parents[2] / "data")}
but there is a data
under home/kedro
str(Path(__file__).parents[2] / "data")
correctly.
This is the space tutorial BTWnoklam
09/21/2022, 9:32 PMGoss
09/21/2022, 9:33 PMs3://bucketname/
prefix either so it should write on the pod volumenoklam
09/21/2022, 9:35 PMGoss
09/21/2022, 9:36 PM/home/kedro
but even that fails. Not sure why SqlLite is even needed. Will try commenting it out./home/kedro
which is owned by root!noklam
09/21/2022, 10:10 PMGoss
09/22/2022, 1:18 PM/home/kedro
is set up in the Dockerfile created by kedro-kubeflow. The space tutorial seems like it is trying to create the path to the db file as /home/kedro/data
. This will end up on a default volume in the pod since no volume is specified.noklam
09/22/2022, 1:40 PM