简体   繁体   English

s3数据从互联网传输的价格是否包括读取文件内容的价格

[英]does the pricing for s3 data transfer out of the internet includes for reading file contents

I have a web app with a download buttons to download objects from s3 buckets. 我有一个带有下载按钮的Web应用程序,用于从s3存储桶下载对象。 I also have plot buttons to read the contents of csv files in s3 bucket using pandas read_csv to read the columns and make visualizations. 我还具有绘图按钮,可使用pandas read_csv读取s3存储桶中csv文件的内容,以读取列并进行可视化处理。 I wanted to understand if the price for s3 data transfer out of the internet is only for actually download of files or it also includes just reading the contents too because the bytes are transferred over the internet in that case as well. 我想了解从互联网上传输s3数据的价格是否仅用于实际下载文件,还是也包括仅读取内容,因为在这种情况下字节也是通过互联网传输的。

S3 does not operate like a file system. S3的运行方式不像文件系统。 There is no notion of reading and writing portions of files as you would to a local or remote drive. 没有读取和写入文件的部分的概念,就像您要在本地或远程驱动器中那样。 To read a file you must always download the entire file and then read portions as needed. 要读取文件,您必须始终下载整个文件,然后根据需要读取部分内容。 That is why AWS only shows pricing for data transfer. 因此,AWS仅显示数据传输的价格。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM