spark源码学习(2)--编译源码+踩坑记录

写个博客记录一下自己编译spark源码和运行spark源码中examples例子的过程。我跑的程序是JavaSparkPi这个例子,求π的值。结果如下:

5679451-608f969364281f41.png

下面是整个实验过程:

1.首先用git把源码clone下来,我用的是2.4.4版本,在windows7环境下编译。

2.直接用官方文档中的方法,在git中进入spark源码目录,执行下面的命令。

./build/mvn -DskipTests clean package

3.编译源码花了40多分钟吧,没有出错。

4.用IDEA导入编译后的源码。

5.准备运行spark-examples下面的例子。直接run,发现会出现各种类找不到,未定义什么的。此时按如下方法做。

  • 首先修改spark-examples的pom.xml文件,用ctrl+r把 provided全部替换为compile

  • 然后在spark-examples的pom.xml文件中添加如下代码

    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <scope>compile</scope>
    </dependency>
  • 接着还需要添加jetty的依赖包
<dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-util</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-server</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-servlet</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-security</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-http</artifactId>
      <scope>compile</scope>
    </dependency>
  • 最后在运行前,还要再run configuration中添加VM options
    -Dspark.master=local

接下来就可以直接run了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

叹了口丶气

觉得有收获就支持一下吧~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值