Skip to content

Slack Bolt application built on Knative Serving to manage and relay product inventory tracking notifications. This project leverages Knative-eventing Kafka source with Cloud Events to efficiently manage and relay notifications.

Notifications You must be signed in to change notification settings

tmwalter98/knative-slack-bolt

Repository files navigation

Python Slack Bolt App Webstore Inventory Tracker on Knative

Build and Push to Docker Hub

This project is work in progress

Project Background

I wanted to track inventory for a handful of sites with high demand products and this Slack app the user facing portion used to select products of interest and relay stock and price change notifications.

Inventory Tracking Scraping Services not contained herein

Inventory data is aquired on a scheduled basis using Prefect aataflow automation. Prefect Cloud is usde to orchestrate flow runs which are executed by the Prefect Agent in ECS. Up-to-date product inventory data is retained within RDS and changed trigger the creation of audit records.

Inventory Tracking Notification and Management Services

The Inventory Tracking Notification and Management Services are backed by the same RDS instance as the scraping services.

graph TB
    linkStyle default interpolate linear

    subgraph kubernetes["Microk8s"]
      direction LR
      subgraph knative[Knative]
        direction LR
        kn_source_kafka(Knative Source for Apache Kafka)
        kn_slack_bolt(fab:fa-python Knative Slack Bolt)
        kn_source_kafka -- CloudEvents --> kn_slack_bolt
      end
      subgraph kafka[Kafka Services]
        direction LR
        debezium[Debezium CDC]
        kafka_topic[product_notifications topic]
      end
    end
    subgraph Y["fab:fa-aws Amazon Web Services"]
      direction LR
      rds[(RDS PostgreSQL)]
    end

    slack(fab:fa-slack Slack)
    rds --> debezium --> kafka_topic
    kafka_topic --> kn_source_kafka
    kn_slack_bolt <-. Websockets .-> slack
    kn_slack_bolt <--> rds
    
    click kn_source_kafka "https://knative.dev/docs/eventing/sources/kafka-source/" "Knative Source for Apache Kafka" _blank

Components

Slack Bolt App

Python Slack Bolt application that runs on Knative Serving and receives notifications via CloudEvents from Knative Eventing's Knative Source for Apache Kafka.

This app also features the ability for Slack users to search available products and toggle notifications.

Knative Source for Apache Kafka

Knative Source for Apache Kafka listens to Kafka topics and relays messages to specified sink as a Cloud Event.

Apache Kafka Broker

Notification event topic broker.

Debezium CDC Connector

Listens to change events for specific tables and sends them to the Slack Bolt App to deliver the notification.

About

Slack Bolt application built on Knative Serving to manage and relay product inventory tracking notifications. This project leverages Knative-eventing Kafka source with Cloud Events to efficiently manage and relay notifications.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published