Building Giraph with Hadoop

后端 未结 2 1883
[愿得一人]
[愿得一人] 2021-01-06 05:42

I am trying to set up Giraph with Hadoop 2.7.1 Try as I might, it doesn\'t seem to work.

I have tried following the below links,

  • http://giraph.apache.org
相关标签:
2条回答
  • 2021-01-06 06:28

    I ran into this issue today. Finally I needed two patches to fix it:

    1. Open pom.xml in base directory and replace
      <munge.symbols>PURE_YARN,STATIC_SASL_SYMBOL</munge.symbols> with:
      <munge.symbols>PURE_YARN</munge.symbols>

    2. Apply patch found here: GIRAPH-1110.02.patch

    3. Build using the clean flag of maven:
      mvn -Phadoop_yarn -Dhadoop.version=2.7.3 clean package -DskipTests

    0 讨论(0)
  • 2021-01-06 06:40

    I just ran into this issue earlier today and found a reply in the mailing list that suggests removing STATIC_SASL_SYMBOL from munge.symbols in the hadoop_yarn profile.

    I was able to build that profile after making that change.

    Here is the link to the mailing list archive: http://mail-archives.apache.org/mod_mbox/giraph-user/201501.mbox/%3C54B17196.4040107@hiro-tan.org%3E

    0 讨论(0)
提交回复
热议问题