You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However since update to 10.8.0 we are getting the following error and had to rollback to 10.7.4.
[<SNIP>|task-0] WorkerSourceTask{id=<SNIP>} Task threw an uncaught and unrecoverable exception. Task is being killed and will not recover until manually restarted (org.apache.kafka.connect.runtime.WorkerTask) [task-thread-<SNIP>-0]
org.apache.kafka.common.config.ConfigException: Incrementing column: ID does not exist.
at io.confluent.connect.jdbc.source.JdbcSourceTask.validateColumnsExist(JdbcSourceTask.java:333)
at io.confluent.connect.jdbc.source.JdbcSourceTask.start(JdbcSourceTask.java:201)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.initializeAndStart(AbstractWorkerSourceTask.java:280)
at org.apache.kafka.connect.runtime.WorkerTask.doRun(WorkerTask.java:202)
at org.apache.kafka.connect.runtime.WorkerTask.run(WorkerTask.java:259)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.run(AbstractWorkerSourceTask.java:77)
at org.apache.kafka.connect.runtime.isolation.Plugins.lambda$withClassLoader$1(Plugins.java:237)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:840)
Not sure why the check fails, the code looks good at first sight. Any ideas?
The text was updated successfully, but these errors were encountered:
[2024-11-22 10:37:32,586] ERROR [oracle-source|task-0] WorkerSourceTask{id=oracle-source-0} Task threw an uncaught and unrecoverable exception. Task is being killed and will not recover until manually restarted (org.apache.kafka.connect.runtime.WorkerTask:237)
org.apache.kafka.common.config.ConfigException: Incrementing column: ID does not exist.
at io.confluent.connect.jdbc.source.JdbcSourceTask.validateColumnsExist(JdbcSourceTask.java:333)
at io.confluent.connect.jdbc.source.JdbcSourceTask.start(JdbcSourceTask.java:201)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.initializeAndStart(AbstractWorkerSourceTask.java:283)
at org.apache.kafka.connect.runtime.WorkerTask.doRun(WorkerTask.java:227)
at org.apache.kafka.connect.runtime.WorkerTask.run(WorkerTask.java:284)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.run(AbstractWorkerSourceTask.java:80)
at org.apache.kafka.connect.runtime.isolation.Plugins.lambda$withClassLoader$7(Plugins.java:339)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:840)
I can confirm this is not happening when TABLE is used
This introduced check seems to work incorrectly. We have the following JDBC connector configuration.
Please note that the following properties are set.
The columns exist inside the DB.
However since update to 10.8.0 we are getting the following error and had to rollback to 10.7.4.
Not sure why the check fails, the code looks good at first sight. Any ideas?
The text was updated successfully, but these errors were encountered: