Gil Kirkpatrick
03/30/2023, 9:29 PMCREATE TABLE FOO (id STRING, name STRING)
WITH (
'connector'='kafka',
'topic'='foo',
'format'='json',
'properties.bootstrap.servers'='flinktests-kafka-1:29091',
'properties.group.id'='flink',
'scan.startup.mode'='earliest-offset'
);
I get the following error from the SQL Client
[ERROR] Could not execute SQL statement. Reason:
2023-03-30 15:23:43 java.lang.ClassCastException: class org.codehaus.janino.CompilerFactory cannot be cast to class org.codehaus.commons.compiler.ICompilerFactory (org.codehaus.janino.CompilerFactory is in unnamed module of loader org.apache.flink.util.ChildFirstClassLoader @4c013fb6; org.codehaus.commons.compiler.ICompilerFactory is in unnamed module of loader 'app')
Any ideas where I should look?Hygor Knust
05/13/2023, 9:03 PM