使用python notebook从Azure Blob读取数据到内存

问题描述 投票:-1回答:1

我有一个由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笔记本中的M1应用程序的Blob存储中读取文件。

问候,总结

python azure azure-devops azure-storage-blobs azure-machine-learning-studio
1个回答
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.

很可能,您的存储帐户名称或存储帐户密钥不正确。

如果您故意提供错误的组合,这也将是您得到的确切错误。

希望这可以帮助。

托比亚斯

© www.soinside.com 2019 - 2024. All rights reserved.