We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When both Apache Spark and ClickHouse4j are on the classpath, the following issue occurs.
Apache Spark
ClickHouse4j
java.lang.NoSuchMethodError: 'void net.jpountz.lz4.LZ4BlockInputStream.<init>(java.io.InputStream, net.jpountz.lz4.LZ4FastDecompressor, java.util.zip.Checksum, boolean)' org.apache.spark.io.LZ4CompressionCodec.compressedInputStream(CompressionCodec.scala:153) org.apache.spark.sql.execution.SparkPlan.decodeUnsafeRows(SparkPlan.scala:367) org.apache.spark.sql.execution.SparkPlan.$anonfun$executeCollect$1(SparkPlan.scala:391)
<dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-sql_${scala.version}</artifactId> <version>${spark.version}</version> </dependency> <dependency> <groupId>cc.blynk.clickhouse</groupId> <artifactId>clickhouse4j</artifactId> </dependency>
The root cause of this are the re-packaged classes from net.jpountz.
net.jpountz
Could you please consider to either
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When both
Apache Spark
andClickHouse4j
are on the classpath, the following issue occurs.The root cause of this are the re-packaged classes from
net.jpountz
.Could you please consider to either
The text was updated successfully, but these errors were encountered: