-
Feature Request
-
Resolution: Unresolved
-
Major
-
1.9.6.Final, 2.0.0.Beta2
-
None
-
False
-
None
-
False
When attempting to build a Quarkus application using native-mode that contains a reference to DebeziumEngine, the application compiles but fails to run when executed due to the following problems
- ServiceLoader pattern loads BuilderFactory, leading to a "No implementation of Debezim engine builder was found" during start-up.
Requires setting quarkus.native.auto-service-loader-registration=true in the application.properties file manually. - ClassNotFoundException thrown attempting to load org.apache.kafka.connect.json.JsonConverter
Explicitly specifying Thread.currentThread().getContextClassLoader() as the class loader during creation of engine does not satisfy the requirements.