https://github.com/zq2599/blog_demosjava
內容:全部原創文章分類彙總及配套源碼,涉及Java、Docker、Kubernetes、DevOPS等;git
理解狀態:《深刻了解ProcessFunction的狀態操做(Flink-1.10)》程序員
若是您不想寫代碼,整個系列的源碼可在GitHub下載到,地址和連接信息以下表所示(https://github.com/zq2599/blog_demos):github
名稱 | 連接 | 備註 |
---|---|---|
項目主頁 | https://github.com/zq2599/blog_demos | 該項目在GitHub上的主頁 |
git倉庫地址(https) | https://github.com/zq2599/blog_demos.git | 該項目源碼的倉庫地址,https協議 |
git倉庫地址(ssh) | git@github.com:zq2599/blog_demos.git | 該項目源碼的倉庫地址,ssh協議 |
這個git項目中有多個文件夾,本章的應用在flinkstudy文件夾下,以下圖紅框所示:
shell
package com.bolingcavalry.coprocessfunction; import org.apache.flink.api.common.state.ValueState; import org.apache.flink.api.common.state.ValueStateDescriptor; import org.apache.flink.api.java.tuple.Tuple2; import org.apache.flink.configuration.Configuration; import org.apache.flink.streaming.api.functions.co.CoProcessFunction; import org.apache.flink.util.Collector; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author will * @email zq2599@gmail.com * @date 2020-11-11 09:48 * @description 功能介紹 */ public class AddTwoSourceValue extends AbstractCoProcessFunctionExecutor { private static final Logger logger = LoggerFactory.getLogger(AddTwoSourceValue.class); @Override protected CoProcessFunction<Tuple2<String, Integer>, Tuple2<String, Integer>, Tuple2<String, Integer>> getCoProcessFunctionInstance() { return new CoProcessFunction<Tuple2<String, Integer>, Tuple2<String, Integer>, Tuple2<String, Integer>>() { // 某個key在processElement1中存入的狀態 private ValueState<Integer> state1; // 某個key在processElement2中存入的狀態 private ValueState<Integer> state2; @Override public void open(Configuration parameters) throws Exception { // 初始化狀態 state1 = getRuntimeContext().getState(new ValueStateDescriptor<>("myState1", Integer.class)); state2 = getRuntimeContext().getState(new ValueStateDescriptor<>("myState2", Integer.class)); } @Override public void processElement1(Tuple2<String, Integer> value, Context ctx, Collector<Tuple2<String, Integer>> out) throws Exception { logger.info("處理元素1:{}", value); String key = value.f0; Integer value2 = state2.value(); // value2爲空,就表示processElement2尚未處理或這個key, // 這時候就把value1保存起來 if(null==value2) { logger.info("2號流還未收到過[{}],把1號流收到的值[{}]保存起來", key, value.f1); state1.update(value.f1); } else { logger.info("2號流收到過[{}],值是[{}],如今把兩個值相加後輸出", key, value2); // 輸出一個新的元素到下游節點 out.collect(new Tuple2<>(key, value.f1 + value2)); // 把2號流的狀態清理掉 state2.clear(); } } @Override public void processElement2(Tuple2<String, Integer> value, Context ctx, Collector<Tuple2<String, Integer>> out) throws Exception { logger.info("處理元素2:{}", value); String key = value.f0; Integer value1 = state1.value(); // value1爲空,就表示processElement1尚未處理或這個key, // 這時候就把value2保存起來 if(null==value1) { logger.info("1號流還未收到過[{}],把2號流收到的值[{}]保存起來", key, value.f1); state2.update(value.f1); } else { logger.info("1號流收到過[{}],值是[{}],如今把兩個值相加後輸出", key, value1); // 輸出一個新的元素到下游節點 out.collect(new Tuple2<>(key, value.f1 + value1)); // 把1號流的狀態清理掉 state1.clear(); } } }; } public static void main(String[] args) throws Exception { new AddTwoSourceValue().execute(); } }
22:35:12,135 INFO AddTwoSourceValue - 處理元素1:(aaa,111) 22:35:12,136 INFO AddTwoSourceValue - 2號流還未收到過[aaa],把1號流收到的值[111]保存起來
22:35:34,473 INFO AddTwoSourceValue - 處理元素2:(bbb,123) 22:35:34,473 INFO AddTwoSourceValue - 1號流還未收到過[bbb],把2號流收到的值[123]保存起來
22:35:38,072 INFO AddTwoSourceValue - 處理元素2:(aaa,222) 22:35:38,072 INFO AddTwoSourceValue - 1號流收到過[aaa],值是[111],如今把兩個值相加後輸出 (aaa,333)
微信搜索「程序員欣宸」,我是欣宸,期待與您一同暢遊Java世界...
https://github.com/zq2599/blog_demos數據庫