0

我正在使用 Azure Databricks ( 6.5 Runtime ) 并尝试将其连接到 IDE。但是,为了在我们的集群中启用 AAD 凭证直通,我们需要将以下属性设置为 true

spark.databricks.passthrough.enabled true
spark.databricks.pyspark.enableProcessIsolation true

但这会导致 databricks-connect 测试失败并出现错误

Caused by: java.lang.IllegalArgumentException: requirement failed: Databricks Connect is not yet supported on the cluster with process isolation enabled

有什么解决方法吗?如果没有,那么是否有计划很快支持这个用例?

4

1 回答 1

2

确保以下配置设置为 true。

 spark.databricks.libraryIsolation.processIsolation.enabled = true
于 2020-10-16T06:46:52.847 回答