我有一个包含Blob的容器,该容器包含我的数据(csv文件)。我需要将此数据读取到我用于Azure ML的python笔记本中。
我尝试了链接How best to convert from azure blob csv format to pandas dataframe while running notebook in azure ml,但遇到以下问题。
问题: AzureSigningError:错误的填充
但是我的用户名和密码是正确的。
请求您的帮助。 还有其他方法可以从Azure笔记本中的Ml应用程序的Blob存储中读取文件。
关于,
答案 0 :(得分:0)
这是AzureSigningError类随附的文档,该类是Python Azure Storage SDK的一部分。
Represents a fatal error when attempting to sign a request.
In general, the cause of this exception is user error. For example, the given account key is not valid.
Please visit https://docs.microsoft.com/en-us/azure/storage/common/storage-create-storage-account for more info.
您的存储帐户名称或存储帐户密钥很可能不正确。
如果您故意提供错误的组合,这也将是您得到的确切错误。
希望这会有所帮助。
Tobias W。