当前位置:网站首页>编译Hudi
编译Hudi
2022-07-31 02:40:00 【hyunbar】

大数据技术AI
Flink/Spark/Hadoop/数仓,数据分析、面试,源码解读等干货学习资料
129篇原创内容
公众号
版本分布
centos:centos8
hudi:0.10.1
spark:3.1.3
scala:2.12
1、Maven安装
1.1 手动安装
(1)下载maven
https://maven.apache.org/download.cgi

(2)上传解压maven
tar -zxvf apache-maven-3.6.1-bin.tar.gz -C /bigdata/
(3)添加环境变量到/etc/profile中
#MAVEN_HOME
export MAVEN_HOME=/bigdata/apache-maven-3.6.1
export PATH=$PATH:$MAVEN_HOME/bin
source /etc/profile
(4)测试安装结果
[email protected]:~$ mvn -v
Apache Maven 3.6.3
Maven home: /bigdata/apache-maven-3.6.1
Java version: 1.8.0_321, vendor: Oracle Corporation, runtime: /bigdata/module/jdk1.8.0_321/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "5.13.0-44-generic", arch: "aarch64", family: "unix"
(5)修改setting.xml,指定为阿里云
nexus-aliyun central Nexus aliyun http://maven.aliyun.com/nexus/content/groups/public

### 1.2 apt或yum安装
apt install maven
2、安装git
-------
yum install [email protected]:~$ git --versiongit version 2.25.1
3、构建hudi
--------
### 3.1 通过国内镜像拉取源码
git clone --branch release-0.10.1 https://gitee.com/apache/Hudi.git
3.2 修改pom.xml
[email protected]:~# vim Hudi/pom.xml
nexus-aliyun
nexus-aliyun
http://maven.aliyun.com/nexus/content/groups/public/
true
false
### 3.3 构建
不同spark版本的编译
| Maven build options | Expected Spark bundle jar name | Notes |
| :-- | :-- | :-- |
| (empty) | hudi-spark-bundle\_2.11 (legacy bundle name) | For Spark 2.4.4 and Scala 2.11 (default options) |
| `-Dspark2.4` | hudi-spark2.4-bundle\_2.11 | For Spark 2.4.4 and Scala 2.11 (same as default) |
| `-Dspark2.4 -Dscala-2.12` | hudi-spark2.4-bundle\_2.12 | For Spark 2.4.4 and Scala 2.12 |
| `-Dspark3.1 -Dscala-2.12` | hudi-spark3.1-bundle\_2.12 | For Spark 3.1.x and Scala 2.12 |
| `-Dspark3.2 -Dscala-2.12` | hudi-spark3.2-bundle\_2.12 | For Spark 3.2.x and Scala 2.12 |
| `-Dspark3` | hudi-spark3-bundle\_2.12 (legacy bundle name) | For Spark 3.2.x and Scala 2.12 |
| `-Dscala-2.12` | hudi-spark-bundle\_2.12 (legacy bundle name) | For Spark 2.4.4 and Scala 2.12 |
mvn clean package -DskipTests -Dspark3 -Dscala-2.12
耗时周末一天,终于编译成功

### 4、问题总结
#### **Q1:dependencies at io.confluent:kafka-avro-serializer:jar**
ERROR] Failed to execute goal on project hudi-utilities_2.12: Could not resolve dependencies for project org.apache.hudi:hudi-utilities_2.12:jar:0.10.1: Failed to collect dependencies at io.confluent:kafka-avro-serializer:jar:5.3.4: Failed to read artifact descriptor for io.confluent:kafka-avro-serializer:jar:5.3.4: Could not transfer artifact io.confluent:kafka-avro-serializer:pom:5.3.4 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [nexus-aliyun (http://maven.aliyun.com/nexus/content/groups/public/, default, releases)] -> [Help 1]
解决:将原来的mirror也打开,阿里仓库没有
Starting from versions 0.11, Hudi no longer requires spark-avro to be specified using --packages

#### **Q2:The goal you specified requires a project to execute but there is no POM in this directory (/root). Please verify you invoked Maven from the correct directory**
解决:切换到有pom的文件夹下才能执行
边栏推荐
- Inter-vlan routing + static routing + NAT (PAT + static NAT) comprehensive experiment
- Introduction to flask series 】 【 flask - using SQLAlchemy
- STM32CUBEMX开发GD32F303(11)----ADC在DMA模式下扫描多个通道
- php 网站的多语言设置(IP地址区分国内国外)
- Difference between CMOS and TTL?
- Calculate S=a+aa+…+aa…a
- ShardingJDBC基本介绍
- Verify the integer input
- 图解lower_bound&upper_bound
- 221. Largest Square
猜你喜欢

19.支持向量机-优化目标和大间距直观理解

Layer 2 broadcast storm (cause + judgment + solution)

Installation, start and stop of redis7 under Linux

multiplayer-hlap 包有问题,无法升级的解决方案

Intel's software and hardware optimization empowers Neusoft to accelerate the arrival of the era of smart medical care

19. Support Vector Machines - Intuitive Understanding of Optimization Objectives and Large Spacing

STP选举(步骤+案列)详解

Problems that need to be solved by the tcp framework

Basic learning about Redis related content

Drools基本介绍,入门案例,基本语法
随机推荐
Software accumulation -- Screenshot software ScreenToGif
10 权限介绍
图解lower_bound&upper_bound
自动化办公案例:如何自动生成期数据?
【银行系列第一期】中国人民银行
Draw Your Cards
LeetCode Daily Question 2022/7/25-2022/7/31
print task sorting js od huawei
ShardingJDBC usage summary
Intranet Infiltration - Privilege Escalation
16. Registration Center-consul
7、私信列表
MPPT solar charge controller data collection - through the gateway acquisition capacity battery SOC battery voltage, wi-fi
8、统一处理异常(控制器通知@ControllerAdvice全局配置类、@ExceptionHandler统一处理异常)
经典链表OJ强训题——快慢双指针高效解法
如何搭建私有yum源
10、Redis实现点赞(Set)和获取总点赞数
Teach you how to configure Jenkins automated email notifications
拒绝加班,程序员开发的效率工具集
【Android】Room —— SQLite的替代品