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
Describe the bug
Hi, i was following the Getting Started tutorial to learn to use kafka-connect-file-pulse v2.14.1 on my selfhosted kafka 3.9.0 cluster. I've check that Connect File Pulse plugin is correctly loaded. At Parsing a CSV file section, first i started a new connector instance with the following config:
Then when i checked the connector status, i got an error. The error appeared in kafka's log output too:
[2025-02-08 00:25:23,522] ERROR [connect-file-pulse-quickstart-csv|task-0] WorkerSourceTask{id=connect-file-pulse-quickstart-csv-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:234)
java.lang.IllegalAccessError: failed to access class org.apache.kafka.common.utils.SystemTime from class io.streamthoughts.kafka.connect.filepulse.source.FileObjectOffset (org.apache.kafka.common.utils.SystemTime is in unnamed module of loader 'app'; io.streamthoughts.kafka.connect.filepulse.source.FileObjectOffset is in unnamed module of loader org.apache.kafka.connect.runtime.isolation.PluginClassLoader @6156496)
at io.streamthoughts.kafka.connect.filepulse.source.FileObjectOffset.empty(FileObjectOffset.java:26)
at io.streamthoughts.kafka.connect.filepulse.source.FileObjectContext.<init>(FileObjectContext.java:37)
at io.streamthoughts.kafka.connect.filepulse.source.DefaultFileRecordsPollingConsumer.addAll(DefaultFileRecordsPollingConsumer.java:90)
at io.streamthoughts.kafka.connect.filepulse.source.FilePulseSourceTask.poll(FilePulseSourceTask.java:184)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.poll(AbstractWorkerSourceTask.java:466)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.execute(AbstractWorkerSourceTask.java:354)
at org.apache.kafka.connect.runtime.WorkerTask.doRun(WorkerTask.java:226)
at org.apache.kafka.connect.runtime.WorkerTask.run(WorkerTask.java:281)
at org.apache.kafka.connect.runtime.AbstractWorkerSourceTask.run(AbstractWorkerSourceTask.java:79)
at org.apache.kafka.connect.runtime.isolation.Plugins.lambda$withClassLoader$1(Plugins.java:238)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:829)
I cloned the repo, and changed org.apache.kafka.version in pom.xml to 3.9.0. Then i opened src/main/java/io/streamthoughts/kafka/connect/filepulse/source/FileObjectOffset.java, i saw the following error:
Maybe that's the cause of the problem? Is there anything I can do besides downgrading the version of kafka?
The text was updated successfully, but these errors were encountered:
Describe the bug
Hi, i was following the Getting Started tutorial to learn to use kafka-connect-file-pulse v2.14.1 on my selfhosted kafka 3.9.0 cluster. I've check that Connect File Pulse plugin is correctly loaded. At Parsing a CSV file section, first i started a new connector instance with the following config:
Then when i checked the connector status, i got an error. The error appeared in kafka's log output too:
Any help would be appreciated.
To Reproduce
Just start a new connector instance.
Expected behavior
The task runs successfully.
Additional context
Version: kafka-connect-file-pulse v2.14.1, kafka 3.9.0 with kraft (3 workers), ubuntu 24.04
I cloned the repo, and changed
org.apache.kafka.version
in pom.xml to3.9.0
. Then i openedsrc/main/java/io/streamthoughts/kafka/connect/filepulse/source/FileObjectOffset.java
, i saw the following error:Maybe that's the cause of the problem? Is there anything I can do besides downgrading the version of kafka?
The text was updated successfully, but these errors were encountered: