Retain Session Data After Session Is Closed Or Store User Data In Alexa Skill Using Python In AWS DynamoDB- Persistent Attributes In Alexa

In order to make your Alexa skill more interactive it is necessary to save user information to make the skill smarter. An ideal example would be to store the score the user got after his / her game. You can use this information to let the user know his personal best. In this blog, I … 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 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

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