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

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

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

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 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

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