Posts

Showing posts from 2024

Launch Apache Superset using AWS

Image
This blog post will explain the process of deploying the open-source BI platform Apache Superset on AWS infrastructure. We'll leverage EC2 instances to run Superset and RDS to store its metadata. But before diving into the deployment steps, let's first understand what Superset is and its capabilities. Apache Superset is an open-source data visualization and business intelligence tool that allows users to explore and visualize their data through interactive dashboards and charts. It supports a wide variety of data sources and provides a user-friendly interface for creating complex visualizations without needing extensive programming knowledge. Superset is highly customizable and scalable, making it suitable for organizations of all sizes. To run superset, we will need to setup a database for storing all metadata information and compute for running superset. For database we will use AWS RDS service and for compute we will use AWS EC2 service.  First we will setup the database us...