Я запускаю следующий код для чтения потока kafka с помощью spark-3.2.2 и scala 2.12.0.
Ранее тот же код отлично работал с spark-2.2 и scala 2.11.8,
import spark.implicits._
val kafkaStream = spark
.readStream
.format("kafka")
.option("kafka.bootstrap.servers", settings.kafka.brokers)
.option("startingOffsets", "latest")
.option("failOnDataLoss", "false")
.option("subscribe", "serviceproblems")
.load()
val dataset = kafkaStream.select($"key", $"value").as[(String, String)]
val mapper = new ObjectMapper
mapper.registerModule(new ServiceProblemDeserializerModule())
Ошибка при построении кода, как показано ниже
could not find implicit value for evidence parameter of type org.apache.spark.sql.Encoder[(String, String)]
[ERROR] val dataset = kafkaStream.select($"key", $"value").as[(String, String)]
Есть и некоторые другие ошибки, причину которых я не могу понять, так как доступна ограниченная помощь.
[ERROR] missing or invalid dependency detected while loading class file 'SQLImplicits.class'.
Could not access type Encoder in package org.apache.spark.sql,
because it (or its dependencies) are missing. Check your build definition for
missing or conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
A full rebuild may help if 'SQLImplicits.class' was compiled against an incompatible version of org.apache.spark.sql.
[ERROR] missing or invalid dependency detected while loading class file 'LowPrioritySQLImplicits.class'.
Could not access type Encoder in package org.apache.spark.sql,
because it (or its dependencies) are missing. Check your build definition for
missing or conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
A full rebuild may help if 'LowPrioritySQLImplicits.class' was compiled against an incompatible version of org.apache.spark.sql.
[ERROR] missing or invalid dependency detected while loading class file 'package.class'.
Could not access type Row in package org.apache.spark.sql,
because it (or its dependencies) are missing. Check your build definition for
missing or conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
A full rebuild may help if 'package.class' was compiled against an incompatible version of org.apache.spark.sql.
[ERROR] missing or invalid dependency detected while loading class file 'Dataset.class'.
Could not access type Encoder in package org.apache.spark.sql,
because it (or its dependencies) are missing. Check your build definition for
missing or conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
A full rebuild may help if 'Dataset.class' was compiled against an incompatible version of org.apache.spark.sql.
Цените любую помощь. Заранее спасибо
@DmytroMitin Я мог бы это исправить, так как нашел конфликтующую библиотеку, как указано ниже в ответе.
После некоторой суеты и поддержки Mentor я смог отойти от этого, поскольку было обнаружено, что мы используем зависимость org.elasticsearch, и у нее также есть некоторая искровая библиотека, которая добавляла конфликты, добавляя исключение для повторяющейся зависимости.
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-spark-30_2.12</artifactId>
</depdendency>
Так
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-spark-30_${scala.binary.version}</artifactId>
<version>7.12.1</version>
<exclusions>
<exclusion>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.12</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_2.12</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_2.12</artifactId>
</exclusion>
<exclusion>
<groupId>org.scala.lang</groupId>
<artifactId>scala-library_2.12.0</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.spark</groupId>
<artifactId>spark-catalyst_2.12</artifactId>
</exclusion>
</exclusions>
</dependency>
Не могу воспроизвести. Код компилируется как в Spark 2.2.3 + Scala 2.11.8, так и в Spark 3.2.2 + Scala 2.12.1 4eed7223cc1a8790342eb92f19233442 В Scala 2.12.0 у меня были разные проблемы stackoverflow.com/questions/70931841 так что попробуйте использовать Scala 2.12.1+, последняя среди 2.12 2.12.17. Как вы строите свой проект? С сбт? Попробуйте
sbt clean compile
.