Relative Content

Tag Archive for pythonamazon-s3aws-lambda

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?