
Implement a real-time streaming data pipeline to monitor global data center statuses, using simulated events published to a message broker, processed and stored, then visualized in a dashboard.
Set up the Django web framework by installing Python 3.8.5 on Windows, create a virtual environment, install Django 3.1.1, verify the Django admin, and prepare for project development.
This lecture demonstrates a Python-based event simulator that generates real-time data center status messages using a producer–consumer messaging system, encoding country, capital city, timestamp, and severity into JSON every second.
Learn to build a real-time data pipeline with PySpark and Spark Structured Streaming by consuming from sources, applying transformations and aggregations, and storing results in Postgres.
Build a real-time streaming dashboard using Django and Flexmonster to visualize live data with charts and dashboards, including data pipelines, migrations, and city-level visualizations.
Explore Docker containerization, including the Docker engine, Docker images, and containers that package an application with libraries and dependencies, stored in a repository.
Pull the official Cassandra Docker image and run it as a container. Connect to the cluster to create a keyspace and a table, then insert and query data.
In many data centers, different type of servers generate large amount of data(events, Event in this case is status of the server in the data center) in real-time.
There is always a need to process these data in real-time and generate insights which will be used by the server/data center monitoring people and they have to track these server's status regularly and find the resolution in case of issues occurring, for better server stability.
Since the data is huge and coming in real-time, we need to choose the right architecture with scalable storage and computation frameworks/technologies.
Hence we want to build the Real Time Data Pipeline Using Apache Kafka, Apache Spark, Hadoop, PostgreSQL, Django and Flexmonster on Docker to generate insights out of this data.
The Spark Project/Data Pipeline is built using Apache Spark with Scala and PySpark on Apache Hadoop Cluster which is on top of Docker.
Data Visualization is built using Django Web Framework and Flexmonster.
Apache Spark is an open-source unified analytics engine for large-scale data processing. Spark provides an interface for programming clusters with implicit data parallelism and fault tolerance.
Apache Kafka is a distributed event store and stream-processing platform. It is an open-source system developed by the Apache Software Foundation written in Java and Scala. The project aims to provide a unified, high-throughput, low-latency platform for handling real-time data feeds.
Apache Hadoop is a collection of open-source software utilities that facilitates using a network of many computers to solve problems involving massive amounts of data and computation. It provides a software framework for distributed storage and processing of big data using the MapReduce programming model.
A NoSQL (originally referring to "non-SQL" or "non-relational") database provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases.