1
推拉窗我用這個代碼來執行我的測試(Flink Quick Start):壞逆足與弗林克
val text = env.socketTextStream("localhost", port, '\n')
// parse the data, group it, window it, and aggregate the counts
val windowCounts = text
.flatMap { w => w.split("\\s") }
.map { w => WordWithCount(w, 1) }
.keyBy("word")
.timeWindow(Time.minute(15))
.sum("count")
與此代碼我有超過65 000輸入/ Seconde系列
如果我改變
timeWindow(Time.minute(15))
通過
timeWindow(Time.minutes(15), Time.seconds(1))
我有少於2 500輸入/ seconde
有什麼辦法可以有更好的性能與滑動Windows?