AWS Lambda + S3: Moving/Renaming a folder in S3 using Lambda
I need to be able to move/rename a folder inside S3 using a lambda function written in python. I have seen that it is possible to copy and then delete a file using the boto3 library but I cannot find a method of renaming a folder.
aws lambda function timeout despite successful parquet file creation
I was working on an AWS Lambda function in Python that simply converts a JSON file to Parquet. I set a 5-minute timeout limit and invoked the function. Although the Parquet file was created successfully, the function still timed out. When I debugged it, everything seemed fine until the to_parquet line, where the program got stuck. It runs perfectly on my local environment. Does anyone have any suggestions on how to resolve this issue?
How can I get a file from my system with Lambda function to upload it to S3
I’m trying to get a file from my system and upload it to an S3 bucket with lambda functions. I want the lambda function to get the file each hour, and in the next hour get the next file generated (i generate 1 file/h)