1

每次我尝试在 Databricks 社区版上执行任何 Scala 代码时,都会收到以下错误消息:

java.lang.Exception: An error occurred while initializing the REPL. Please check whether there are conflicting Scala libraries or JARs attached to the cluster, such as Scala 2.11 libraries attached to Scala 2.10 cluster (or vice-versa).

有人可以让我知道如何解决这个问题吗?

4

1 回答 1

0

您需要正确添加库,例如通过 Maven 坐标(这可能更可取,因为它也会拉取所有依赖项),或者从 DBFS 或 S3,以便运行时可以将此库分发到集群中的所有节点。例如,我添加MSAL而不是 ADAL:

添加 MSAL 库

安装后,我可以毫无问题地访问它(我使用的是 Runtime 6.5):

使用 MSAL 库

于 2020-07-02T07:19:52.960 回答