Hi Please help me debug this problem. While inges...
# ingestion
r
Hi Please help me debug this problem. While ingesting metadata from mongodb to datahub-gms rest sink i am getting below error. acryl-datahub cli is 0.8.3 and datahub is running on docker swarm with version 0.8.3. Also is there a way to verify that datahub-gms is indeed running version 0.8.3.
b
It seems you are not running an up-to-date version of GMS. A way to determine that you are running 0.8.3 is to curl the "config" endpoint. curl http://localhost:8080/config
r
curl http://localhost:8080/config results in 404 no root resource defined for path /config
downgrading the acryl datahub cli to 0.3.3 works fine. can you please suggest what am i missing here. I have built custom image by checking out datahub tag v0.8.3 and deployed datahub using these images but using acryl datahub cli v0.8.3 results in 404
b
Hi
404 means your version of GMS is behind, still
You must ensure that an old version of the datahub-gms container is not mistakenly being picked up by your local docker and deployed
r
okay i will check that. Is there a way to check what version this old gms container is running. Also i have deployed it as docker stack on docker swarm and i have executed docker stack rm to make sure that there are no stale containers.
b
You can do
docker ps
to see tags associated with all running containers, as well as the base image they are running on
If your tags look okay (v0.8.3) then it may be that the underlying image is stale
Which means you may need to remove the docker images
r
okay thanks a lot for the help. I will try this.