You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apache Atlas Web UI runs, but we are unable to connect the Kafka-Hook to it or even install other hooks required for it to run.
We attempted to solve the problem by running the mvn clean install -DskipTests command in the root directory of our Kafka Bridge project folder, where the pom.xml file is located. In this case, we ran it in the kafka-bridge directory, as that's where the pom.xml file is located, but we got the following error:
central-https: https://repo.maven.apache.org/maven2/com/puppycrawl/tools/checkstyle/5.5/checkstyle-5.5.jar (638 kB at 85 kB/s)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 42:53 min
[INFO] Finished at: 2023-04-12T11:50:49+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:2.9.1:check (checkstyle-check) on project kafka-bridge: Execution checkstyle-check of goal org.apache.maven.plugins:maven-checkstyle-plugin:2.9.1:check failed: Plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.9.1 or one of its dependencies could not be resolved: Could not find artifact org.apache.atlas:atlas-buildtools:jar:1.0 in central-https (https://repo.maven.apache.org/maven2) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
The error message suggested that Maven was not able to find the artifact "org.apache.atlas:atlas-buildtools:jar:1.0". So one possible solution was to add the repository where this artifact is hosted to our Maven settings.xml file. Here are the steps you followed without success:
Open our settings.xml file located in ~/.m2/settings.xml with our text editor.
This addition still did not work. For this reason, we couldn't successfully install the Kafka-Hook required for Apache Atlas to run and pull Kafka topics. This hindered our ability to run Atlas for Data Discovery, Data Lineage and Data Governance in general.
A solution will be most appreciated!
The text was updated successfully, but these errors were encountered:
Apache Atlas Web UI runs, but we are unable to connect the Kafka-Hook to it or even install other hooks required for it to run.
We attempted to solve the problem by running the
mvn clean install -DskipTests
command in the root directory of our Kafka Bridge project folder, where the pom.xml file is located. In this case, we ran it in the kafka-bridge directory, as that's where the pom.xml file is located, but we got the following error:The error message suggested that Maven was not able to find the artifact
"org.apache.atlas:atlas-buildtools:jar:1.0"
. So one possible solution was to add the repository where this artifact is hosted to our Maven settings.xml file. Here are the steps you followed without success:settings.xml
file located in~/.m2/settings.xml
with our text editor.settings.xml
file and re-run themvn clean install -DskipTests
command.The above addition failed, then we tried one last option, which entailed adding the following repository to our
pom.xml
file:This addition still did not work. For this reason, we couldn't successfully install the Kafka-Hook required for Apache Atlas to run and pull Kafka topics. This hindered our ability to run Atlas for Data Discovery, Data Lineage and Data Governance in general.
A solution will be most appreciated!
The text was updated successfully, but these errors were encountered: