画像が s3 バケットに配置されるときに、 AWS Lambdaを使用して、ノード js を使用してs3 バケット内の画像のサイズをさまざまなサイズのバリアントに変更しています。
昨日まで稼働していました。今日、同じラムダ関数を使用すると、次のエラーが発生します。
{
"errorMessage": "Command failed: identify: not authorized `//bucketname.s3.amazonaws.com/imagename.jpg' @ error/constitute.c/ReadImage/454.\n",
"errorType": "Error",
"stackTrace": [
"",
"ChildProcess.proc.on.onExit (/var/task/node_modules/gm/lib/command.js:297:17)",
"emitTwo (events.js:87:13)",
"ChildProcess.emit (events.js:172:7)",
"maybeClose (internal/child_process.js:821:16)",
"Socket.<anonymous> (internal/child_process.js:319:11)",
"emitOne (events.js:77:13)",
"Socket.emit (events.js:169:7)",
"Pipe._onclose (net.js:469:12)"
]
}
なぜこの現象が発生したのか理解できません。以下のラムダ関数の指定されたすべての関数は、非同期のウォーターフォールにあり、最初にアスペクト比を計算してから、画像をさまざまなサイズのバリアントに変換します。
var request=require("request");
function getTheAspectRatio(callback) {
gm(s3Url) // I am constructing the image url in the AWS Lambda Function.
.size(function(err, size) {
if (!err) {
//Calculate the Aspect ratio
} else if (err) {
//Give Back the Error
}
});
}
function getTheImageBuffer(callback) {
request(imageUrl, function(err, res, res1) {
if (err) {
callback(err);
} else {
buffer = res1;
console.log("got the BUffer");
callback(null);
}
});
}
function convertToThumbNail(callback) {
//Convert to Thumbnail Image
}
function convertToFull(callback) {
//Convert to Full Image
}
function convertToBadge(callback) {
//Convert to Badge image
}
誰かが問題のデバッグを手伝ってくれますか? 私は過去 3 時間、これに行き詰まっています。私の AWS Lambda は東京リージョンにあります。