数据湖paimon连接flink、mysql和hive

2 篇文章 0 订阅

一、启动flink客户端并测试

1、环境准备

flink版本:1.16.2

lib下需要的依赖包:

antlr-runtime-3.5.2.jar
commons-beanutils-1.9.3.jar
commons-pool2-2.4.3.jar
druid-1.1.19.jar
fastjson-1.2.57.jar
flink-cep-1.16.2.jar
flink-connector-files-1.16.2.jar
flink-connector-hive_2.12-1.16.2.jar
flink-connector-jdbc-1.16.2.jar
flink-connector-kafka-1.16.2.jar
flink-connector-starrocks-1.2.7_flink-1.15.jar
flink-csv-1.16.2.jar
flink-dist-1.16.2.jar
flink-json-1.16.2.jar
flink-scala_2.12-1.16.2.jar
flink-shaded-hadoop-2-uber-2.8.3-10.0.jar
flink-shaded-zookeeper-3.5.9.jar
flink-table-api-java-uber-1.16.2.jar
flink-table-planner-loader-1.16.2.jar
flink-table-runtime-1.16.2.jar
hive-exec-2.3.4.jar
kafka-clients-2.4.1.jar
log4j-1.2-api-2.17.1.jar
log4j-api-2.17.1.jar
log4j-core-2.17.1.jar
log4j-slf4j-impl-2.17.1.jar
mysql-connector-java-8.0.19.jar
paimon-flink-1.16.jar

在这里插入图片描述

2、启动flink客户端(yarn session模式)
-- 首先要配置yarn地址,export HADOOP_CLASSPATH=`hadoop classpath`
-- https://nightlies.apache.org/flink/flink-docs-release-1.10/ops/deployment/yarn_setup.html
bin/yarn-session.sh -yn 3 -ys 3 -yjm 2048 -ytm 5120 -ynm flink_session_testn -d & 
-d : 后台启动
-ynm: 应用名称
3、启动flink客户端
bin/sql-client.sh embedded -s yarn-session
4、测试是否通
1) kafka测试

create table dwd_crisps_biz_interview_rt
(
    id                    BIGINT COMMENT '主键id',
    inviter_id            BIGINT COMMENT '面谈人id',
    inviter_org_id        BIGINT COMMENT '面谈人部门id',
    accompany_id          BIGINT COMMENT '陪面谈人id',
    record_type           INT COMMENT '记录类型',
    association_id        BIGINT COMMENT '关联业务id',
    association_no        VARCHAR(64) COMMENT '关联业务编号',
    create_time           TIMESTAMP COMMENT '创建时间',
    confirm_complete_time TIMESTAMP COMMENT '完成时间',
    invite_time           TIMESTAMP COMMENT '约定时间',
    process_time          as PROCTIME(),
    PRIMARY KEY (id) NOT ENFORCED
)
WITH (
    'connector' = 'kafka'
    ,'topic' = 'bigdata_dwd_db_crm_biz_topic'
    ,'properties.bootstrap.servers' = 'localhost:9092'
    ,'properties.group.id' = 'flink_client_sql_group_id222'
    ,'scan.startup.mode' = 'earliest-offset'
    ,'value.format' = 'canal-json'
    ,'value.canal-json.ignore-parse-errors' = 'true'
    ,'value.canal-json.table.include' = '^dwd_crisps_biz_interview_rt'
);

select * from dwd_crisps_biz_interview_rt;
2)jdbc测试
 create table crisps_ads_goods_detail (
        goods_id bigint,
        sect_code string,
        spu_id bigint,
        goods_json string,
        load_time timestamp
      ) with (
       'connector' = 'jdbc',
       'url' = 'jdbc:mysql://localhost:3306/crisps_bigdata_ads?useUnicode=true&characterEncoding=UTF-8&useAffectedRows=true&useSSL=false&serverTimezone=UTC',
       'username' = 'root',
       'password' = '123456',
       'table-name' = 'crisps_ads_goods_detail',
       'driver' = 'com.mysql.cj.jdbc.Driver',
       'scan.fetch-size' = '200'
	);
 
 select * from crisps_ads_goods_detail;

二、使用paimon

1、创建paimon的catalog
CREATE CATALOG paimon_catalog WITH (
	'type'='paimon',
	'warehouse'='hdfs://hadoop01:4007/data-lake/paimon/catlog/mycatlog'
);
2、切换paimon的catalog
use catalog paimon_catalog;
3、建paimon类型下的表
CREATE TABLE word_count_detail (
	word STRING PRIMARY KEY NOT ENFORCED,
	cnt BIGINT
);
4、从Kafka里面写数据到paimon表

注意:实时写数据到paimon表一定要开启checkpoint时间,如果不设置就不会做checkpoint写到paimon表

设置10

 SET 'execution.checkpointing.interval' = '10 s';

写数据

insert into word_count_detail select association_no as word,1 as cnt from default_catalog.default_database.dwd_crisps_biz_interview_rt;

5、批量查询写入的数据量
-- 设置批量查询
SET 'sql-client.execution.result-mode' = 'tableau';
RESET 'execution.checkpointing.interval';
SET 'execution.runtime-mode' = 'batch';


SELECT count(*) s  FROM word_count_detail;

参数解释

execution.runtime-mode:可视化结果模式

表格模式(table mode)在内存中实体化结果,并将结果用规则的分页表格可视化展示出来。执行如下命令启用:
	SET 'sql-client.execution.result-mode' = 'table';
	

变更日志模式(changelog mode)不会实体化和可视化结果,而是由插入(+)和撤销(-)组成的持续查询产生结果流:
	SET 'sql-client.execution.result-mode' = 'changelog';
	
Tableau模式(tableau mode)更接近传统的数据库,会将执行的结果以制表的形式直接打在屏幕之上。具体显示的内容会取决于作业 执行模式的不同(execution.type):
	SET 'sql-client.execution.result-mode' = 'tableau';

三、Paimon使用hive的catlog

1、创建关联hive的catalog
-- thrift://192.168.4.82:7004在hive/conf/hive-site.xml中查找
-- 7000 7001 7004

CREATE CATALOG paimon_hive_catalog WITH (
    'type' = 'paimon',
    'metastore' = 'hive',
    'uri' = 'thrift://hadoop01:7004',
    'warehouse' = 'hdfs://hadoop01:4007/usr/hive/warehouse'
);

USE CATALOG paimon_hive_catalog;

select count(*) s from  paimon_hive_catalog.crisps_dwd.v2_dwd_trd_order_goods;

四、flink连接hive

1、建立hive的catalog
SET 'sql-client.execution.result-mode' = 'tableau';
RESET 'execution.checkpointing.interval';
SET 'execution.runtime-mode' = 'batch';

CREATE CATALOG hive_catalog WITH (
    'type' = 'hive',
    'default-database' = 'crisps_dwd',
    'hive-conf-dir' = '/usr/local/service/hive/conf'
); 
select order_goods_id,cus_order_no  from  hive_catalog.crisps_dwd.v2_dwd_trd_order_goods limit 11;
select count(*) s from  crisps_dwd.v2_dwd_trd_order_goods;

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值