ETL – Complete guide to migrate AWS DynamoDB to AWS Elasticsearch

If you are someone using AWS DynamoDB for your application and looking for ways to speed the query drastically then you could possibly arrive at AWS Elasticsearch. So you will have to migrate your existing DynamoDB data to Elasticsearch as well as keep both the databases in sync. That is exactly what I am going … Read more

Split a list into multiple lists and save as file using python

Recently, in one of my projects I have had this small task where I need to split a list into multiple lists and save it as a file in Amazon S3. In this article, I will share the solution along with the code. So, the straight solution is the following piece of code. Let us … Read more

Add layers, troubleshoot and common mistakes in AWS lambda

AWS Lambda provides an amazing feature called the layer which allows you to add your custom library. It allows you to stop code repetition. In this article, we are going to see how to achieve this. In case you are someone new to AWS then take a look at this article to know what AWS … Read more

What is Amazon DynamoDB? How to get started?

Amazon DynamoDB is a NoSQL database that is fast and flexible for any scale. I have personally been using it for more than 2 years and in this article, I am going to share with you my experience with it. In case you are someone new to AWS then take a look at this article … Read more

What is Amazon S3 and how to get started?

Amazon S3 is the storage service provided by Amazon. It is one of the services from AWS which is widely used with minimum cost. In this article, let us understand S3 and how I used S3 in my project along with a simple demo. In case you are someone new to AWS then take a … Read more

How to add Discovery results to Amazon S3 for sensitive data discovery results in Amazon Macie

When you create a job on Amazon Macie you will be prompted that you do not have an s3 bucket configured for sensitive data discovery results. If you did not configure it, then our results will be deleted within 90 days. In this article, let’s see how to add Discovery results to Amazon S3 for … Read more

How to display images from the Amazon S3 bucket?

If you are using Amazon S3 for storing images then mostly then you will arrive at a situation of displaying those images on a webpage. You can use javascript, angular, or any other programming language in the frontend but you need to keep some points in mind before proceeding. In case you are someone new … Read more

What is Amazon Simple Queue Service (SQS)? How to get started?

Amazon Simple Queue Service (SQS) is a service that is used whenever you want to decouple your application or for asynchronous execution. There is detailed documentation on the official AWS website. In this article, I am going to share my personal experience with SQS and a demo to get started. In case you are completely … Read more

How to reupload an Amazon S3 object using prefix from AWS Lambda?

I have been using AWS services for the past 2 years. And if you are wondering why to reupload the same file to the same location. I personally had a case where an AWS lambda function will be triggered whenever a “.json” file is uploaded to the S3 bucket. Also, I did not have console … Read more