Flink窗口起始时间计算

Flink中窗口的时间不是根据进入窗口的第一个元素计为窗口的开始时间和加Size计窗口结束时间,而是根据Flink内置计算公式timestamp - (timestamp - offset + windowSize) % windowSize计算。

/**
  * Method to get the window start for a timestamp.
  *
  * @param timestamp epoch millisecond to get the window start. (记录时间戳)
  * @param offset The offset which window start would be shifted by. (偏移时间,默认为0)
  * @param windowSize The size of the generated windows. windowSize. (为窗口大小)
  * @return window start
*/
public static long getWindowStartWithOffset(long timestamp, long offset, long windowSize) {
	return timestamp - (timestamp - offset + windowSize) % windowSize;
}

timestamp - (timestamp - offset + windowSize) % windowSize:其中括号内的windowSize用于防止相减后结果负数,offset默认为0。整个公式可以演变为timestamp - (timestamp) % windowSize,当前时间戳timestamp减去余数,剩下的恰好是窗口的整数倍。

关注公众号 数据工匠记 ,专注于大数据领域离线、实时技术干货定期分享!个人网站 www.lllpan.top
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值