当前位置:网站首页>Flink学习第五天——Flink可视化控制台依赖配置和界面介绍
Flink学习第五天——Flink可视化控制台依赖配置和界面介绍
2022-08-01 23:22:00 【qq_16397653】
WebUI可视化界面
- 访问:ip:8081
- 方式一:服务端部署Flink集群(生产环境)
- 方式二:本地依赖添加(测试开发)
<!--Flink web ui--> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-runtime-web_${scala.version}</artifactId> <version>${flink.version}</version> </dependency>代码开发
public static void main(String[] args) throws Exception { final StreamExecutionEnvironment env = StreamExecutionEnvironment.createLocalEnvironmentWithWebUI(new Configuration()); //env.setParallelism(1); DataStream<String> stringDataStream = env.socketTextStream("127.0.0.1",8888); DataStream<String> flatMapDataStream = stringDataStream.flatMap(new FlatM
边栏推荐
- 程序员如何优雅地解决线上问题?
- 系统可用性:SRE口中的3个9,4个9...到底是个什么东西?
- 数据增强--学习笔记(图像类,cnn)
- Solve the port to take up
- The monthly salary of the test post is 5-9k, how to increase the salary to 25k?
- excel change cell size
- C language - branch statement and loop statement
- Create virtual environments with virtualenv and Virtualenvwrapper virtual environment management tools
- 深度学习基础-基于Numpy的循环神经网络(RNN)实现和反向传播训练
- 检查点是否在矩形内
猜你喜欢

npm包【详解】(内含npm包的开发、发布、安装、更新、搜索、卸载、查看、版本号更新规则、package.json详解等)

Data Organization --- Chapter 5 Trees and Binary Trees --- The Concept of Binary Trees --- Application Questions

数据分析04

数据增强--学习笔记(图像类,cnn)

访问控制台中的选定节点

软技能之UML图

数据机构---第五章树与二叉树---二叉树的概念---应用题

系统可用性:SRE口中的3个9,4个9...到底是个什么东西?

分享10套开源免费的高品质源码,免费源码下载平台

简单3D渲染器的制作
随机推荐
From 0 to 100: Notes on the Development of Enrollment Registration Mini Programs
Three, mysql storage engine - building database and table operation
论文解读(GSAT)《Interpretable and Generalizable Graph Learning via Stochastic Attention Mechanism》
How to better understand and do a good job?
excel edit a cell without double clicking
毕业作业
Deep Learning Fundamentals - Numpy-based Recurrent Neural Network (RNN) implementation and backpropagation training
Data Organization --- Chapter 5 Trees and Binary Trees --- The Concept of Binary Trees --- Application Questions
What can be done to make this SQL into a dangerous SQL?
IDEA入门看这一篇就够了
检查点是否在矩形内
深度学习基础-基于Numpy的循环神经网络(RNN)实现和反向传播训练
Chapter 19 Tips and Traps: Common Goofs for Novices
仿牛客网项目第三章:开发社区核心功能(详细步骤和思路)
SQL Server (design database--stored procedure--trigger)
基于JAX的激活函数、softmax函数和交叉熵函数
[C language advanced] file operation (2)
Always use "noopener" or "noreferrer" for links that open in a new tab
避免使用 <b>、<i>、<s> 和 <u> 标签
D - Linear Probing- 并查集