【发布时间】:2019-03-13 03:43:06
【问题描述】:
我尝试将 pyspark 中的机器学习模型保存到 azure blob。但这会出错。
lr.save('wasbs:///user/remoteuser/models/')
Illegal Argument Exception: Cannot initialize WASB file system, URI authority not recognized.'
也试过了,
m = lr.save('wasbs://'+container_name+'@'+storage_account_name+'.blob.core.windows.net/models/')
但无法在堆栈跟踪中识别用户身份。 附言: 我没有使用 Azure HDInsight。我只是在使用 Databricks 和 Azure blob 存储
【问题讨论】:
标签: azure pyspark azure-blob-storage databricks