Amazon EC2 でプロビジョニングされた RedHat サーバーに HAWQ をインストールしています。クラスターには既に HDP 2.3 がセットアップされています。Githubから HAWQ を複製しました。
まず私が実行し./configure --prefix=/opt/hawq
ます。
2 番目のステップでは、 を実行しmake
ます。make
のルート フォルダーから実行すると、依存関係が正しくコンパイルされますincubator-hawq
。ルート ディレクトリ ( )のフォルダーmake
からコンパイルに移動すると、次のエラーが発生します。src
incubator-hawq
make[2]: Entering directory `/root/incubator-hawq/src/port'
gcc -O3 -std=gnu99 -Wall -Wmissing-prototypes -Wpointer-arith -Wendif-labels -Wformat-security -fno-strict-aliasing -fwrapv -fno-aggressive-loop-optimizations -I/usr/include/libxml2 -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE -I/root/incubator-hawq/depends/libhdfs3/build/install/usr/local/hawq/include -I/root/incubator-hawq/depends/libyarn/build/install/usr/local/hawq/include -c -o copydir.o copydir.c
In file included from copydir.c:25:0:
../../src/include/storage/fd.h:61:23: fatal error: hdfs/hdfs.h: No such file or directory
#include "hdfs/hdfs.h"
^
compilation terminated.
make[2]: *** [copydir.o] Error 1
make[2]: Leaving directory `/root/incubator-hawq/src/port'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/root/incubator-hawq/src'
make: *** [all] Error 2
コンパイラが を見つけられないことはわかっていますhdfs/hdfs.h
が、依存関係 ( libhdfs3
) が正常にコンパイルされたため、特定のファイルが見つからない理由がわかりません。私がここでほとんど立ち往生しているので、誰かが同じ問題に遭遇した場合は助けてください。