当前位置:   article > 正文

3 分钟部署 SeaTunnel Zeta 单节点 Standalone 模式环境

seatunnel zeta

点击蓝字 关注我们

0d869d1eeb41d0fb549e75a647937e38.png

部署环境(MacOS/Linux)

1.安装JDK环境

目前SeaTunnel支持运行在JDK8及以上的环境。用户需要自行安装JDK环境。

2.下载安装包

目前SeaTunnel的最新版本是2.3.1版本。这里我们安装部署2.3.1版本,如果你需要下载其它版本,可以从https://seatunnel.apache.org/download中查询对应的版本。

  1. mkdir ~/seatunnel
  2. cd ~/seatunnel
  3. wget https://dlcdn.apache.org/incubator/seatunnel/2.3.1/apache-seatunnel-incubating-2.3.1-bin.tar.gz
  4. tar -zxvf apache-seatunnel-incubating-2.3.1-bin.tar.gz

3.选择需要的插件

SeaTunnel的安装包中默认不包含同步数据需要的连接器插件,用户需要先编辑config目录下的plugin_config文件,这个文件中描述了需要下载和安装的连接器插件,默认所有已经支持的连接器插件都会下载和安装。我们可以修改该文件,删除我们不需要的插件,只保留我们需要的插件。

  1. cd ~/seatunnel/apache-seatunnel-incubating-2.3.1
  2. vi config/plugin_config

然后修改内容,本次我只需要JDBC,MySQL CDC,StarRocks ,Assert,Fake,Console这6个连接器,其它的删除,最终文件内容如下:

  1. --connectors-v2--
  2. connector-assert
  3. connector-cdc-mysql
  4. connector-jdbc
  5. connector-starrocks
  6. connector-fake
  7. connector-console
  8. --end--

4.运行下载安装命令

下面我们运行连接器下载安装命令,注意,这一步依赖你的机器上已经安装部署了Maven并且机器可以连接互联网,你可以通过如下命令确认是否安装了Maven:

mvn

如果显示如下信息,说明Maven环境已经安装部署好了,如果出现问题报错,请先安装部署或修复Maven的问题再进行下面的部署。

  1. Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
  2. Maven home: /Users/gaojun/app/apache-maven-3.6.3
  3. Java version: 1.8.0_181, vendor: Oracle Corporation, runtime: /Library/Java/JavaVirtualMachines/jdk1.8.0_181.jdk/Contents/Home/jre
  4. Default locale: zh_CN, platform encoding: UTF-8
  5. OS name: "mac os x", version: "10.16", arch: "x86_64", family: "mac"

运行下载安装连接器插件的命令:

  1. cd ~/seatunnel/apache-seatunnel-incubating-2.3.1
  2. sh bin/install-plugin.sh

等待命令执行完成,连接器插件即下载安装完成。安装完成后可见~/seatunnel/apache-seatunnel-incubation-2.3.1/connectors/seatunnel/目录下已经有了安装好的连接器插件。

fd599a2dc472a5b3d8c34848af4bcdb3.png

5.启动一个单节点的SeaTunnel Zeta节点

  1. cd ~/seatunnel/apache-seatunnel-incubating-2.3.1
  2. nohup sh bin/seatunnel-cluster.sh 2>&1 &

通过jps命令我们能查看进程是否已经启动,进程名为SeaTunnelServer

jps

6.运行自带的离线批同步demo任务

在config目录下有一个自带的离线批同步任务的配置文件v2.batch.config.template,该文件定义了一个作业,使用一个叫FakeSource的Source连接器生成数据,并将数据发送给Console这个Sink,Console Sink的作用是将接收到的数据打印到控制台。

所以运行该作业可以看到在控制台中会打印数据,一共有32行数据将被打印,每条数据有两个字段(name, age)。v2.batch.config.template文件的内容如下:

  1. env {
  2. # You can set SeaTunnel environment configuration here
  3. execution.parallelism = 2
  4. job.mode = "BATCH"
  5. checkpoint.interval = 10000
  6. #execution.checkpoint.interval = 10000
  7. #execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint"
  8. }
  9. source {
  10. # This is a example source plugin **only for test and demonstrate the feature source plugin**
  11. FakeSource {
  12. parallelism = 2
  13. result_table_name = "fake"
  14. row.num = 16
  15. schema = {
  16. fields {
  17. name = "string"
  18. age = "int"
  19. }
  20. }
  21. }
  22. # If you would like to get more information about how to configure Seatunnel and see full list of source plugins,
  23. # please go to https://seatunnel.apache.org/docs/category/source-v2
  24. }
  25. sink {
  26. Console {
  27. }
  28. # If you would like to get more information about how to configure Seatunnel and see full list of sink plugins,
  29. # please go to https://seatunnel.apache.org/docs/category/sink-v2
  30. }

执行该demo作业:

  1. cd ~/seatunnel/apache-seatunnel-incubating-2.3.1
  2. sh bin/seatunnel.sh --config config/v2.batch.config.template

作业运行完成后能够看到如下监控信息:

45feff07ebbe3a0ceeb7c0a83ae109f4.png

7.运行自带的实时同步demo作业

在config目录下有一个自带的实时同步任务的配置文件v2.streaming.conf.template,该文件定义了一个作业,使用一个叫FakeSource的Source连接器生成数据,并将数据发送给Console这个Sink,Console Sink的作用是将接收到的数据打印到控制台。

所以运行该作业可以看到在控制台中会打印数据,因为是实时作业,该作业不会自动停止,v2.streaming.conf.template文件的内容如下:

  1. env {
  2. # You can set flink configuration here
  3. execution.parallelism = 2
  4. job.mode = "STREAMING"
  5. checkpoint.interval = 2000
  6. #execution.checkpoint.interval = 10000
  7. #execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint"
  8. }
  9. source {
  10. # This is a example source plugin **only for test and demonstrate the feature source plugin**
  11. FakeSource {
  12. parallelism = 2
  13. result_table_name = "fake"
  14. row.num = 16
  15. schema = {
  16. fields {
  17. name = "string"
  18. age = "int"
  19. }
  20. }
  21. }
  22. # If you would like to get more information about how to configure Seatunnel and see full list of source plugins,
  23. # please go to https://seatunnel.apache.org/docs/category/source-v2
  24. }
  25. sink {
  26. Console {
  27. }
  28. # If you would like to get more information about how to configure Seatunnel and see full list of sink plugins,
  29. # please go to https://seatunnel.apache.org/docs/category/sink-v2
  30. }

执行该demo作业:

  1. cd ~/seatunnel/apache-seatunnel-incubating-2.3.1
  2. sh bin/seatunnel.sh --config config/v2.streaming.conf.template

作业运行1分钟左右,应该能够看到如下监控信息:

b7e2e3285b896429a2c4c048f9f23951.png

说明作业正常运行,通过Control+C结束该作业,中止作业运行。

到此,SeaTunnel Zeta部署并验证完成。

Apache SeaTunnel

8a0dd15d1e580f28ec06869a4a02e79c.png

Apache SeaTunnel(Incubating) 是一个分布式、高性能、易扩展、用于海量数据(离线&实时)同步和转化的数据集成平台

仓库地址: 

https://github.com/apache/incubator-seatunnel

网址:

https://seatunnel.apache.org/

Proposal:

https://cwiki.apache.org/confluence/display/INCUBATOR/SeaTunnelPro

Apache SeaTunnel(Incubating)  下载地址:

https://seatunnel.apache.org/download

衷心欢迎更多人加入!

我们相信,在「Community Over Code」(社区大于代码)、「Open and Cooperation」(开放协作)、「Meritocracy」(精英管理)、以及「多样性与共识决策」等 The Apache Way 的指引下,我们将迎来更加多元化和包容的社区生态,共建开源精神带来的技术进步!

我们诚邀各位有志于让本土开源立足全球的伙伴加入 SeaTunnel 贡献者大家庭,一起共建开源!

提交问题和建议:

https://github.com/apache/incubator-seatunnel/issues

贡献代码:

https://github.com/apache/incubator-seatunnel/pulls

订阅社区开发邮件列表 : 

dev-subscribe@seatunnel.apache.org

开发邮件列表:

dev@seatunnel.apache.org

加入 Slack:

https://join.slack.com/t/apacheseatunnel/shared_invite/zt-1cmonqu2q-ljomD6bY1PQ~oOzfbxxXWQ

关注 Twitter: 

https://twitter.com/ASFSeaTunnel

活动推荐

SeaTunnel 开源之夏学生项目申请开启,单项最高获 12000 元奖金!

点击图片了解详情并报名

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/530157
推荐阅读
相关标签