AWS S3 无服务器图像大小调整的奇怪行为

Strange behavior with AWS S3 serverless image resizing

我关注了这个博客 https://aws.amazon.com/blogs/compute/resize-images-on-the-fly-with-amazon-s3-aws-lambda-and-amazon-api-gateway/

和这个回购协议 https://github.com/awslabs/serverless-image-resizing

能够在 AWS S3 上即时调整图像大小。桶创建成功。每当我将图像上传到存储桶时,我都可以按照博客中的指示从 url 调整它的大小,一切正常。

问题是当从代码上传图像时(Ruby 在 Rails 使用回形针),然后可以正常访问图像,但是当尝试调整大小时 url (例如 /100x200/photo.png)我在浏览器中收到此作为 json 响应

{
"message": "Internal server error"
}

The response headers are: 

Request URL:<url>
Request Method:GET
Status Code:502 
Remote Address:<IP>
Referrer Policy:no-referrer-when-downgrade
Response Headers
content-length:36
content-type:application/json
date:Thu, 23 Nov 2017 09:59:24 GMT
status:502
via:1.1 <hash>.cloudfront.net (CloudFront)
x-amz-cf-id:<id>
x-amzn-requestid:<id>
x-cache:Error from cloudfront
Request Headers
:authority:<url>
:method:GET
:path:/prod?key=<path/to/photo>
:scheme:https
accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
accept-encoding:gzip, deflate, br
accept-language:en-US,en;q=0.9,de;q=0.8,ar;q=0.7
cache-control:max-age=0
upgrade-insecure-requests:1
user-agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.62 Safari/537.36
Query String Parameters
view source
view URL encoded
key:<path/to/photo>

非常奇怪的是,在错误发生后,当我再次手动上传相同的图像时在桶中的任何地方然后我再次尝试使用原始调整大小url不是新上传的图片url导致了问题,它工作正常,我可以调整到任何大小!

所以手动上传似乎触发了与这个图像数据相关的东西?我不知道!

这里的错误是你直接把需要的大小放在文件名之前,你应该把它放在整个文件路径之前。

确保您遵循以下模式:

http://$BucketWebsiteHost/$size/$imagePath

示例:

http://mybucketname.s3-website.mybucketregion.amazonaws.com/60x50/photos/attachments/000/002/002/original/image.jpg