TL;DR:从源代码构建 Apache Atlas 会在文件夹内的单独 tar 文件中生成二进制文件和所有挂钩distro/target/
。
如 apache atlas github 页面中所述,这些钩子是在 atlas 构建过程中与 atlas 二进制文件一起构建的。我已经复制了相关的 README 信息,尤其是第 3 条:
构建过程
- 获取 Atlas 源到您的本地目录,例如使用以下命令
$ cd <your-local-directory>
$ git clone https://github.com/apache/atlas.git
$ cd atlas
# Checkout the branch or tag you would like to build
#
# to checkout a branch
$ git checkout <branch>
# to checkout a tag
$ git checkout tags/<tag>
- 执行以下命令构建 Apache Atlas
$ export MAVEN_OPTS="-Xms2g -Xmx2g"
$ mvn clean install
$ mvn clean package -Pdist
- 上述构建命令成功完成后,您应该会看到以下文件
distro/target/apache-atlas-<version>-bin.tar.gz
distro/target/apache-atlas-<version>-hbase-hook.tar.gz
distro/target/apache-atlas-<version>-hive-hook.tar.gz
distro/target/apache-atlas-<version>-impala-hook.tar.gz
distro/target/apache-atlas-<version>-kafka-hook.tar.gz
distro/target/apache-atlas-<version>-server.tar.gz
distro/target/apache-atlas-<version>-sources.tar.gz
distro/target/apache-atlas-<version>-sqoop-hook.tar.gz
distro/target/apache-atlas-<version>-storm-hook.tar.gz
distro/target/apache-atlas-<version>-falcon-hook.tar.gz