Flink__Flink1.10.0源码编译

从源码编译Flink需要在本地安装以下基础组件.

  1. 系统环境: MacOS - Darwin localhost 19.5.0 Darwin Kernel Version 19.5.0: Tue May 26 20:41:44 PDT 2020; root:xnu-6153.121.2~2/RELEASE_X86_64 x86_64
  2. JDK,编译flink1.10.0 需要JDK8 及以上版本。
  3. Maven,Maven3.3.x可以构建Flink,但不能涵盖某些Jar依赖,编译打包可能会有问题。Flink1.10.0推荐使用Maven3.2.5。要构建单元测试,请使用Java 8u51 或更高版本,防止使用单元测试PowerMock时出错。
  4. Git
  5. NodeJs.
  6. Scala: Flink支持Java, Scala,Python3种语言。如果开发者是Java技术栈,没接触过Scala可以不考虑Scala。Flink类库,运行时环境,API有部分是用Scala语言编写的。用户使用的ScalaAPI 和类库的版本需要与Flink的Sacla版本匹配。从Flink1.7及后续版本编译Flink使用Scala2.11(默认)或Scala2.12版本。

构建Flink

1. 下载Flink源码

可以从Flink Release页下载Flink源码 ,或者 Flink Github 克隆源码,然后使用 git checkout release-1.10.0 切到指定分支,我需要的是1.10.0版本。

git clone https://github.com/apache/flink
git checkout release-1.10.0

2. 修改当前用户Maven 'setting.xml' 文件.

<mirrors>
    <mirror>
        <id>nexus-aliyun</id>
        <mirrorOf>*,!jeecg,!jeecg-snapshots,!mapr-releases</mirrorOf>
        <name>Nexus aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public</url>
    </mirror>

    <mirror>
        <id>mapr-public</id>
        <mirrorOf>mapr-releases</mirrorOf>
        <name>mapr-releases</name>
        <url>https://maven.aliyun.com/repository/mapr-public</url>
    </mirror>
</mirrors>

第1个mirror:使用的是aliyun提供的maven镜像仓库,能够为国内用户加速maven repository的访问

第2个mirror:最重要,由于flink中的flink-filesystems/flink-mapr-fs模块依赖mapr-releases repository提供的jar包,然而由于国内访问mapr-releases repository比较慢,而且所依赖的maprfs-5.2.1-mapr.jar 这个jar包有48MB,flink依赖中最大的一个jar包,故初次编译flink时,往往会由于下载mapr相关依赖超时导致编译失败。因此,aliyun专门有一个镜像仓库代理mapr-releases repository,以期望能让用户更容易地下载mapr相关的jar包。
参考连接

3. 修改flink-runtime-web工程的Pom.xml文件

flink-runtime-web模块引入了frontend-maven-plugin依赖,并安装了node和部分依赖组件,源码编译时一直卡在 [INFO] Running ‘npm ci --cache-max=0 --no-save’ in。Google一把说是网络问题,于是修改了flink-runtime-web模块的pom.xml文件:

<plugin>
    <groupId>com.github.eirslett</groupId>
    <artifactId>frontend-maven-plugin</artifactId>
    <version>1.6</version>
    <executions>
        <execution>
            <id>install node and npm</id>
            <goals>
                <goal>install-node-and-npm</goal>
            </goals>
            <configuration>
                <!-- 新增部分 -->
                <nodeDownloadRoot>https://registry.npm.taobao.org/dist/</nodeDownloadRoot>
                <npmDownloadRoot>https://registry.npmjs.org/npm/</npmDownloadRoot>
                <nodeVersion>v10.9.0</nodeVersion>
            </configuration>
        </execution>
        <execution>
            <id>npm install</id>
            <goals>
                <goal>npm</goal>
            </goals>
            <configuration>
                <!-- 修改部分  -->
                <!-- 原始命令: ci --cache-max=0 --no-save -->
                <arguments>install -registry=https://registry.npm.taobao.org --cache-max=0 --no-save</arguments>
                <environmentVariables>
                    <HUSKY_SKIP_INSTALL>true</HUSKY_SKIP_INSTALL>
                </environmentVariables>
            </configuration>
        </execution>
        <execution>
            <id>npm run build</id>
            <goals>
                <goal>npm</goal>
            </goals>
            <configuration>
                <arguments>run build</arguments>
                <!-- 新增部分 -->
                <npmRegistryURL>https://registry.npm.taobao.org</npmRegistryURL>
            </configuration>
        </execution>
    </executions>
    <configuration>
        <workingDirectory>web-dashboard</workingDirectory>
    </configuration>
</plugin>

参考连接1
参考连接2

4. 编译Flink源码

比较简单的打包方式是使用下面命令:

mvn clean install -DskipTests

这条打包命令maven会先删除之前已经存在的编译文件,然后再打包编译新的文件。
这条命令运行速度会比较慢,因为打包了一些不常用的jar包,比如"QA", "JavaDocs"等,如果想打包速度快一些,可以执行下面命令:

mvn clean install -DskipTests -Dfast

此命令会跳过"QA", "JavaDocs"等jar包的编译,加快编译打包。还可以指定Hadoop版本,Scala版本等:

mvn clean install -DskipTests -Dfast -Dhadoop.version=2.8.3 -Dscala-2.12

5. 源码编译成功

编译成功的文件会放在flink源码目录/flink-dist/target 目录下:

localhost:target guyue$ ll
total 199104
-rw-r--r--  1 guyue  staff    30B 10 27 16:12 .plxarc
drwxr-xr-x  3 guyue  staff    96B 10 27 16:12 antrun
drwxr-xr-x  2 guyue  staff    64B 10 27 16:13 archive-tmp
-rw-r--r--  1 guyue  staff   490K 10 27 16:13 bash-java-utils.jar
drwxr-xr-x  5 guyue  staff   160B 10 27 16:12 classes
drwxr-xr-x  3 guyue  staff    96B 10 27 16:13 flink-1.10.0-bin
-rw-r--r--  1 guyue  staff    96M 10 27 16:13 flink-dist_2.12-1.10.0.jar
drwxr-xr-x  3 guyue  staff    96B 10 27 16:12 generated-test-sources
drwxr-xr-x  3 guyue  staff    96B 10 27 16:12 maven-archiver
drwxr-xr-x  3 guyue  staff    96B 10 27 16:12 maven-shared-archive-resources
-rw-r--r--  1 guyue  staff   206K 10 27 16:12 original-flink-dist_2.12-1.10.0.jar
drwxr-xr-x  4 guyue  staff   128B 10 27 16:12 temporary
drwxr-xr-x  5 guyue  staff   160B 10 27 16:12 test-classes

遇到的问题

  1. Could not find artifact io.confluent:kafka-schema-registry-client:jar:3.3.1
[ERROR] Failed to execute goal on project flink-avro-confluent-registry: Could not resolve dependencies for project org.apache.flink:flink-avro-confluent-registry:jar:1.10.0: Could not find artifact io.confluent:kafka-schema-registry-client:jar:3.3.1 in nexus-aliyun (http://maven.aliyun.com/nexus/content/groups/public) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :flink-avro-confluent-registry

镜像仓库中没有"kafka-schema-registry-client-3.3.1.jar" 依赖,手动从 这里下载,手动安装到本地仓库:

mvn install:install-file -DgroupId=io.confluent -DartifactId=kafka-schema-registry-client -Dversion=3.3.1 -Dpackaging=jar  -Dfile=/Users/guyue/Downloads/kafka-schema-registry-client-3.3.1.jar

再次重新编译。
参考连接
参考连接

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342