如何在窗口和接收器操作符之间注入延迟?

发布于 2025-01-12 04:43:41 字数 2584 浏览 0 评论 0原文

上下文 - 应用程序

我们有一个处理事件的 Apache Flink 应用程序

  • 应用程序使用事件时间特征
  • 应用程序分片 (keyBy) 事件基于 sessionId 字段
  • 应用程序的窗口化为 1分钟翻滚窗口
    • 窗口由 reduceprocess 函数指定
    • 因此,对于每个会话,我们将有 1 条计算记录
  • 应用程序将数据发送到 Postgres 接收器

上下文 - 基础设施

应用程序中:

  • 它通过 Kinesis Data Analytics (KDA) 在 AWS 中托管
  • 它在 5 个不同的区域中运行
  • 每个区域中运行完全相同的代码

数据库:

  • 它通过 RDS 在 AWS 中托管(目前它是 PostgreSQL)
  • 它位于一个区域(带有只读副本在不同的区域)

问题

因为我们使用具有 1 分钟滚动窗口的事件时间特征,所以所有区域的接收器几乎同时发出其记录。

当前状态

我们想要实现的是在窗口和接收器操作符之间添加人为延迟以推迟接收器发射。

所需状态

Flink 应用程序偏移窗口 1接收器第一次运行窗口 2接收器第二次运行
#106060120120
#2126072120132
#3246084120144
#4366096120156
#54860108120168

不起作用的解决方法

我们认为可以为 驱逐者的 evictBefore 像这样

...
.keyBy(event -> event.getSessionId())
.window(getWindowAssigner(config))
.allowedLateness(Time.seconds(config.getWindowLatenessInSec()))
.evictor(new Evictor<>() {
    private static final long serialVersionUID = 5373966807521260856L;

    public void evictBefore(Iterable<TimestampedValue<Event>> iterable, int i, TimeWindow timeWindow, EvictorContext evictorContext) {
        try {
            Thread.sleep(config.getWindowingDelayInMilliSec());
        } catch (InterruptedException ignore) {
        }
    }

    @Override
    public void evictAfter(Iterable<TimestampedValue<Event>> iterable, int i, TimeWindow timeWindow, EvictorContext evictorContext) {

    }
})
...

,但它不能可靠地工作。

Context - Application

We have an Apache Flink application which processes events

  • The application uses event time characteristics
  • The application shards (keyBy) events based on the sessionId field
  • The application has windowing with 1 minute tumbling window
    • The windowing is specified by a reduce and a process functions
    • So, for each session we will have 1 computed record
  • The application emits the data into a Postgres sink

Context - Infrastructure

Application:

  • It is hosted in AWS via Kinesis Data Analytics (KDA)
  • It is running in 5 different regions
  • The exact same code is running in each region

Database:

  • It is hosted in AWS via RDS (currently it is a PostgreSQL)
  • It is located in one region (with a read replica in a different region)

Problem

Because we are using event time characteristics with 1 minute tumbling window all regions' sink emit their records nearly at the same time.

Current State

What we want to achieve is to add artificial delay between window and sink operators to postpone sink emition.

Desired State

Flink AppOffsetWindow 1Sink 1st runWindow 2Sink 2nd run
#106060120120
#2126072120132
#3246084120144
#4366096120156
#54860108120168

Not working work-around

We have thought that we can add some sleep to evictor's evictBefore like this

...
.keyBy(event -> event.getSessionId())
.window(getWindowAssigner(config))
.allowedLateness(Time.seconds(config.getWindowLatenessInSec()))
.evictor(new Evictor<>() {
    private static final long serialVersionUID = 5373966807521260856L;

    public void evictBefore(Iterable<TimestampedValue<Event>> iterable, int i, TimeWindow timeWindow, EvictorContext evictorContext) {
        try {
            Thread.sleep(config.getWindowingDelayInMilliSec());
        } catch (InterruptedException ignore) {
        }
    }

    @Override
    public void evictAfter(Iterable<TimestampedValue<Event>> iterable, int i, TimeWindow timeWindow, EvictorContext evictorContext) {

    }
})
...

but it does not work reliably.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间不值得 2025-01-19 04:43:41

您可以将 TumblingEventTimeWindows of(Time size, Time offset, WindowStagger windowStagger)WindowStagger.RANDOM 结合使用。

请参阅 https://nightlies.apache.org/flink/flink-docs-stable/api/java/org/apache/flink/streaming/api/windowing/assigners/WindowStagger.html用于文档。

You could use TumblingEventTimeWindows of(Time size, Time offset, WindowStagger windowStagger) with WindowStagger.RANDOM.

See https://nightlies.apache.org/flink/flink-docs-stable/api/java/org/apache/flink/streaming/api/windowing/assigners/WindowStagger.html for documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文