Testing Retry Behavior and DLQs in AWS Lambda

Описание к видео Testing Retry Behavior and DLQs in AWS Lambda

Dead-letter queues are useful for debugging your application or messaging system because they let you isolate problematic messages to determine why their processing doesn't succeed.

Prerequisite:
--------------------
AWS SQS | AWS Simple Queue Service | How SQS Works | AWS Tutorial
   • AWS SQS | AWS Simple Queue Service | ...  
AWS Lambda Destinations tutorial | Synchronous Vs Asynchronous Invocation
   • AWS Lambda Destinations tutorial |  S...  

Lambda Code:
-----------------------
import json
import time

def lambda_handler(event, context):
TODO implement
print(event)
time.sleep(3)
return {
'statusCode': 200,
'body': json.dumps('Hello from Lambda!')
}


Check this playlist for more AWS Projects or POC in Big Data domain:
   • Demystifying Data Engineering with Cl...  

Комментарии

Информация по комментариям в разработке