Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Flink CountWindow

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to use Flink CountWindow". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn how to use Flink CountWindow.

Number of countWindow windows (sliding window [the difference between a sliding window and a scrolling window is that there is a possibility of data element overlap in a sliding window, while there is no element overlap in a rolling window])

Sample environment

Java.version: 1.8.xflink.version: 1.11.1

Building Development Environment and data of Flink system example

CountWindow.java

Import com.flink.examples.DataSource;import org.apache.flink.api.common.functions.MapFunction;import org.apache.flink.api.common.typeinfo.Types;import org.apache.flink.api.java.functions.KeySelector;import org.apache.flink.api.java.tuple.Tuple2;import org.apache.flink.api.java.tuple.Tuple3;import org.apache.flink.streaming.api.datastream.DataStream;import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;import java.util.List / * * @ Description countWindow number window (sliding window [the difference between sliding window and scrolling window is that there is a possibility of data element overlap in sliding window, but there is no element overlap in rolling window]) * / public class CountWindow {/ * window usually partitions the stream when processing stream data The data flow is divided into: keyed (dividing different data flow regions according to key) non-keyed (data flow regions not divided by key, referring to all original data streams) * / / * traversal collection, sliding by quantity window Return to the maximum age under each gender division in the window * @ param args * @ throws Exception * / public static void main (String [] args) throws Exception {final StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment () List tuple3List = DataSource.getTuple3ToList (); DataStream dataStream = env.fromCollection (tuple3List) .map (new MapFunction () {@ Override public Tuple2 map (Tuple3 tuple3) throws Exception {return new Tuple2 (tuple3.f1,tuple3.f2)) }}) .returns (Types.TUPLE (Types.INT,Types.INT)) .keyby ((KeySelector) k-> k.f0) / / Slide by quantity window, input data stream to the first three partitions every two pairs Calculate once. CountWindow (3,2) / / Note: the calculation variable is F1 .maxBy (1) DataStream.print (); env.execute ("flink CountWindow job");}}

Print the result

4 > (2J32) 3 > (1J30) Thank you for your reading. The above is the content of "how to use Flink CountWindow". After the study of this article, I believe you have a deeper understanding of how to use Flink CountWindow, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report