busy-dusk-4970
10/18/2021, 4:18 PMsome-glass-26087
10/18/2021, 4:57 PMbusy-dusk-4970
10/18/2021, 5:48 PMERROR: no matching manifest for linux/arm64/v8 in the manifest list entries
but I also don't see any MySQL entry in the docker-compose.yml where it says it's required for datahub-gms containerbrief-lock-26227
10/18/2021, 5:50 PMbrief-lock-26227
10/18/2021, 5:50 PMbusy-dusk-4970
10/18/2021, 5:56 PMbig-carpet-38439
10/18/2021, 8:10 PMbrief-lock-26227
10/18/2021, 10:22 PMadamant-river-59091
10/19/2021, 1:41 AMbusy-dusk-4970
10/19/2021, 12:41 PM# Default overrides for running local development.
# Images here are made as "development" images by following the general pattern of defining a multistage build with
# separate prod/dev steps; using APP_ENV to specify which to use. The dev steps should avoid building and instead assume
# that binaries and scripts will be mounted to the image, as also set up by this file. Also see see this excellent
# thread <https://github.com/docker/cli/issues/1134>.
# To make a JVM app debuggable via IntelliJ, go to its env file and add JVM debug flags, and then add the JVM debug
# port to this file.
---
version: '3.8'
services:
# Pre-creates the search indices using local mapping/settings.json
elasticsearch-setup:
image: linkedin/datahub-elasticsearch-setup:debug
build:
context: elasticsearch-setup
dockerfile: Dockerfile
args:
APP_ENV: dev
volumes:
- ./elasticsearch-setup/create-indices.sh:/create-indices.sh
- ../metadata-service/restli-impl/src/main/resources/index/:/index
kafka-setup:
image: linkedin/datahub-kafka-setup:debug
build:
context: kafka-setup
dockerfile: Dockerfile
args:
APP_ENV: dev
datahub-gms:
image: linkedin/datahub-gms:debug
build:
context: datahub-gms
dockerfile: Dockerfile
args:
APP_ENV: dev
volumes:
- ./datahub-gms/start.sh:/datahub/datahub-gms/scripts/start.sh
- ./monitoring/client-prometheus-config.yaml:/datahub/datahub-gms/scripts/prometheus-config.yaml
- ../metadata-models/src/main/resources/:/datahub/datahub-gms/resources
- ../metadata-service/war/build/libs/:/datahub/datahub-gms/bin
datahub-frontend-react:
image: linkedin/datahub-frontend-react:debug
build:
context: datahub-frontend
dockerfile: Dockerfile
args:
APP_ENV: dev
volumes:
- ../datahub-frontend/build/stage/datahub-frontend:/datahub-frontend
Now the only issue I have is that the front end container is giving me this error:
ERROR: for datahub-frontend-react Cannot start service datahub-frontend-react: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "datahub-frontend/bin/playBinary": stat datahub-frontend/bin/playBinary: no such file or directory: unknown
ERROR: Encountered errors while bringing up the project.
I assume it's because there is no bin folder in the docker/datahub-frontend
directory, any help to sort this out is greatly appreciated so I can make a PR 🙏busy-dusk-4970
10/19/2021, 12:53 PMbrief-lock-26227
10/19/2021, 8:32 PMbusy-dusk-4970
10/19/2021, 9:43 PMbrief-lock-26227
10/26/2021, 2:28 PMbusy-dusk-4970
10/26/2021, 2:29 PMbusy-dusk-4970
10/26/2021, 2:30 PMbig-carpet-38439
10/26/2021, 3:28 PMbrief-lock-26227
10/27/2021, 1:55 PMbusy-dusk-4970
10/27/2021, 2:03 PMbusy-dusk-4970
10/27/2021, 2:14 PMbusy-dusk-4970
10/27/2021, 2:15 PMechoing-portugal-93506
10/27/2021, 2:38 PMbusy-dusk-4970
10/27/2021, 2:38 PMbusy-dusk-4970
10/27/2021, 2:38 PMbusy-dusk-4970
10/27/2021, 2:46 PMdocker-compose -p datahub -f docker-compose.yml -f docker-compose.override.yml -f docker-compose.dev.yml up
To get it running locallybrief-lock-26227
10/27/2021, 4:53 PMbrief-lock-26227
10/28/2021, 10:01 PM% ./gradlew build
Downloading <https://services.gradle.org/distributions/gradle-5.6.4-bin.zip>
.........................................................................................
Welcome to Gradle 5.6.4!
Here are the highlights of this release:
- Incremental Groovy compilation
- Groovy compile avoidance
- Test fixtures for Java projects
- Manage plugin versions via settings script
For more details see <https://docs.gradle.org/5.6.4/release-notes.html>
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: <https://docs.gradle.org/5.6.4/userguide/gradle_daemon.html>.
Daemon will be stopped at the end of the build stopping after processing
java.lang.NoClassDefFoundError: Could not initialize class org.codehaus.groovy.vmplugin.v7.Java7
at org.codehaus.groovy.vmplugin.VMPluginFactory.<clinit>(VMPluginFactory.java:43)
at org.codehaus.groovy.reflection.GroovyClassValueFactory.<clinit>(GroovyClassValueFactory.java:35)
at org.codehaus.groovy.reflection.ClassInfo.<clinit>(ClassInfo.java:109)
at org.codehaus.groovy.reflection.ReflectionCache.getCachedClass(ReflectionCache.java:95)
at org.codehaus.groovy.reflection.ReflectionCache.<clinit>(ReflectionCache.java:39)
at org.codehaus.groovy.runtime.metaclass.MetaClassRegistryImpl.registerMethods(MetaClassRegistryImpl.java:209)
at org.codehaus.groovy.runtime.metaclass.MetaClassRegistryImpl.<init>(MetaClassRegistryImpl.java:107)
at org.codehaus.groovy.runtime.metaclass.MetaClassRegistryImpl.<init>(MetaClassRegistryImpl.java:85)
at groovy.lang.GroovySystem.<clinit>(GroovySystem.java:36)
at org.codehaus.groovy.runtime.InvokerHelper.<clinit>(InvokerHelper.java:86)
at groovy.lang.GroovyObjectSupport.getDefaultMetaClass(GroovyObjectSupport.java:59)
at groovy.lang.GroovyObjectSupport.<init>(GroovyObjectSupport.java:32)
at org.gradle.internal.extensibility.DefaultExtraPropertiesExtension.<init>(DefaultExtraPropertiesExtension.java:29)
...
busy-dusk-4970
10/28/2021, 10:01 PMbusy-dusk-4970
10/28/2021, 10:03 PMbrief-lock-26227
10/28/2021, 10:04 PMopenjdk version "17" 2021-09-14
OpenJDK Runtime Environment Homebrew (build 17+0)
OpenJDK 64-Bit Server VM Homebrew (build 17+0, mixed mode, sharing)
brief-lock-26227
10/28/2021, 10:06 PMbusy-dusk-4970
10/28/2021, 10:06 PMbusy-dusk-4970
10/28/2021, 10:07 PMbrief-lock-26227
10/28/2021, 10:19 PMA Java version between 8 and 16 is required to execute Gradle. Java 17 and later versions are not yet supported.
brief-lock-26227
10/28/2021, 10:27 PMbrief-lock-26227
10/28/2021, 10:29 PMbrief-lock-26227
10/29/2021, 3:18 PM> Task :docs-website:generateGraphQLDocumentation FAILED
yarn run v1.22.0
$ docusaurus docs:generate:graphql
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module './fp/_baseConvert'
Require stack:
- /Users/patrick/src/datahub/docs-website/node_modules/lodash/fp.js
- /Users/patrick/src/datahub/docs-website/node_modules/wait-on/lib/wait-on.js
- /Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/webpack/plugins/WaitPlugin.js
- /Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/webpack/server.js
- /Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/commands/build.js
- /Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/index.js
- /Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/bin/docusaurus.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)
at Function.Module._resolveFilename (/Users/patrick/src/datahub/docs-website/node_modules/module-alias/index.js:49:29)
at Function.Module._load (internal/modules/cjs/loader.js:725:27)
at Module.require (internal/modules/cjs/loader.js:952:19)
at require (internal/modules/cjs/helpers.js:88:18)
at Object.<anonymous> (/Users/patrick/src/datahub/docs-website/node_modules/lodash/fp.js:2:18)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'/Users/patrick/src/datahub/docs-website/node_modules/lodash/fp.js',
'/Users/patrick/src/datahub/docs-website/node_modules/wait-on/lib/wait-on.js',
'/Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/webpack/plugins/WaitPlugin.js',
'/Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/webpack/server.js',
'/Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/commands/build.js',
'/Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/lib/index.js',
'/Users/patrick/src/datahub/docs-website/node_modules/@docusaurus/core/bin/docusaurus.js'
]
}
error Command failed with exit code 1.
busy-dusk-4970
10/29/2021, 5:23 PM./gradlew :docs-website:generateGraphQLDocumentation
and see if it crashes againbusy-dusk-4970
10/29/2021, 5:24 PMdazzling-judge-80093
11/08/2021, 10:29 PMdatahub docker quickstart --quickstart-compose-file docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml
Here is my fork/branch ->
https://github.com/treff7es/datahub/tree/m1-dockerbusy-dusk-4970
11/08/2021, 10:32 PMbusy-dusk-4970
11/09/2021, 3:54 PMbusy-dusk-4970
11/09/2021, 3:57 PMdazzling-judge-80093
11/09/2021, 4:03 PMdazzling-judge-80093
11/09/2021, 4:04 PMbusy-dusk-4970
11/09/2021, 4:09 PMdazzling-judge-80093
11/09/2021, 4:27 PMbusy-dusk-4970
11/09/2021, 5:01 PMbusy-dusk-4970
11/09/2021, 5:02 PM[+] Running 10/10
⠿ Container zookeeper Running 0.0s
⠿ Container mysql Running 0.0s
⠿ Container broker Running 0.0s
⠿ Container elasticsearch Running 0.0s
⠿ Container schema-registry Running 0.0s
⠿ Container elasticsearch-setup Started 0.9s
⠿ Container mysql-setup Started 0.9s
⠿ Container kafka-setup Running 0.0s
⠿ Container datahub-gms Running 0.0s
⠿ Container datahub-frontend-react Running
busy-dusk-4970
11/09/2021, 5:05 PMdazzling-judge-80093
11/09/2021, 5:10 PMdazzling-judge-80093
11/09/2021, 5:11 PMbusy-dusk-4970
11/09/2021, 5:54 PMbusy-dusk-4970
11/10/2021, 1:12 PMneo4j/neo4j-arm64-experimental:4.3.6-arm64
busy-dusk-4970
11/10/2021, 1:23 PMbusy-dusk-4970
11/10/2021, 1:24 PMdocker-compose.quikstart,yml
with the neo4j image and your changes and it worksdazzling-judge-80093
11/10/2021, 6:11 PMmammoth-bear-12532
mammoth-bear-12532
dazzling-judge-80093
11/10/2021, 6:12 PMdazzling-judge-80093
11/10/2021, 6:12 PMbusy-dusk-4970
11/10/2021, 6:17 PMneo4j/neo4j-arm64-experimental:4.3.6-arm64
mammoth-bear-12532
busy-dusk-4970
11/10/2021, 9:52 PMmammoth-bear-12532
mammoth-bear-12532
pip install -U acryl-datahub
followed by datahub docker quickstart
(pip freeze should show you 0.8.16.5)busy-dusk-4970
11/10/2021, 10:42 PMbusy-dusk-4970
11/10/2021, 10:42 PMmammoth-bear-12532
busy-dusk-4970
11/10/2021, 10:49 PMbusy-dusk-4970
11/11/2021, 12:18 PMdazzling-judge-80093
11/11/2021, 12:23 PMbusy-dusk-4970
11/11/2021, 12:36 PMbig-carpet-38439
11/11/2021, 4:20 PMhelpful-optician-78938
11/11/2021, 10:45 PMmammoth-bear-12532
brief-lock-26227
11/12/2021, 6:45 PMERROR: Could not find a version that satisfies the requirement 0.8.16.5 (from versions: none)
ERROR: No matching distribution found for 0.8.16.5
brief-lock-26227
11/12/2021, 6:52 PMbrief-lock-26227
11/12/2021, 7:00 PMdatahub docker quickstart
to complete successfully. Just keeps looping like this:
Starting mysql ...
zookeeper is up-to-date
elasticsearch is up-to-date
broker is up-to-date
Starting mysql ... done
Starting elasticsearch-setup ... done
Starting kafka-setup ... done
mysql-setup is up-to-date
datahub-gms is up-to-date
datahub-frontend-react is up-to-date
.............
Starting mysql ...
elasticsearch is up-to-date
zookeeper is up-to-date
Starting elasticsearch-setup ...
Starting mysql ... done
Starting elasticsearch-setup ... done
Starting kafka-setup ... done
mysql-setup is up-to-date
datahub-gms is up-to-date
datahub-frontend-react is up-to-date
..............
brief-lock-26227
11/12/2021, 7:03 PMbrief-lock-26227
11/12/2021, 7:06 PM✔️ DataHub is now runningwoohoo!
busy-dusk-4970
11/16/2021, 5:25 AMmammoth-bear-12532
0.8.16.8
and see if the issue still persists?creamy-journalist-76122
11/16/2021, 4:47 PM0.8.16.8
. thank you for the quick fix!busy-dusk-4970
11/17/2021, 1:27 PMdazzling-judge-80093
11/17/2021, 2:45 PMbusy-dusk-4970
11/17/2021, 2:45 PM