Giter VIP home page Giter VIP logo

amq-streams-ocp-demo's Introduction

Red Hat AMQ Streams Demo

Red Hat AMQ Streams Operator with OpenShift

This repos will demo the Red Hat AMQ using Red Hat AMQ Streams Operator.

Red Hat AMQ Streams provides a way to run an Apache Kafka cluster on OpenShift in various deployment configurations. See the Red Hat AMQ website for more details about the project.

The Red Hat AMQ Streams cluster will expose metrics to Prometheus and Grafana dashboards managed by:

  • Prometheus Operator: This operator creates and manages Prometheus instances to monitor services in a namespace.
  • Grafana Operator: This operator creates and manages Grafana instances, import Grafana datasources and import Grafana Dashboards.

Environment

This demo has been tested in the following environment

  • Red Hat OpenShift Container Platform v4.3.9
  • Red Hat AMQ Streams v1.4.0
  • Grafana Operator v 2.0.0
  • Prometheus Operator v0.32.0

This version has deployed the Operator Lifecycle Manager (OLM), tool to help manage the Operators running on a cluster.

Prerequisite

Ensure that the following exists

  • Properly configured and working OpenShift Cluster
  • Admin Cluster User with cluster-admin role
  • Normal Cluster User

Create a New Project

As a normal user, create a amq-streams-demo project:

oc login -u user
oc new-project amq-streams-demo

You may also create the project via the web console by following the instructions here

Deploy Red Hat AMQ Streams Operator

  1. Login as the admin user.

  2. Install the AMQ Streams Operator by following the instructions here

    NOTE: Install the AMQ Streams Operator to all (projects) namespaces so that it will be usable from any namespaces in the cluster.

Create Operator Group

To deploy Prometheus and Grafana Operators, we need to first install an OperatorGroup to match the Operator's installation mode and the namespace. This step is describe in Adding Operators to a cluster page from OpenShift 4.3 Documentation site

oc login -u admin-user
oc apply -f 01-operator-group.yaml

Deploy Prometheus and Grafana Operators via Web Console

This demo will use Prometheus Operator and Grafana Operator to deploy them and monitor the AMQ Streams ecosystem easily.

Login to the Web Console and select the project

  1. Login to the web console as the admin-user
  2. Select the amq-streams-demo project (Home -> Projects -> amq-streams-demo)

Installing Prometheus Operator

  1. Naviate to the OperatorHub (Operators -> OperatorHub)
  2. Type prometheus in the Filter by keyword
  3. Select on the Prometheus Operator
  4. Review the Community Operator notice, and click Continue
  5. Click Install
  6. Review the default options, and click Subscribe

Installing Grafana Operator

  1. Naviate to the OperatorHub (Operators -> OperatorHub)
  2. Type grafana in the Filter by keyword
  3. Select on the Grafana Operator
  4. Review the Community Operator notice, and click Continue
  5. Click Install
  6. Review the default options, and click Subscribe

After several minutes we could check these operators are installed and availables:

$ oc get csv
NAME                        DISPLAY                             VERSION   REPLACES                    PHASE
amqstreams.v1.4.0           Red Hat Integration - AMQ Streams   1.4.0     amqstreams.v1.3.0           Succeeded
grafana-operator.v2.0.0     Grafana Operator                    2.0.0     grafana-operator.v1.3.0     Succeeded
prometheusoperator.0.32.0   Prometheus Operator                 0.32.0    prometheusoperator.0.27.0   Succeeded

Prometheus JMX exporter converts the JMX metrics supported by Apache Kafka and Apache Zookeeper to Prometheus metrics. This feature helps us to monitor the cluster easily using Prometheus to store the metrics and Grafana Dashboards to expose them.

To get detailed configuration, please, review the Appendix C: Metrics from Strimzi Documentation site.

Deploy Metrics Platform

Prometheus and Grafana Operator help us to deploy our local Prometheus Server and Grafana instance where we could manage the metrics from our AMQ Streams Cluster.

Ensure that you're still logged in as the admin-user in the correct project:

oc login -u admin-user
oc project amq-streams-demo

Prometheus Deployment

Deploy a local Prometheus Server as follows:

oc create secret generic additional-scrape-configs --from-file=prometheus-additional.yaml

oc apply -f 02-prometheus-metrics

A Prometheus instance will be available with a service and a route:

$ oc get svc
NAME                  TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)    AGE
prometheus            ClusterIP   172.30.235.132   <none>        9090/TCP   4h
prometheus-operated   ClusterIP   None             <none>        9090/TCP   4h

$ oc get route prometheus -o jsonpath='{.spec.host}'
prometheus-amq-streams-demo.apps.myocp.mydomain.com

The Prometheus Dashboard will look something like this:

Prometheus Server

Grafana Deployment

Deploy Grafana as follows:

oc apply -f 03-grafana.yaml

Grafana will deploy a Datasource connected to the Prometheus server available by Promtheus in the endpoint http://prometheus-operated:9090. The Grafana Server will use that Datasource to get the metrics. Grafana has a set of dashboards to review the metrics from Apache Zookeeper and AMQ Streams Cluster.

Setup the Grafana Dashboard:

oc apply -f 04-grafana-dashboard

Get the Grafana route:

oc get route grafana-route -o jsonpath='{.spec.host}'

NOTE: Use the original credentials root/secret as user/password. These credentials are defined in the Grafana CR file. Also, wait a few minutes for Grafan to finish its deployment.

Grafana Dashaboards will be displayed in Grafana as:

Grafana Dashboards

Deploy and use a AMQ Streams Cluster

We'll change to use a non-cluster-admin user to deploy our metrics platform.

oc login -u user

Deploy Kafka Cluster

AMQ Streams cluster is deployed using the custom resource in kafka-cluster.yaml file:

oc create -f 05-kafka-cluster.yaml

NOTE: This will take around 5 minutes to complete. You can watch the process by doing a watch oc get pod

The AMQ Streams Cluster will be deployed with the following set of pods:

$ oc get pod
NAME                                            READY     STATUS    RESTARTS   AGE
demo-cluster-entity-operator-789556fbdd-bwk54   3/3       Running   0          7h
demo-cluster-kafka-0                            2/2       Running   0          7h
demo-cluster-kafka-1                            2/2       Running   0          7h
demo-cluster-kafka-2                            2/2       Running   0          7h
demo-cluster-zookeeper-0                        2/2       Running   0          7h
demo-cluster-zookeeper-1                        2/2       Running   0          7h
demo-cluster-zookeeper-2                        2/2       Running   0          7h
...

Deploy Kafka Topic

A Kafka Topic is created using the custom resource in kafka-topic.yaml file:

oc create -f 06-kafka-topic.yaml

This custom resurce will create the topic greetings:

$ oc get kafkatopic
NAME       PARTITIONS   REPLICATION FACTOR
greetings  3            2

Deploy Producer and Consumer

To test the AMQ Streams cluster, we will deploy jobs to produce and consume messages using the plain connection protocol:

This producer will send a set of messages to the topic greetings:

oc create -f 07-job-producer.yaml

This consumer will consume messages from each partition of the greetings Topic:

oc create -f 08-job-consumer.yaml

You could check the status of the jobs or pods with the commands

$ oc get job
NAME                  COMPLETIONS   DURATION   AGE
sample-consumer-job   3/3           104s       115s
sample-producer-job   1/1           116s       2m7s

Deploy Secured Producer and Consumer (optional)

To test the AMQ Streams cluster using the secured connection protocol run the SSL producer and consumer examples:

oc create -f sample-ssl-jobs/job-ssl-producer.yaml
oc create -f sample-ssl-jobs/job-ssl-consumer.yaml

Grafana Dashboards

A sample of the Grafana AMQ Streams Dashboard when the consumers and producers are working would look as follows:

AMQ Streams Dashboard in Grafana1 AMQ Streams Dashboard in Grafana2 AMQ Streams Dashboard in Grafana3

The Zookeeper Dashboard:

AMQ Streams Zookeeper Dashboard in Grafana

The AMQ Streams Exporter Dashboard:

AMQ Streams Exporter Dashboard in Grafana

amq-streams-ocp-demo's People

Watchers

James Cloos avatar

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.