Skip to content

noodnik2/kafkloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

26 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

kafkloud

Kafka Roundtrip Acquisition and Processing Platform (KRAPP)

Description

Project to get experience with and demonstrate implementation and cloud deployment of a service suite involving data flow through Kafka, supporting multiple producers and consumers, with a feedback loop.

Repository

The project is source-controlled as in GitHub as a "monorepo" in which all necessary components are self-contained.

Technologies

Multiple technologies were targeted for inclusion in order to meet the projects' goals, including:

Requirements

The primary "business use case" for this project is to gain and demonstrate experience with the target technologies identified above.

  • A nice to have is to create something that's actually useful 🀭.

Design

Normally, projects start with a functional requirement and work towards a design that meets those. However, the design here is motivated by finding some reasonable functional requirements to meet the experiential requirements at hand; that is, a design that has some relevance to systems providing real value (e.g., for data processing), but mostly to give an opportunity to use & practice the targeted technologies.

The idea that "won" the search for functional requirements is for a data processing platform that uses Kafka as its "backbone" for communicating events or messages between other components, similar to what is fashionable these days for such a popular paradigm. One of the non-functional benefits expected from such a design is re-use and extensibility: I can only hope that additional (perhaps more valuable 😊) use cases might be able to leverage this framework in the future.

First Use Case

First Use Case Diagram (diagram created with excalidraw)

Keeping it simple, the first delivery milestone demonstrated flow of information across several components. The following components / endpoints facilitated demonstration of having met this goal:

Component: portal

  • DoIt - UI button triggering a call to producer resulting in a message being sent to streamer
  • IsDone - UI control or display informing user of the status of processing of the message

Component: producer

  • /produce - HTTP POST endpoint triggering creation and delivery of message(s) to streamer

Component: streamer

  • Standard Kafka APIs are used the inbound and outbound endpoint(s) for streamer

Component: consumer

  • /status - HTTP GET endpoint retrieving the evidence of producer message(s)

Second Use Case

In order to get on the bandwagon of experience with Large Language Models, another component endearingly named seer (mainly due to the level of insight it's expected to bring), was added to Kafkloud, and hung directly on to streamer for its interaction with the other components.

Depiction of this change and the resulting augmented set of components:

Kafkloud with Seer

The following sequence depicts the targeted main flow for this use case:

User interaction as depicted above required an enhancement / generalization of the portal component, so the following sketch was produced as a target for the needed change:

Redesigned Portal Sketch

Implementation

An envisioned implementation satisfying the goals outlined above comprises three independent deployment components:

  • A front-end portal to operate / control the stack
  • A producer to generate messages into streamer that uses Kafka
  • A consumer to process data supplied by the streamer

Summary notes are below, and are augmented in docs.

The components of kafkloud are described below.

portal

The primary functional concern of portal is to provide the main user interface for the kafkloud stack.

To satisfy the goal of gaining more experience with React and Typescript, the front-end service can be created with them. And, because of its newness and popularity, the NextJS framework could be a good one to leverage with both React and Typescript.

May 3rd Update: Accessing portal

The portal application deployed in Kubernetes can be accessed at http://localhost:30080 through "port forwarding", e.g.:

$ kubectl port-forward -n kafkloud $(kubectl get pods -n kafkloud -l component=portal --no-headers -o jsonpath='{.items[0].metadata.name}') 30080:3000

producer

The primary concern of producer is to send events / messages (e.g., as a "data stream") into streamer.

To favor gaining additional experience using NodeJS in a back-end context, this will be built using ExpressJS and Typescript.

streamer

The primary concern of streamer is to accept data (e.g., representing "events" or other types of "messages") on one end, and make them available to one or more consumer(s) on the other end.

To gain experience packaging, deploying, and using Kafka, streamer will be implemented in as much of a "standalone" deployment of Kafka as is practical.

May 3rd Update: Accessing the kafkaui Dashboard

The open-source kafkaui is used as a "dashboard" for accessing streamer's Kafka service. When running in Kubernetes, its user interface can be accessed at http://localhost:30060 by using "Port Forwarding" as illustrated in the example below:

$ kubectl port-forward -n kafkloud $(kubectl get pods -n kafkloud -l app=kafkaui --no-headers -o jsonpath='{.items[0].metadata.name}') 30080:3000

consumer

The primary concern of consumer is to read and process data from the stream.

To help maintain familiarity with it, golang was chosen to implement this service.

seer

The seer component will "learn" from the content of messages it receives from streamer enabling it to answer related questions via its API layer, available to portal.

seer is implemented in Python.

Deployment

In order to satisfy the requirements of cloud deployment within Kubernetes, and to facilitate local testing, the components will be packaged into Docker images that can be referenced in Kubernetes manifests for both local and cloud deployment environments (e.g., Docker Desktop, Minikube, GCP/GKE or AWS/EKS, ...)

Workflow

Development and deployment workflows are generally supported by Makefile targets, defined in the main folder and within each of the (component) subprojects. These workflows support building and deployment of the components into local, Docker and Kubernetes environments. Many of the Makefile targets have a -new- variant which performs the indicated step after performing all the prior steps in the workflow first - i.e., it's like performing a "fresh build."

While targets in the top-level Makefile are used to orchestrate deployment into a Kubernetes environment, additional targets in the component-level Makefiles support deployment into local and Docker environments.

Local

Targets containing the name local are used to support the local (development) workflow:

  • update-local - updates external dependencies
  • build-local - builds the local deployment artifact(s) from the source
  • run-local - runs the component using the (local) built deployment artifact(s)

Docker

  • build-image - builds the Docker image(s) associated with the component
  • run-image - runs the component(s) in the local Docker environment
  • push-image - push the Docker image(s) to the configured repository

Kubernetes

  • apply-k8s - apply the Kubernetes manifest(s) associated with the component
  • query-k8s - query the status of the component(s) within the Kubernetes cluster
  • delete-k8s - deletes the component(s) within the Kubernetes cluster
  • attach-k8s - initiates "port forwarding" enabling access from outside the cluster
  • recreate-k8s - deletes, then re-creates the component(s) within the cluster

GCP

With a Google Kubernetes Environment (GKE) configured in the current context (e.g. using kubectl), the Kubernetes workflow described above can be used to deploy into GCP.

For more details, see GCP Deployment Notes.

Networking

The back-end components of Kafkloud can talk to each other on a common VPC network. In the docker deployments, a bridge network named kafkloud-backend is created and used for this purpose.

The single, user-facing UI component of portal (i.e., the NextJS React browser components) could conceivably access its single point of entry to the portal back-end on a separate network; however, as of this writing, the same network is used (e.g., kafkloud-backend in the Docker deployments).

Port Assignment

An attempt is made to standardize and catalog the network addresses of the service across the supported deployment environments, as follows:

Component Docker Kubernetes / NodePort
portal portal:3000 portal-svc:3000 / 30080
consumer consumer:8072 consumer-svc:8072 / 30072
producer producer:8000 producer-svc:8000 / 30000
seer seer:8030 seer-svc:8030 / 30030
seer chromadb:8020 chromadb-svc:8020 / 30020
streamer broker:9092,9997,29092 broker-svc:9092,9997,29092
streamer kafkaui:8060 kafkaui-svc:8060 / 32060
streamer zookeeper:2181,2888,3888 zookeeper-svc:2181,2888,3888 / 30181

For Further Exploration

Some additional technologies and tools are identified as potentially helpful to this project, and warrant further exploration:

About

Kafka Roundtrip Acquisition and Processing Platform (KRAPP)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published