Git Product home page Git Product logo

reddit-streaming-pipeline's Introduction

Reddit Sentiment Analysis Data Pipeline

Project Overview

The Reddit Sentiment Analysis Data Pipeline is designed to collect comments from Reddit using the Reddit API, process them using Apache Spark, store the processed data in Cassandra, and visualize sentiment scores of various subreddits in Grafana. The pipeline leverages containerization and utilizes a Kubernetes cluster for deployment, with infrastructure management handled by Terraform. Finally, Kafka is used as a message broker to provide low latency, scalability & availability.

NOTE: This project was (fortunately?) created right before the Reddit API terms and policies changed drastically making it a paid service as of now. So, just a heads up, I haven't tested the pipeline with a paid account yet and it may not work as expected. Feel free to make a PR if you happen to find any required changes.

Table of Contents

Architecture

reddit_sentiment_analysis_pipeline_architecture

All applications in the above architecture are containerized into Docker containers, which are orchestrated by Kubernetes - and its infrastructure is managed by Terraform. The docker images for each application are available publically in the Docker Hub registry. Further details about each layer is provided below:

  1. Data Ingestion : A containerized Python application called reddit_producer connects to Reddit API using credentials provided in the secrets/credentials.cfg file. It takes the received messages (reddit comments) and converts them into a JSON format. These transformed messages are then sent and stored in a Kafka broker. PRAW python library is used for interacting with Reddit API.

  2. Message Broker : The Kafka broker (kafkaservice pod), recieves messages from the reddit_producer. The Kafka broker is accompanied by the Kafdrop applicatino, which acts as Kafka mointoring tool through UI. When Kafka starts, another container named kafkainit creates the topic redditcomments. The zookeeper pod is launched before Kafka for managing Kafka metadata.

  3. Stream Processer : A Spark deployment in the Kubernetes cluster is started for consuming and processing the data from the Kafka topic redditcomments. The PySpark script spark/stream_processor.py consumes and aggregates the data to put it in the data sink i.e. Cassandra tables.

  4. Processed Data Storage : A Cassandra cluster is used to store and serve the processed data from the above spark job. When Cassandra starts, another container named cassandrainit creates the keyspace reddit and tables comments & subreddit_sentiment_avg. Raw comments data is written in reddit.comments table and the aggregated data is written in reddit.subreddit_sentiment_avg table. The NLTK python library is used to prepare a sentiment score for each comment and the score is aggregated for each subreddit in the last minute.

  5. Data Visualisation : Grafana establishes a connection with the Cassandra database. It queries the aggregated data from Cassandra and presents it visually to users through a dashboard. The dashboard shows the following panels for analysis:

    • Top subreddits: Showcase the real-time sentiment scores of a few top subreddits of all time.

    top_subreddit_panel

    • Countries: Showcase the real-time sentiment scores of subreddits based on a few countries. countries_panel

Installation and Setup

System Requirements

The pipeline was tested with the following local system configuration:

  • minikube: v1.30.1
  • Docker Engine: 24.0.1
  • Terraform: v1.4.6
  • OS: Ubuntu 22.04.2 LTS
  • RAM: 16 GB
  • CPU cores: 16
  • Graphics card: AMD Ryzen 7 PRO 4750G with Radeon Graphics

To setup the pipeline locally, first you will have to add a credentials file for accessing reddit API with mkdir secrets && touch secrets/credentials.cfg. Then populate the credentials.cfg file with the following template:

[reddit]
username=<reddit username>
password=<reddit password>
user_agent=<dev_application_name>
client_id=<dev_application_client_id>
client_secret=<dev_application_client_secret>

You may have to create a reddit developer application at https://www.reddit.com/prefs/apps/ to get the above credentials. Once the credential file is ready, start the minikube cluster and apply the terraform configuration as follows:

# Remove the current cluster, start a new one along with the dashboard
$ minikube delete
$ minikube start --no-vtx-check --memory 10240 --cpus 6
$ minikube dashboard

$ cd terraform-k8s
$ terraform apply -auto-approve

The infrastructure setup progress can be monitored in the minikube dashboard or with the following kubectl command:

$ watch -n 1 kubectl get pods -n redditpipeline

After the complete infrastructure is up and running, run the following command to get the exposed URL for grafana dashboard

$ minikube service grafana -n redditpipeline --url
http://192.168.49.2:30001

The grafana dashboard can be accessed with the above link. In case, there are authorization errors at the start, login into grafana UI with username: admin, password: admin

grafana_dashboard

Similarly the exposed URL for Kafdrop UI can be retrieved and accessed as follows:

$ minikube service kafdrop -n redditpipeline --url
http://192.168.49.2:30000

kafdrop_ui

Improvements

  • Cassandra and Kafka initialisation: The initialisation containers stay running after the initialisation is finished due to restart policy of other containers within the same pod. A separate deployment for intitialisation containers was considered but due to the lack of option restart_policy=Never in kubernetes_deployment terraform resource (github issue). Furthermore, kubernetes_job resource can be considered for this purpose.

  • Optimise Dockerfiles: Certain dockerfiles can be further optimised to build only the final few layers in the case of relevant script modification. This should reduce the running time of the CI script.

  • CI pipeline: Currently, a script docker_image_publish.sh is being used to build and push various docker images to docker hub. However, a better and automated CI pipeline can be implemented based on Github Actions.

  • Different Cassandra Users: A separate read-only user in Cassandra should be made for Grafana dashboard queries.

  • Code cleanup and Integration testing: Further code cleanup and refactoring in various scripts is required along with integration testing for various parts in the infrastructure.

Acknowledgements

  1. Finnhub Streaming Data Pipeline Project
  2. Docker Images - Cassandra, Grafana, Apache Spark-Py, Confluentinc Zookeeper, Confluentinc Kafka, Kafdrop
  3. Libraries - Kafka-Python, NLTK, PRAW

reddit-streaming-pipeline's People

Contributors

nama1arpit avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

reddit-streaming-pipeline's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.