Tag

lambda

What is the benefit of using SQS as an intermediary between SNS and Lambda?

Blog By Aug 21, 2023 No Comments

Using an SQS queue as an intermediary between SNS and Lambda has several benefits: In summary, using an SQS queue between SNS and Lambda gives you more control over message batching, rate limiting, retries, scaling and ordering. The trade-off is some additional latency and complexity. But for most use cases, the benefits outweigh the downsides. Sources

What are the latency implications of using SQS in between?

Blog By Aug 21, 2023 No Comments

Using an SQS queue between SNS and Lambda introduces some latency compared to invoking Lambda directly from SNS. Here are the main factors that contribute to latency: In contrast, when Lambda is invoked directly from SNS, there is minimal latency since the message is passed to Lambda immediately after it is published to the SNS topic. So in summary, using…

How to Tackle CORS Errors in Your Lambda API: A Comprehensive Guide

How to, AWS By Jul 25, 2023 No Comments

Introduction Welcome to the comprehensive guide on how to fix CORS error in lambda API. As we delve deeper into the world of serverless computing, we will tackle CORS errors in Lambda API, equipping you with knowledge and practical techniques. By the end of this article, you will be able to identify and fix CORS errors in Lambda API like…

AWS CLI: Commands-

AWS By Jul 13, 2023 No Comments

AWS CLI: Commands for S3, EC2, Lambda, IAM, RDS, DynamoDB, SQS, SNS, CloudFormation, ECR, EKS, SSM, CloudWatch, Route 53, Kinesis The AWS Command Line Interface (CLI) is a unified tool that provides a consistent interface for interacting with all parts of AWS. AWS CLI supports multiple AWS services and the list is quite extensive. Below are examples of AWS CLI…

AWS – Difference between Containers (Kubernetes)  and Serverless (Lambda) 

Blog By Jun 26, 2022 No Comments

AWS – Difference between Containers (Kubernetes)  and Serverless (Lambda) Comparisons: Serverless vs Containers (Lambda vs Kubernetes). How to choose?  Serverless and containers have some high-level similarities. They eliminate complexity and make it easier to deploy and scale applications.  Serverless works well if you need to perform relatively simple processing of events without maintaining underlying infrastructure. Containers are the ideal choice…