Convert monolith application to microservice implementation in Kubernetes

5/21/2018

I want to deploy my application in cloud using Kubernetes based deployment. It consits of 3 layers Kafka, Ignite(as DB and processing) and Python(ML engine). From Kafka layer we get data stream input which is then passed to Ignite for processing(feature engg). After processing the data is passed to the python server for further ML predictions. How can I break this monolith application to microservices in Kubernetes? Also can using Istio provide some advantage?

-- rishi007bansod
google-cloud-platform
google-kubernetes-engine
istio
kubernetes

2 Answers

5/21/2018

it is possible and in fact those tools are easy to deploy in Kubernetes. Firstly, you need to gain some expertise in Kubernetes basics, specially in statefulsets and persistent volumes, since Kafka and Ignite are stateful components.

To deploy a Kafka cluster in Kubernetes follow instructions form this repository: https://github.com/Yolean/kubernetes-kafka

There are other alternatives, but this is the only one I've tested in production environments.

I have not experience with Ignite, this docs provides a step-by-step guide. Maybe someone else could share other resources.

About Python, just dockerize your ML model as any other Python app. In the official docker image for Python you'll find a basic Dockerfile to do that. Once you have your docker image pushed to a registry, just create a YAML file describing the deployment and apply it to Kubernetes.

As an alternative for the last step, you can use Draft to dockerize and deploy Python code.

Good luck!

-- Ignacio Millán
Source: StackOverflow

6/21/2018

You can use the bitnami/kafka on docker hub from bitnami if you want pre-build image.

Export the image to your container registry with the gcloud command. gcloud docker -- push [your image container registry path] Deploy the images using UI or gcloud command

Expose the port{2181 9092-9099} or which one is exposed in the pulled image after the deployment on kubernetes.

Here is the link of the Ignite image on Google Compute, you have just to deploy it on the kubernetes engine and expose the appropriate ports

For python you have just to Build your python app using dockerfile as ignacio suggested.

-- Alioua
Source: StackOverflow