how to send data from s3 to RDS MySQL using lambda function

0

i have zip files which contains excel sheets of data whenever new zip file uploads to s3 it has to unzip and store all excel sheets data as MySQL tables how to achive this using lambda function

1 回答
0
已接受的回答

Hi,

Not sure if you expecting the complete solution here, hope you are not :) Let me add some more details to your workflow:

  1. You can trigger Lambda when a new file is uploaded to the S3. Some examples you can find here: https://docs.aws.amazon.com/lambda/latest/dg/with-s3-example.html
  2. You need to write your custom Lambda function, which will unarchive, validate and parse Excel file and insert data to your RDS MySQL database. There are plenty of libraries available for any programming language you prefer.

Hope it helps.

profile picture
专家
已回答 8 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则