web-dev-qa-db-ja.com

Lambda関数エラー:EROFS:読み取り専用ファイルシステム、オープン './tmp/test.Zip'プロセスは要求を完了する前に終了しました

S3バケットからZipファイルをダウンロードしてからZipファイルを抽出し、最後にNode JSを使用して1つのファイルをLambda関数でs3バケットにアップロードします。

==>エラー:EROFS:読み取り専用ファイルシステム、 '。/ tmp/test.Zip'を開く

exports.handler = function (callback) {

downloadZipFile(params, downloadPath, function (err) {
    if (err) {
        callback(err);
    } else {
        processZipFile(downloadPath, function (err) {
            if (err) {
                callback(err);
            } else {
                callback(null);
            }
        });

      }
  });

};

function downloadZipFile(params, downloadPath, callback) {

const file = fs.createWriteStream(downloadPath);

s3.getObject(params)
    .on('httpData', function (chunk) {

        file.write(chunk);
    })
    .on('success', function () {

        callback(null);
    })
    .on('error', function (err) {

        callback(err);
    })
    .on('complete', function () {

        file.end();
    })
    .send();
}

function processZipFile(filePath) {

const stats = fs.statSync(filePath)
const fileSizeInBytes = stats.size

if (fileSizeInBytes > 0) {

    var srcPath = filePath;
    var destPath = "./tmp";
    targz.decompress({
        src: srcPath,
        dest: destPath

    }, function (err) {
        if (err) {
            console.log(err);
        } else {
            console.log("Done!");

            UploadFile();
        }

    });
  }
}

function UploadFile() {

var body = fs.createReadStream('./tmp/SampleFile.txt')

var srcfileKey = "SampleFile.txt";
// Upload the stream
var s3obj = new AWS.S3({ params: { Bucket: bucketName, Key: srcfileKey } });
s3obj.upload({ Body: body }, function (err, data) {
    if (err) {
        console.log("An error occurred", err);
    }

    console.log("Uploaded the file at", data.Location);
 })
}
15
Sharan

ファイルパスを/tmpではなく./tmpに変更する必要があります。 Lambdaは、/tmpディレクトリへの書き込みのみを許可します。

29
idbehold