运行 Scala 代码时出错 - Databricks 7.3LTS 及更高版本
我正在运行 databricks 7.3LTS,并在尝试使用 scala 批量复制时遇到错误。 错误是: 对象 sqldb 不是 com.microsoft 包的成员。 我已经安装了正确的 sqlconnector 驱动程序,但不确定如何修复此错误。 安装的驱动程序是:
com.microsoft.azure:spark-mssql-connector_2.12:1.1.0.
我还安装了 JAR 依赖项,如下所示:
spark_mssql_connector_2_12_1_1_0.jar
我在互联网上找不到上述配置的任何 scala 代码示例。 我的 scala 代码示例如下:
%scala
import com.microsoft.azure.sqldb.spark.config.Config
一旦我运行此命令,我就会收到错误,
Object sqldb is not a member of package com.microsoft.azure
请提供帮助
I am running databricks 7.3LTS and having errors while trying to use scala bulk copy.
The error is:
object sqldb is not a member of package com.microsoft.
I have installed correct sqlconnector drivers but not sure how to fix this error.
The installed drivers are:
com.microsoft.azure:spark-mssql-connector_2.12:1.1.0.
also i have installed the JAR dependencies as below:
spark_mssql_connector_2_12_1_1_0.jar
i couldnt find any scala code example for the above configurations on the internet.
my scala code sample is as below:
%scala
import com.microsoft.azure.sqldb.spark.config.Config
as soon as i run this command i get the error
Object sqldb is not a member of package com.microsoft.azure
any help please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
In the new connector you need to use
In the new connector you need to use com.microsoft.sqlserver.jdbc.spark.SQLServerBulkJdbcOptions class to specify bulk copy options.