Amazon CloudFront Latency

后端 未结 3 1953
栀梦
栀梦 2020-11-22 15:52

I am experimenting with AWS S3 and CloudFront for a web application that I am developing.

In the app I\'m letting users upload files to the S3 bucket (using the AWS

3条回答
  •  再見小時候
    2020-11-22 16:14

    Are these new files being written to S3 for the first time, or are they updates to existing files? S3 provides read-after-write consistency for new objects, and given CloudFront's pull model you should not be having this issue with new files written to S3. If you are, then I would open a ticket with AWS.

    If these are updates to existing files, then you have both S3 eventual consistency and CloudFront cache expiration to deal with. Both of which could cause this sort of behavior.

提交回复
热议问题