Hello all, we have been working on testing the da...
# troubleshoot
b
Hello all, we have been working on testing the data hub deployment on AWS EKS. All the services seem running well and we have configured the ingress using an existing certificate and till this point all works well. However when we open the frontend and login using the default user (
datahub
) we get an empty page and the following error:
react-dom.production.min.js:216 Error: Could not fetch logged in user from cache. + Exception while fetching data (/corpUser) : java.lang.RuntimeException: Failed to retrieve entities of type CorpUser
useGetAuthenticatedUser.tsx Uncaught (in promise) Error: Could not fetch logged in user from cache. + Exception while fetching data (/corpUser) : java.lang.RuntimeException: Failed to retrieve entities of type CorpUser.
Also this in the pods logs:
Caused by: com.linkedin.r2.message.rest.RestException: Received error 404 from server for URI <http://datahub-datahub-gms:8080/dataJobs>
As we are following the recommended procedure, would like to know if you have seen these issues before.
l
@dazzling-judge-80093 @early-lamp-41924
e
@big-carpet-38439 any ideas on this one?
b
Its just in fetching the logged in user? Which is the query that is failing? Also, how are you performing authentication? Via OIDC or JaaS?
b
@big-carpet-38439, the error is mainly fetching the user, we are using the frontend auth with the default admin`datahub` , then JAAS according to this https://datahubproject.io/docs/datahub-frontend/#authentication
l
Is this solved?
b
yes !!!! thx
l
I am facing the same error. What’s the resolution?
b
seems like the frontend version in the values.yml was not in sync
then just set it to
datahub-frontend:
enabled: true
image:
repository: linkedin/datahub-frontend-react
tag: "v0.8.31"
instead of latest, that would solve the issue
l
Thank you, trying out now…
Thanks, it worked! I was indeed surprised to see the new UI after deploying the ingress. Looks like
latest
did that. It would be better if the devs could update the ingress docs with this info.
plus1 1
b
Yesss! Amazing. @lemon-terabyte-66903 Can you refer to the doc which is incorrect?
b
Hey, thanks @bored-analyst-98685, had the same problem today and this solved it for me. Appreciate it