is it possible in any way to disable writing to `/...
# troubleshoot
b
is it possible in any way to disable writing to
/.datahub
when running
datahub ingest -c...
or maybe configure this path via some env variable? My use case is that I am running an ingestion recipe in an environment where I don’t have access to the root folder. Up until now (was using
0.8.16.4
) it worked fine, but after updating to
0.8.32.1
I am getting
PermissionError: [Errno 13] Permission denied: '/.datahub'
. I am a bit confused as to why that would be required in the first place since gms host is being passed via the recipe in the sink configuration 🤔
d
Currently it seems like you can’t change it but it should write into you home folder and not root.
Can you set your
HOME
environment variable to a path where you can read?
like:
Copy code
export HOME=/somedirwhereyoucanwrite
b
yeah, that works, thanks! out of curiosity - why is writing the config to a file neccessary?
d
We use it to store some state for datahub cli I think