In AWS re:Invent 2018, AWS have launched a great feature called Layers in the Lambda service. Layers let you deploy custom runtime along with additional code/package, which can be further used/imported in the lambda function. It let you keep the deployment package small. A layer can be used within multiple lambda function, hence you can […]
Home
AWS: Syntax Analysis with AWS Comprehend and Lambda
It’s been a while since, AWS have announced Syntax Analysis feature in the AWS Comprehend service. A quick intro on AWS Comprehend service from documentation “Amazon Comprehend uses natural language processing (NLP) to extract insights about the content of documents. Amazon Comprehend processes any text file in UTF-8 format. It develops insights by recognizing the […]
AWS: Reading File content from S3 on Lambda trigger
Hey readers! I’m going to show you that how to read file data from S3 on Lambda trigger. Before moving further, I assume that you have a basic intuition about Amazon Web Service and its services. We are going to see few AWS services here, which are IAM, S3 and Lambda. If you aware about […]
AWS Lambda Overview
A quick overview on understanding of AWS Lambda service. Here, I’ve gone through each of the feature in AWS Lambda console with short explanation.
How to test multiple flag at once in Python
How to sort dict by key or value in Python
Python Trick: How to merge dict in Python
How to avoid writing expensive code in Python with Memoization
Expensive Code: Ya, you read it right. In this article I’m going to brief on a way to speed up the Python programs and make expensive code cheaper with help of powerful caching technique called Memoization. Memoization is the effective technique that is used to speed up the computer programs. It memorize or cache the […]
AWS Lambda: Execute lambda asynchronously / parallel
AWS Lambda is a great micro-service to run code without managing servers with the scalable solution with few to thousands requests per second. Well, this great service comes with some limitations. One of the big limitation is the 5 Minutes execution time out window. Well, this limitation can be overcome by tweaks. Read more on […]
AWS Lambda: Going Beyond 5 Minutes Execution
AWS lambda is the great service to upload and run the code within the AWS infrastructure. I have been using Lambda since long. Let’s go through the quick overview on AWS Lambda. “AWS Lambda is a compute service that lets you run code without provisioning or managing servers. AWS Lambda executes your code only when […]