The ultimate guide for migrating Microsoft SQL server to Aurora Postgres using AWS Database Migration Service (DMS)

AWS DMS is one of the popular services used for data migration, especially for huge data migration. For the past few month, I have been working on AWS DMS service and I had many hurdles then and there. In this blog, I will be explaining various steps involved in migrating the SQL server database to … Read more

How to display an image from Amazon S3 on your website?

Most people use Amazon S3 to store images so that they can fetch them whenever required to display on their website. In this blog, I am going to show you the ways this can be done. In case you are someone new to AWS then take a look at this article to know what AWS is and what … Read more

Lambda Concurrency Limits and SQS Does Not Mix Well Every Time

AWS Lambda and SQS are some of the most popular services that Amazon provides. Yes, we do love them but lambda’s concurrency handling with SQS is silly. In this blog, I am going to share my experience working with them. If you are someone new to Lambda or SQS please feel free to check my … Read more

How to handle Alexa skill backend logic using AWS lambda – python

In this article, I will show the process through which you can add your backend logic using python. We will be using AWS Lambda as it blends well with Alexa. If you are someone new to AWS you can refer to this blog. Amazon Alexa makes our life easy by providing an SDK. So in … Read more

Reconcile mismatching data in AWS DynamoDB and Elasticsearch (OpenSearch)

In this article, we are going to see how to reconcile the mismatching data in AWS DynamoDB and AWS OpenSearch (Elasticsearch) with the help of Amazon Redshift. In case you are wondering how to migrate the DynamoDB data to Elasticsearch in the first place, then take a look at this article. Note: This reconcile method … Read more

ETL – Migrate the entire AWS DynamoDB table to Amazon S3 as CSV

In this article, I will show my method of migrating the entire AWS DynamoDB table to Amazon S3 as CSV. It can further be uploaded to Amazon Redshift using the COPY command. You can also find this code on my GitHub repository. In case you are going to run this code on the local machine, … Read more

ETL – Complete guide to migrate an entire Elasticsearch index to Amazon S3 as CSV

If you are someone using Elasticsearch then you may come across a situation where you need to get the entire Elasticsearch data and store it somewhere for further validation. In this article, I will help you to migrate your Elasticsearch index to Amazon S3 as a CSV file. In case you wonder why should you … Read more