Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
with adl.open('folder123/azure.csv', blocksize=2**20) as x: for l in x: l = l.decode('utf-8') print(l)
此代码将以块大小从 ADLS 流式传输文件。是否可以使用 bz2 文件执行此操作,解压缩并逐行读取相同的块大小?