We will make additions to Sock Shop microservice demo application to demonstrate message queue capture of Mizu. Place the Kubernetes manifests that are provided by this Gist into https://github.com/microservices-demo/microservices-demo/tree/master/deploy/kubernetes/manifests
Run the command below to update your cluster:
$ kubectl create -f deploy/kubernetes/manifests/00-sock-shop-ns.yaml -f deploy/kubernetes/manifests
Set agent-image: mertyildiran/mizuagent:latest
in your Mizu config.yaml
or use your own image.
Your cluster should look like this:
$ kubectl get pod -A
NAMESPACE NAME READY STATUS RESTARTS AGE
sock-shop carts-b4d4ffb5c-gbdmf 1/1 Running 0 71m
sock-shop carts-db-6c6c68b747-vj2p7 1/1 Running 0 71m
sock-shop catalogue-759cc6b86-rp7hl 1/1 Running 0 71m
sock-shop catalogue-db-96f6f6b4c-4dg48 1/1 Running 0 71m
sock-shop front-end-5c89db9f57-w6xhc 1/1 Running 0 71m
sock-shop kafka-0 1/1 Running 0 71m
sock-shop kafka-1 1/1 Running 0 71m
sock-shop kafka-2 1/1 Running 0 71m
sock-shop mizutest-amqp-py-68b4c64478-fpf26 1/1 Running 0 40m
sock-shop mizutest-kafka-py-665b5489c-5zjkg 1/1 Running 0 40m
sock-shop orders-7664c64d75-99lkn 1/1 Running 0 71m
sock-shop orders-db-659949975f-22k5v 1/1 Running 0 71m
sock-shop payment-7bcdbf45c9-vsltj 1/1 Running 0 71m
sock-shop queue-master-5f6d6d4796-5fhxt 1/1 Running 0 71m
sock-shop rabbitmq-5bcbb547d7-vd289 2/2 Running 0 71m
sock-shop session-db-7cf97f8d4f-jlm46 1/1 Running 0 71m
sock-shop shipping-7f7999ffb7-qt2rs 1/1 Running 0 71m
sock-shop user-68df64db9c-lm9f6 1/1 Running 0 71m
sock-shop user-db-6df7444fc-vf4bc 1/1 Running 0 71m
sock-shop zookeeper-7b69697846-5qhbw 1/1 Running 0 71m
See if the pod is printing messages into stdout
:
$ kubectl logs --follow mizutest-amqp-py-68b4c64478-fpf26 -n sock-shop
-----
1
Declared queue
Declared exchange
Queue bind
Basic consume
Basic publish
Basic publish
-----
2
Declared queue
Declared exchange
Queue bind
Basic consume
Basic publish
...
The mizutest-amqp-py
deployment constantly produces and consumes messages from RabbitMQ to generate message queue traffic.
Now tap into the pod:
$ ./cli/bin/mizu__ tap mizutest-amqp-py-68b4c64478-fpf26 -n sock-shop
Expect a few seconds delay for messages to show up.
See if the pod is printing messages into stdout
:
$ kubectl logs --follow mizutest-kafka-py-665b5489c-5zjkg -n sock-shop
-----
CreateTopic
Failed to create topic topic1: KafkaError{code=TOPIC_ALREADY_EXISTS,val=36,str="Topic 'topic1' already exists."}
Failed to create topic topic2: KafkaError{code=TOPIC_ALREADY_EXISTS,val=36,str="Topic 'topic2' already exists."}
Produce
Produce
Produce
Message delivered to mytopic [0]
Message delivered to mytopic [0]
Message delivered to mytopic [0]
-----
CreateTopic
Failed to create topic topic1: KafkaError{code=TOPIC_ALREADY_EXISTS,val=36,str="Topic 'topic1' already exists."}
Failed to create topic topic2: KafkaError{code=TOPIC_ALREADY_EXISTS,val=36,str="Topic 'topic2' already exists."}
Produce
Produce
...
The mizutest-kafka-py
deployment constantly produces and consumes messages from Apache Kafka to generate message queue traffic.
Now tap into the pod:
./cli/bin/mizu__ tap mizutest-kafka-py-665b5489c-5zjkg -n sock-shop
Expect a few seconds delay for messages to show up.
Note: Sock Shop produces an AMQP message when an order is placed from orders
service and consumes it from shipping
service as far as I understand. queue-master
service is also involved some how. Other than that, Sock Shop doesn't use message queues as a message BUS between microservices but rather uses it as a job queue. I couldn't really trigger that single message queue usage in Sock Shop from the UI. Therefore I added a bunch of deployments to make it active in terms of message queues.