Coder Social home page Coder Social logo

2021-kafka-event-forwarder-1's Introduction

2021-kafka-forwarder

Forwards the Knative Events from the demo to a centralised Kafka broker.

Requirements

  • Node.js v14.3
  • npm 6.14

Usage

Local Dev

NOTE: Local development requires Docker.

Start the services using the following scripts:

# start the zookeeper and kafka containers
./scripts/kafka.up.sh

# create a local node dev container with live reload
./scripts/node.sh

Send events to the Node.js service at localhost:8080 like so:

node scripts/send.event.js payloads/attack.event.json

Deploy

# Create a func.yaml and edit with desired env vars
cp func.template.yaml func.yaml

# Build and deploy the function
func build
./scripts/push
func deploy

# Create knative triggers that forward events to the function
oc apply \
-f knative/attack.trigger.yaml \
-f knative/match-end.trigger.yaml \
-f knative/match-start.trigger.yaml

# Prepare kafka connection details
export KAFKA_BOOTSTRAP_URL=some-broker.kafka.devshift.org:443
export KAFKA_SVC_USERNAME=service-account-username
export KAFKA_SVC_PASSWORD=service-account-password

# Apply kafka connection details to knative function config
# NOTE: you can skip this if you entered these details in the func.yaml
kn service update kafka--event--forwarder--nodejs \
--env LOG_LEVEL="trace" \
--env NODE_ENV="dev" \
--env KAFKA_BOOTSTRAP_URL=$KAFKA_BOOTSTRAP_URL \
--env KAFKA_SVC_USERNAME=$KAFKA_SVC_USERNAME \
--env KAFKA_SVC_PASSWORD=$KAFKA_SVC_PASSWORD

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.