.NET core/Python Read first X lines from Azure Storage Blob(.NET core/Python 从 Azure Storage Blob 读取前 X 行)
问题描述
我有一个大的 blob,我需要从中提取前几行.我可以在不打开整个文件的情况下执行此操作吗?
I have a large blob which I need to extract the first few rows from. Can I do this without opening the entire file?
文件采用已知格式(通常为 Excel,有时为 .csv 或 .tsv).
The file is in a known format (typically Excel, sometimes .csv or .tsv).
仅仅知道它是否可能会非常有帮助.在搜索 MS 和其他论坛时,我根据日期获得了不同的答案.谢谢!
Just knowing if it is possible would be extremely helpful. I've obtained mixed answers, based on date, while searching MS and other forums. Thank you!
推荐答案
我有一个大的 blob,我需要从中提取前几行.我可以在不打开整个文件的情况下执行此操作吗?
I have a large blob which I need to extract the first few rows from. Can I do this without opening the entire file?
答案是肯定的和否定的.是的,你可以阅读部分内容,但是你不能阅读前几行.
The answer is both yes and no. Yes, you can read partial contents however you can't read the first few lines.
本质上,Blob 存储服务允许您执行范围读取,您可以在其中指定要读取的数据范围(起始字节和要读取的字节数).在请求中指定范围后,Azure 存储将仅返回这些字节.
Essentially Blob Storage Service allows you to perform a range read where you can specify the range of data (starting bytes and number of bytes to read) that you want to read. Once the range is specified in the request, Azure Storage will only return those bytes.
如果您使用的是 .Net SDK,请查看 DownloadStreaming
方法.
If you're using .Net SDK, please look at DownloadStreaming
method.
这篇关于.NET core/Python 从 Azure Storage Blob 读取前 X 行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.NET core/Python 从 Azure Storage Blob 读取前 X 行
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01