您好,登錄后才能下訂單哦!
這篇文章主要講解了“Flink定時器怎么實現”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Flink定時器怎么實現”吧!
在電商領域會有這么一個場景,如果用戶買了商品,在訂單完成之后,24小時之內沒有做出評價,系統自動給與五星好評,我們今天主要使用flink的定時器來簡單實現這一功能。
首先我們還是通過自定義source來模擬生成一些訂單數據.
在這里,我們生了一個最簡單的二元組Tuple2,包含訂單id和訂單完成時間兩個字段.
public static class MySource implements SourceFunction<Tuple2<String,Long>>{
private volatile boolean isRunning = true;
@Override
public void run(SourceContext<Tuple2<String,Long>> ctx) throws Exception{
while (isRunning){
Thread.sleep(1000);
//訂單id
String orderid = UUID.randomUUID().toString();
//訂單完成時間
long orderFinishTime = System.currentTimeMillis();
ctx.collect(Tuple2.of(orderid, orderFinishTime));
}
}
@Override
public void cancel(){
isRunning = false;
}
}
先上代碼, 我們再來依次解釋代碼
public static class TimerProcessFuntion
extends KeyedProcessFunction<Tuple,Tuple2<String,Long>,Object>{
private MapState<String,Long> mapState;
//超過多長時間(interval,單位:毫秒) 沒有評價,則自動五星好評
private long interval = 0l;
public TimerProcessFuntion(long interval){
this.interval = interval;
}
@Override
public void open(Configuration parameters){
MapStateDescriptor<String,Long> mapStateDesc = new MapStateDescriptor<>(
"mapStateDesc",
String.class, Long.class);
mapState = getRuntimeContext().getMapState(mapStateDesc);
}
@Override
public void onTimer(
long timestamp, OnTimerContext ctx, Collector<Object> out) throws Exception{
Iterator iterator = mapState.iterator();
while (iterator.hasNext()){
Map.Entry<String,Long> entry = (Map.Entry<String,Long>) iterator.next();
String orderid = entry.getKey();
boolean f = isEvaluation(entry.getKey());
mapState.remove(orderid);
if (f){
LOG.info("訂單(orderid: {}) 在 {} 毫秒時間內已經評價,不做處理", orderid, interval);
}
if (f){
//如果用戶沒有做評價,在調用相關的接口給與默認的五星評價
LOG.info("訂單(orderid: {}) 超過 {} 毫秒未評價,調用接口給與五星自動好評", orderid, interval);
}
}
}
/**
* 用戶是否對該訂單進行了評價,在生產環境下,可以去查詢相關的訂單系統.
* 我們這里只是隨便做了一個判斷
*
* @param key
* @return
*/
private boolean isEvaluation(String key){
return key.hashCode() % 2 == 0;
}
@Override
public void processElement(
Tuple2<String,Long> value, Context ctx, Collector<Object> out) throws Exception{
mapState.put(value.f0, value.f1);
ctx.timerService().registerProcessingTimeTimer(value.f1 + interval);
}
}
感謝各位的閱讀,以上就是“Flink定時器怎么實現”的內容了,經過本文的學習后,相信大家對Flink定時器怎么實現這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。