当前位置:网站首页>Flink: from introduction to Zhenxiang (3. Reading data from collection and file)
Flink: from introduction to Zhenxiang (3. Reading data from collection and file)
2020-11-08 12:06:00 【open_neocf7df】
You can refer to : https://blog.51cto.com/mapengfei/2546985
Reading data from a collection
New package ,com.mafei.apitest, Create a new one scala Object class ,
package com.mafei.apitest
import org.apache.flink.api.scala.createTypeInformation
import org.apache.flink.streaming.api.scala.StreamExecutionEnvironment
// Get sensor data
case class SensorReading(id: String,timestamp: Long, temperature: Double)
object SourceTest {
def main(args: Array[String]): Unit = {
// Create an execution environment
val env = StreamExecutionEnvironment.getExecutionEnvironment
// 1、 Reading data from a collection
val dataList = List(
SensorReading("sensor1",1603766281,41),
SensorReading("sensor2",1603766282,42),
SensorReading("sensor3",1603766283,43),
SensorReading("sensor4",1603766284,44)
)
val stream1 = env.fromCollection(dataList)
stream1.print()
// perform
env.execute(" source test")
}
}
Code catalog diagram :
Running effect
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
2> SensorReading(sensor3,1603766283,43.0)
4> SensorReading(sensor1,1603766281,41.0)
3> SensorReading(sensor4,1603766284,44.0)
1> SensorReading(sensor2,1603766282,42.0)
Read data from file
Just like the first step , New package ,com.mafei.apitest, Create a new one scala Object class ,
package com.mafei.apitest
import org.apache.flink.api.scala.createTypeInformation
import org.apache.flink.streaming.api.scala.StreamExecutionEnvironment
// Get sensor data
case class SensorReading(id: String,timestamp: Long, temperature: Double)
object SourceTest {
def main(args: Array[String]): Unit = {
// Create an execution environment
val env = StreamExecutionEnvironment.getExecutionEnvironment
// Reading data from a file
val stream2= env.readTextFile("/opt/java2020_study/maven/flink1/src/main/resources/sensor.txt")
stream2.print()
// perform
env.execute(" source test")
}
}
stay resources New under the directory sensor.txt, Write the following
sensor1,1603766281,41
sensor2,1603766282,42
sensor3,1603766283,43
sensor4,1603766284,44
Code structure diagram :
Code running effect :
1> sensor1,1603766281,41
1> sensor2,1603766282,42
2> sensor3,1603766283,43
3> sensor4,1603766284,44
版权声明
本文为[open_neocf7df]所创,转载请带上原文链接,感谢
边栏推荐
- Xamarin 从零开始部署 iOS 上的 Walterlv.CloudKeyboard 应用
- It's 20% faster than python. Are you excited?
- 第二次作业
- 笔试面试题目:判断单链表是否有环
- Learning summary (about deep learning, vision and learning experience)
- 值得一看!EMR弹性低成本离线大数据分析最佳实践(附网盘链接)
- How TCP protocol ensures reliable transmission
- 分布式文档存储数据库之MongoDB基础入门
- This year's salary is 35W +! Why is the salary of Internet companies getting higher and higher?
- 运维人员常用到的 11 款服务器监控工具
猜你喜欢
蘑菇街电商交易平台服务架构及改造优化历程(含PPT)
Implementation of verification code recognition in Python opencv pytesseract
Analysis of istio access control
一文剖析2020年最火十大物联网应用|IoT Analytics 年度重磅报告出炉!
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
Istio traffic management -- progress gateway
PMP心得分享
Shell uses. Net objects to send mail
Ali tear off the e-commerce label
PDMS cutting software
随机推荐
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
If you don't understand the gap with others, you will never become an architect! What's the difference between a monthly salary of 15K and a monthly salary of 65K?
新的目标市场在哪里?锚定的产品是什么?| 十问2021中国企业服务
Q & A and book giving activities of harbor project experts
吐血整理!阿里巴巴 Android 开发手册!(附网盘链接)
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
Hematemesis! Alibaba Android Development Manual! (Internet disk link attached)
Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
Flink的sink实战之一:初探
Istio流量管理--Ingress Gateway
Python basic syntax
Flink's sink: a preliminary study
不多不少,大学里必做的五件事(从我的大一说起)
Bohai bank million level fines continue: Li Volta said that the governance is perfect, the growth rate is declining
Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
Introduction to mongodb foundation of distributed document storage database
The container with the most water
Win10 Terminal + WSL 2 安装配置指南,精致开发体验
Python basic syntax variables
How to deploy pytorch lightning model to production