-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
Search before asking
- I searched in the issues and found nothing similar.
Flink version
1.13
Flink CDC version
2.3
Database and its version
oracle 19c
Minimal reproduce step
I used oracle cdc incrementally to consume oracle data, and after running it for a while, I found that the number of oracle connections was high
code:
OracleSource.Builder builder = com.ververica.cdc.connectors.oracle.OracleSource.<String>builder()
.database(source.getDatabase())
.schemaList(source.getSchemaList())
.tableList(source.getTable())
.username(source.getUsername())
.password(source.getPassword())
.startupOptions(StartupOptions.latest())
.deserializer(new JsonDebeziumDeserializationSchema())
.debeziumProperties(properties);
What did you expect to see?
The number of oracle connections held by the flink taskmanager is within a reasonable range
What did you see instead?
The DBA reported that too many connections were putting pressure on oracle
Anything else?
No response
Are you willing to submit a PR?
- I'm willing to submit a PR!
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working