All Projects → MyLanPangzi → flink-demo

MyLanPangzi / flink-demo

Licence: MIT license
Flink Demo

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to flink-demo

flink-tutorials
Flink Tutorial Project
Stars: ✭ 104 (+166.67%)
Mutual labels:  flink, flink-examples
Real-time-Data-Warehouse
Real-time Data Warehouse with Apache Flink & Apache Kafka & Apache Hudi
Stars: ✭ 52 (+33.33%)
Mutual labels:  flink, flink-sql
Flink Recommandsystem Demo
🚁🚀基于Flink实现的商品实时推荐系统。flink统计商品热度,放入redis缓存,分析日志信息,将画像标签和实时记录放入Hbase。在用户发起推荐请求后,根据用户画像重排序热度榜,并结合协同过滤和标签两个推荐模块为新生成的榜单的每一个产品添加关联产品,最后返回新的用户列表。
Stars: ✭ 3,115 (+7887.18%)
Mutual labels:  flink, flink-examples
LarkMidTable
LarkMidTable 是一站式开源的数据中台,实现中台的 基础建设,数据治理,数据开发,监控告警,数据服务,数据的可视化,实现高效赋能数据前台并提供数据服务的产品。
Stars: ✭ 873 (+2138.46%)
Mutual labels:  flink, flink-sql
flink-connector-kudu
基于Apache-bahir-kudu-connector的flink-connector-kudu,支持Flink1.11.x DynamicTableSource/Sink,支持Range分区等
Stars: ✭ 40 (+2.56%)
Mutual labels:  flink, flink-sql
flink-client
Java library for managing Apache Flink via the Monitoring REST API
Stars: ✭ 48 (+23.08%)
Mutual labels:  flink
dlink
Dinky is an out of the box one-stop real-time computing platform dedicated to the construction and practice of Unified Streaming & Batch and Unified Data Lake & Data Warehouse. Based on Apache Flink, Dinky provides the ability to connect many big data frameworks including OLAP and Data Lake.
Stars: ✭ 1,535 (+3835.9%)
Mutual labels:  flink
flink-spark-submiter
从本地IDEA提交Flink/Spark任务到Yarn/k8s集群
Stars: ✭ 157 (+302.56%)
Mutual labels:  flink
Lidea
大型分布式系统实时监控平台
Stars: ✭ 28 (-28.21%)
Mutual labels:  flink
dockerfiles
Multi docker container images for main Big Data Tools. (Hadoop, Spark, Kafka, HBase, Cassandra, Zookeeper, Zeppelin, Drill, Flink, Hive, Hue, Mesos, ... )
Stars: ✭ 29 (-25.64%)
Mutual labels:  flink
apache-flink-jdbc-streaming
Sample project for Apache Flink with Streaming Engine and JDBC Sink
Stars: ✭ 22 (-43.59%)
Mutual labels:  flink
SANSA-Stack
Big Data RDF Processing and Analytics Stack built on Apache Spark and Apache Jena http://sansa-stack.github.io/SANSA-Stack/
Stars: ✭ 130 (+233.33%)
Mutual labels:  flink
flink-deployer
A tool that help automate deployment to an Apache Flink cluster
Stars: ✭ 143 (+266.67%)
Mutual labels:  flink
logparser
Easy parsing of Apache HTTPD and NGINX access logs with Java, Hadoop, Hive, Pig, Flink, Beam, Storm, Drill, ...
Stars: ✭ 139 (+256.41%)
Mutual labels:  flink
FlinkExperiments
Experiments with Apache Flink.
Stars: ✭ 3 (-92.31%)
Mutual labels:  flink
dt-sql-parser
SQL Parsers for BigData, built with antlr4.
Stars: ✭ 135 (+246.15%)
Mutual labels:  flink-sql
fdp-modelserver
An umbrella project for multiple implementations of model serving
Stars: ✭ 47 (+20.51%)
Mutual labels:  flink
bigdata-doc
大数据学习笔记,学习路线,技术案例整理。
Stars: ✭ 37 (-5.13%)
Mutual labels:  flink
seatunnel-example
seatunnel plugin developing examples.
Stars: ✭ 27 (-30.77%)
Mutual labels:  flink
TiBigData
TiDB connectors for Flink/Hive/Presto
Stars: ✭ 192 (+392.31%)
Mutual labels:  flink

flink-demo

sql 代码混合执行

call com.hiscat.flink.cdc.function.MysqlCdcSourceRegister;

CREATE TABLE ods_binlog_default
(
    `key`   STRING,
    `value` STRING,
    `topic` STRING METADATA FROM 'topic'
) WITH (
    'connector' = 'route-kafka',
    'topic' = 'ods_binlog_default',
    'properties.bootstrap.servers' = 'localhost:9092',
    'key.format' = 'raw',
    'key.fields' = 'key',
    'value.format' = 'raw',
    'value.fields-include' = 'EXCEPT_KEY',
    'properties.compression.type' = 'gzip',
    'properties.linger.ms' = '1000'
 );

INSERT INTO ods_binlog_default
SELECT `key`, `value`, get_topic(`db`, `table`)
FROM cdc;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].