python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Flink create table via table DSL
In order to create table, I use an SQL syntax like
val tableEnv = StreamTableEnvironment.create(env, settings)
tableEnv.executeSql(
"CREATE TABLE asset (smth STRING) " +
...
Sergey Postument
Votes: 0
Answers: 2
Flink capped MapState
Background
We want to keep in a Flink operator's state the last n unique id's.
When the n+1 unique id arrives, we want to keep it and drop the oldest unique id in the state. This is in order to avoid ...
Michael
Votes: 0
Answers: 3
Why is Redis source connector not available for Flink?
We are looking to use existing redis streams in our application and process messages using Apache Flick, but could not find Redis source connector ? Any reason why Redis source connector is not availa...
naresh b
Votes: 0
Answers: 2
How to delay event processing with Apache Flink
I have a requirement to delay processing of some of the events.
eg. I have three events (Consumer Kafka):
A (id: 1, retryAt: now)
B (id: 2, retryAt: 15 minutes later)
C (id: 3, retryAt: now)
I need t...
giosefer
Votes: 0
Answers: 2