Sorry, at a bit of a loss. I can ingest fine to a ...
# troubleshoot
i
Sorry, at a bit of a loss. I can ingest fine to a remote DataHub server with
datahub ingest
. However, when I try to do it in Airflow using the example I am getting
Copy code
"com.linkedin.restli.server.RestLiServiceException [HTTP Status:404]: No root resource defined for path '/datasets'
Can someone point me in the right direction? Is this a mismatched version problem?
e
I think so. It should be calling /entities if in the right version. Which version of the datahub python package are you using in airflow?
i
acryl-datahub==0.1.0
e
ah can you upgrade to 0.8.16.2 ?
i
Thank you! Looks like one of our other dependencies in the requirements file is knocking it down to that version. Great starting point, thanks again!
Looks like a pinned version of
flask-sqlalchemy
was the culprit.
e
Ah got it. Did you manage to solve the issue?
i
Yeah I removed the pinned dependency from our airflow’s
requirements.txt
and everything looks good! Thanks again.
e
Glad to hear!!