0

Alpine Linux に基づいてテスト用に Mesos 0.27.1 イメージを作成しようとしていますが、試行錯誤によってコンパイルをほとんど行うことができました。現在、かなり低レベルに見えるエラーが発生しています。これは、Alpine で Mesos をまったく使用できないことを意味するのではないかと考えています。

エラーは次のとおりです。

libtool: compile:  g++ -DPACKAGE_NAME=\"libprocess\" -DPACKAGE_TARNAME=\"libprocess\" -DPACKAGE_VERSION=\"0.0.1\" "-DPACKAGE_STRING=\"libprocess 0.0.1\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libprocess\" -DVERSION=\"0.0.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_APR_POOLS_H=1 -DHAVE_LIBAPR_1=1 -DHAVE_SVN_VERSION_H=1 -DHAVE_LIBSVN_SUBR_1=1 -DHAVE_SVN_DELTA_H=1 -DHAVE_LIBSVN_DELTA_1=1 -DHAVE_LIBCURL=1 -DHAVE_PTHREAD_PRIO_INHERIT=1 -DHAVE_PTHREAD=1 -DHAVE_LIBZ=1 -DHAVE_LIBDL=1 -I. -DBUILD_DIR=\"/usr/src/mesos-0.27.1/3rdparty/libprocess\" -I./include -I./3rdparty/stout/include -isystem 3rdparty/boost-1.53.0 -I3rdparty/libev-4.15 -I3rdparty/picojson-1.3.0 -DPICOJSON_USE_INT64 -D__STDC_FORMAT_MACROS -I3rdparty/glog-0.3.3/src -I3rdparty/ry-http-parser-1c3624a -I/usr/include/subversion-1 -I/usr/include/apr-1 -I/usr/include/apr-1.0 -g1 -O0 -Wno-unused-local-typedefs -std=c++11 -MT libprocess_la-logging.lo -MD -MP -MF .deps/libprocess_la-logging.Tpo -c src/logging.cpp  -fPIC -DPIC -o libprocess_la-logging.o
In file included from ./include/process/time.hpp:18:0,
                 from ./include/process/clock.hpp:18,
                 from ./include/process/delay.hpp:16,
                 from src/logging.cpp:15:
./3rdparty/stout/include/stout/duration.hpp:80:27: error: 'timeval' does not name a type
   explicit Duration(const timeval& t)
                           ^
./3rdparty/stout/include/stout/duration.hpp: In constructor 'Duration::Duration(const int&)':
./3rdparty/stout/include/stout/duration.hpp:82:15: error: request for member 'tv_sec' in 't', which is of non-class type 'const int'
     nanos = t.tv_sec * SECONDS + t.tv_usec * MICROSECONDS;
               ^
./3rdparty/stout/include/stout/duration.hpp:82:36: error: request for member 'tv_usec' in 't', which is of non-class type 'const int'
     nanos = t.tv_sec * SECONDS + t.tv_usec * MICROSECONDS;
                                    ^
./3rdparty/stout/include/stout/duration.hpp: In member function 'timeval Duration::timeval() const':
./3rdparty/stout/include/stout/duration.hpp:95:3: error: return type 'struct timeval' is incomplete
   {
   ^
./3rdparty/stout/include/stout/duration.hpp:96:20: error: aggregate 'timeval t' has incomplete type and cannot be defined
     struct timeval t;
                    ^
Makefile:844: recipe for target 'libprocess_la-logging.lo' failed
make[4]: *** [libprocess_la-logging.lo] Error 1
make[4]: Leaving directory '/usr/src/mesos-0.27.1/3rdparty/libprocess'
Makefile:1321: recipe for target 'all-recursive' failed
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory '/usr/src/mesos-0.27.1/3rdparty/libprocess'
Makefile:490: recipe for target 'all-recursive' failed
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory '/usr/src/mesos-0.27.1/3rdparty'
Makefile:443: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/usr/src/mesos-0.27.1/3rdparty'
Makefile:682: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1

私は今、すべての希望を捨てて、この努力をあきらめるべきですか?

4

3 に答える 3

2

コンパイルするビルドがあります。私が何をしたかを見たい場合は、ここから始めることができます:

https://github.com/jimfcarroll/mesos-on-alpine/blob/alpine/alpine/build.sh

次のように使用できます。

https://github.com/jimfcarroll/mesos-on-alpine/blob/alpine/alpine/README

システム インクルード ファイルに変更を加え、私の mesos のアルパイン ブランチから選択したコード パッチがあります。これらを確認して、変更内容を確認できます。

立ち上がって実行されますが、テストの約 10 ~ 15 が失敗します。

これらの失敗のいくつかは、Alpine 標準コマンド ('cp' や 'du' など) が mesos が期待するものとは異なるパラメーターを取るという事実に関連しています。

少なくとも 1 つは、私のパッチが fstab を読み取る mesos に関連する機能を削除したためです。

他の人についてはわかりません。

私の目標は、alpine ベースの mesos-master と mesos-slave を取得することではなく (それができればよかったのですが)、移動することで Docker Alpine ベースの Mesos フレームワークを実行できるように libmesos.so を構築することでした。ビルドが完了したら、ライブラリを上書きします。

編集: 私はまだ mesosphere リリースされた mesos-master と mesos-slave に対してそれを正常に動作させていないことに注意する必要があるので、これを出発点としてください。誰かがさらに進歩したかどうかを確認したいと思います。

于 2016-03-10T19:49:47.113 に答える
1

Git の最新コードの時点で、Mesos はそのまま Alpine Linux でビルドする必要があります ( https://issues.apache.org/jira/browse/MESOS-5540を参照)。これらの変更は、後続の Apache に含める必要があります。メソスリリース。

于 2016-06-05T15:28:41.080 に答える