内容简介:In ourIn this tutorial, we will use the same machine learning pipeline and Flask app that we built and deployed previously. This time we will demonstrate how to containerize and deploy machine learning pipeline on Google Kubernetes Engine.Previously we dem
Deploy Machine Learning Pipeline on Google Kubernetes Engine
RECAP
In our last post for deploying machine learning pipeline on cloud we demonstrated how to develop a machine learning pipeline in PyCaret and containerize it with Docker and serve as a web app using Microsoft Azure Web App Services. If you haven’t heard about PyCaret before, please read this announcement to learn more.
In this tutorial, we will use the same machine learning pipeline and Flask app that we built and deployed previously. This time we will demonstrate how to containerize and deploy machine learning pipeline on Google Kubernetes Engine.
Learning Goals of this Tutorial
- What is a Container, What is Docker, What is Kubernetes, and What is Google Kubernetes Engine?
- Build a Docker image and upload it on Google Container Registry (GCR).
- Create clusters and deploy machine learning pipeline with Flask app as a web service.
- See a web app in action that uses a trained machine learning pipeline to predict on new data points in real-time.
Previously we demonstrated how to deploy ML pipeline on Heroku PaaS and how to deploy ML pipeline on Azure Web Services with Docker container.
This tutorial will cover the entire workflow of building a docker image to uploading it onto Google Container Registry and then deploying the pre-trained machine learning pipeline and Flask app onto Google Kubernetes Engine (GKE).
Toolbox for this tutorial
PyCaret
PyCaret is an open source, low-code machine learning library in Python that is used to train and deploy machine learning pipelines and models into production. PyCaret can be installed easily using pip.
pip install pycaret
Flask
Flask is a framework that allows you to build web applications. A web application can be a commercial website, blog, e-commerce system, or an application that generates predictions from data provided in real-time using trained models. If you don’t have Flask installed, you can use pip to install it.
Google Cloud Platform
Google Cloud Platform (GCP), offered by Google, is a suite of cloud computing services that runs on the same infrastructure that Google uses internally for its end-user products, such as Google Search, Gmail and YouTube. If you do not have account with GCP, you can sign-up here . If you are signing up for the first time you will get free credits for 1 year.
Let’s get started.
Before we get into Kubernetes, let’s understand what is a container and why do we need it?
Have you ever had the problem where your code works fine on your computer but when your friend tries to run the exact same code, it doesn’t work? If your friend is repeating the exact same steps, they should get the same results right? The one-word answer to this is the environment . Your friend’s environment is different than yours.
What does an environment include? → Programing language such as Python and all the libraries and dependencies with the exact versions using which application was built and tested.
If we can create an environment that we can transfer to other machines (for example: your friend’s computer or a cloud service provider like Google Cloud Platform), we can reproduce the results anywhere. Hence, a container is a type of software that packages up an application and all its dependencies so the application runs reliably from one computing environment to another.
What’s Docker then?
Docker is a company that provides software (also called Docker) that allows users to build, run and manage containers. While Docker’s container are the most common, there are other less famous alternatives such as LXD and LXC that provides container solution.
Now that you understand containers and dockers in specific, let’s understand what is Kubernetes all about.
What is Kubernetes?
Kubernetes is a powerful open-source system developed by Google back in 2014, for managing containerized applications. In simple words, Kubernetes is a system for running and coordinating containerized applications across a cluster of machines. It is a platform designed to completely manage the life cycle of containerized applications.
Features
✔️ Load Balancing: Automatically distributes the load between containers.
✔️ Scaling: Automatically scale up or down by adding or removing containers when demand changes such as peak hours, weekends and holidays.
✔️ Storage: Keeps storage consistent with multiple instances of an application.
✔️ Self-healing Automatically restarts containers that fail and kills containers that don’t respond to your user-defined health check.
✔️ Automated Rollouts you can automate Kubernetes to create new containers for your deployment, remove existing containers and adopt all their resources to the new container.
Why do you need Kubernetes if you have Docker?
Imagine a scenario where you have to run multiple docker containers on multiple machines to support an enterprise level ML application with varied workloads during day and night. As simple as it may sound, it is a lot of work to do manually.
You need to start the right containers at the right time, figure out how they can talk to each other, handle storage considerations, and deal with failed containers or hardware. This is the problem Kubernetes is solving by allowing large numbers of containers to work together in harmony, reducing operational burden.
It’s a mistake to compare Docker with Kubernetes. These are two different technologies. Docker is a software that allows you to containerize applications while Kubernetes is a container management system that allows to create, scale and monitor hundreds and thousands of containers.
In the lifecycle of any application, Docker is used for packaging the application at the time of deployment, while kubernetes is used for rest of the life for managing the application.
What is Google Kubernetes Engine?
Google Kubernetes Engine is implementation of Google’s open source Kubernetes on Google Cloud Platform. Simple!
Other popular alternatives to GKE are Amazon ECS and Microsoft Azure Kubernetes Service .
One final time, do you understand this?
- Container is a type of software that packages up an application and all its dependencies so the application runs reliably from one computing environment to another.
- Docker is a software used for building and managing containers.
- Kubernetes is an open-source system for managing containerized applications in a clustered environment.
- Google Kubernetes Engine is an implementation of open source Kubernetes framework on Google Cloud Platform.
In this tutorial we will use Google Kubernetes Engine. In order to follow along, you must have Google Cloud Platform’s account. Click here to sign-up for free.
Setting the Business Context
An insurance company wants to improve its cash flow forecasting by better predicting patient charges using demographic and basic patient health risk metrics at the time of hospitalization.
( data source )
Objective
To build and deploy a web application where the demographic and health information of a patient is entered into a web-based form which then outputs a predicted charge amount.
Tasks
- Train and develop a machine learning pipeline for deployment.
- Build a web app using Flask framework. It will use the trained ML pipeline to generate predictions on new data points in real-time.
- Build a docker image and upload container onto Google Container Registry (GCR).
- Create clusters and deploy app on Google Kubernetes Engine.
Since we have already covered the first two tasks in our first tutorial, we will quickly recap them and focus on the remaining tasks in the list above. If you are interested in learning more about developing machine learning pipeline in Python using PyCaret and building a web app using Flask framework, please read this tutorial .
Develop Machine Learning Pipeline
We are using PyCaret in Python for training and developing a machine learning pipeline which will be used as part of our web app. The Machine Learning Pipeline can be developed in an Integrated Development Environment (IDE) or Notebook. We have used a notebook to run the below code:
When you save a model in PyCaret, the entire transformation pipeline based on the configuration defined in the setup() function is created . All inter-dependencies are orchestrated automatically. See the pipeline and model stored in the ‘deployment_28042020’ variable:
Build Web Application
This tutorial is not focused on building a Flask application. It is only discussed here for completeness. Now that our machine learning pipeline is ready we need a web application that can connect to our trained pipeline to generate predictions on new data points in real-time. We have created the web application using Flask framework in Python. There are two parts of this application:
- Front-end (designed using HTML)
- Back-end (developed using Flask)
This is how our web application looks:
If you haven’t followed along so far, no problem. You can simply fork this repository from GitHub. This is how your project folder should look at this point:
Now that we have a fully functional web application, we can start the process of containerizing and deploying the app on Google Kubernetes Engine.
10-steps to deploy a ML pipeline on Google Kubernetes Engine:
Step 1 — Create a new project in GCP Console
Sign-in to your GCP console and go to Manage Resources
Click on Create New Project
Step 2 — Import Project Code
Click the Activate Cloud Shell button at the top of console window to open Cloud Shell.
Execute the following code in Cloud Shell to clone the GitHub repository of this tutorial.
git clone https://github.com/pycaret/pycaret-deployment-google.git
Step 3— Set Project ID Environment Variable
Execute the following code to set the PROJECT_ID environment variable.
export PROJECT_ID=pycaret-kubernetes-demo
pycaret-kubernetes-demo is the name of the project we choose in step 1 above.
Step 4— Build the docker image
Build the docker image of the application and tag it for uploading by executing the following code:
docker build -t gcr.io/${PROJECT_ID}/insurance-app:v1 .
You can check the available images by running the following code:
docker images
Step 5— Upload the container image
- Authenticate to Container Registry (you need to run this only once):
gcloud auth configure-docker
2. Execute the following code to upload the docker image to Google Container Registry:
docker push gcr.io/${PROJECT_ID}/insurance-app:v1
Step 6— Create Cluster
Now that container is uploaded, you need a cluster to run the container. A cluster consists of a pool of Compute Engine VM instances, running Kubernetes.
- Set your project ID and Compute Engine zone options for the gcloud tool:
gcloud config set project $PROJECT_ID
gcloud config set compute/zone us-central1
2. Create a cluster by executing the following code:
gcloud container clusters create insurance-cluster --num-nodes=2
Step 7— Deploy Application
To deploy and manage applications on a GKE cluster, you must communicate with the Kubernetes cluster management system. Execute the following command to deploy application:
kubectl create deployment insurance-app --image=gcr.io/${PROJECT_ID}/insurance-app:v1
Step 8— Expose your application to the internet
By default, the containers you run on GKE are not accessible from the internet because they do not have external IP addresses. Execute the following code the expose application to internet:
kubectl expose deployment insurance-app --type=LoadBalancer --port 80 --target-port 8080
Step 9— Check Service
Execute the following code to get the status of service. EXTERNAL-IP is the web address you can use in browser to view the published app.
kubectl get service
Step 10— See the app in action on http://34.71.77.61:8080
Note:By the time this story is published, the app will be removed from public address to restrict resource consumption.
Link to GitHub Repository for this tutorial
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Smarter Than You Think
Clive Thompson / Penguin Press HC, The / 2013-9-12 / USD 27.95
It's undeniable—technology is changing the way we think. But is it for the better? Amid a chorus of doomsayers, Clive Thompson delivers a resounding "yes." The Internet age has produced a radical new ......一起来看看 《Smarter Than You Think》 这本书的介绍吧!