; user@flink.apache.org
Subject: Re: Stream processing into single sink to multiple DB Schemas
EXTERNAL EMAIL
Hey,
We had similar problem, but with 1000s of tables. I've created issue [1] and PR
with internally used solution [2], but unfortunately, there seems to be no
interest in upstr
Hey,
We had similar problem, but with 1000s of tables. I've created issue [1]
and PR with internally used solution [2], but unfortunately, there seems to
be no interest in upstreaming this feature.
Thanks,
Maciej
[1] https://issues.apache.org/jira/browse/FLINK-21643
[2] https://github.com/apache/
Hi Tamir,
I assume you want to use the Jdbc connector?
You can use three filters on your input stream to separate it into three
separate streams, then add a sink to each of those (see e.g. [1]). Then you
can have a different SQL statement for each of the three sinks. If you
specify the driver name
Hey Community
Assuming there are 3 groups,
A, B, C
Each group represents a set of data about employees and salaries.
Group A ( 0-20K $)
Group B (20K$ - 50K$)
Group C ( > 50K$)
Is it possible to process stream data from single source containing information
about employees and salaries and split