S3 - What Exactly Is A Prefix? And what Ratelimits apply?

后端 未结 6 2079
[愿得一人]
[愿得一人] 2020-11-30 22:48

I was wondering if anyone knew what exactly an s3 prefix was and how it interacts with amazon\'s published s3 rate limits:

Amazon S3 automatically sca

6条回答
  •  天命终不由人
    2020-11-30 23:22

    The upvoted answer on this was a bit misleading for me. If these are the paths

    bucket/folder1/sub1/file
    bucket/folder1/sub2/file
    bucket/1/file
    bucket/2/file

    Your prefix for file would actually be
    folder1/sub1/
    folder1/sub2/
    1/file
    2/file

    https://docs.aws.amazon.com/AmazonS3/latest/dev/ListingKeysHierarchy.html Please se docs. I had issues with the leading '/' when trying to list keys with the airflow s3hook.

提交回复
热议问题