Hi All, getting the following error when trying to...
# troubleshoot
a
Hi All, getting the following error when trying to run the datahub docker quickstart command. Anyone got any ideas why the pulling from linkedin/dathub-gms and front end react aren't working? PS C:\Windows\system32> datahub docker quickstart No Datahub Neo4j volume found, starting with elasticsearch as graph service. To use neo4j as a graph backend, run
datahub docker quickstart --quickstart-compose-file ./docker/quickstart/docker-compose.quickstart.yml
from the root of the datahub repo Fetching docker-compose file https://raw.githubusercontent.com/datahub-project/datahub/master/docker/quickstart/docker-compose-without-neo4j.quickstart.yml from GitHub WARNING: The HOME variable is not set. Defaulting to a blank string. Pulling elasticsearch ... done Pulling elasticsearch-setup ... done Pulling mysql ... done Pulling datahub-gms ... pulling from linkedin/datahub-gms Pulling datahub-frontend-react ... pulling from linkedin/datahub-fro... Pulling datahub-actions ... done Pulling mysql-setup ... done Pulling zookeeper ... done Pulling broker ... done Pulling schema-registry ... done Pulling kafka-setup ... done ERROR: for datahub-frontend-react no matching manifest for linux/amd64 in the manifest list entries ERROR: for datahub-gms no matching manifest for linux/amd64 in the manifest list entries ERROR: no matching manifest for linux/amd64 in the manifest list entries
🙀 2
c
I have the same error on CentOS
b
I have the same error. Seem like a header is the issue: https://githubhot.com/repo/linkedin/datahub/issues/4626
s
I'm getting the same error on Ubuntu 18.04.6
Please try this. datahub docker quickstart --version v0.8.32
thank you 1
plus1 2
b
If you are using ./quickstart.sh you can change the yml file called
docker-compose-without-neo4j.quickstart.yml
In the datahub-gms section replace:
image: linkedin/datahub-gms:${DATAHUB_VERSION:-head}
with
image: linkedin/datahub-gms:aa05faa
Also replace in the datahub-frontend-react section replace:
image: linkedin/datahub-frontend-react:${DATAHUB_VERSION:-head}
with
image: linkedin/datahub-frontend-react:aa05faa
This will use last working images from docker. After saving the file simply run the ./quickstart.sh again
a
@strong-engineer-23656 the --version 0.8.32 option worked perfectly, thanks for the suggestion.
plus1 1
@breezy-portugal-43538 where is the docker-compose-without-neo4j.quickstart.yml file located?
b
Location: ./datahub/docker/quickstart please mark that this is temporary fix and not official way to fix this. It's just something that did help me 😄
thank you 1
plus1 1
e
Hi folks. Seems like a recent PR that added gradle cache to the Github workflows caused this issue. We reverted that PR and the head image is rebuilding right now. Will ping once they are all rebuilt.
Could you try on latest head image? Should be fixed now.
m
It works for me now 🙂